From 9d2397280c5284189c71e0b792c4fbfe8f2511c9 Mon Sep 17 00:00:00 2001 From: Ashish Kumar Singh Date: Mon, 12 Aug 2024 14:32:07 +0000 Subject: [PATCH] feat: additional features in data loader --- datasets/dataset preparations.ipynb | 657 +++++----------------------- flaxdiff/data/online_loader.py | 127 ++++-- setup.py | 2 +- 3 files changed, 201 insertions(+), 585 deletions(-) diff --git a/datasets/dataset preparations.ipynb b/datasets/dataset preparations.ipynb index 21e45f7..8f82807 100644 --- a/datasets/dataset preparations.ipynb +++ b/datasets/dataset preparations.ipynb @@ -24,7 +24,7 @@ "import os\n", "from transformers import AutoTokenizer, FlaxCLIPTextModel, CLIPTextModel\n", "\n", - "from datasets import load_dataset, concatenate_datasets, Dataset\n", + "from datasets import load_dataset, concatenate_datasets, Dataset, load_from_disk\n", "from datasets.utils.file_utils import get_datasets_user_agent\n", "from concurrent.futures import ThreadPoolExecutor\n", "from functools import partial\n", @@ -110,9 +110,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "e357e8fa8418439e8d2d0a8e23f3d1c5", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Map (num_proc=16): 0%| | 0/12096809 [00:00 1\u001b[0m test \u001b[38;5;241m=\u001b[39m \u001b[43mload_dataset\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mgs://flaxdiff-datasets-regional/datasets/laion-aesthetics-12m+mscoco-2017\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/.local/lib/python3.10/site-packages/datasets/load.py:2594\u001b[0m, in \u001b[0;36mload_dataset\u001b[0;34m(path, name, data_dir, data_files, split, cache_dir, features, download_config, download_mode, verification_mode, ignore_verifications, keep_in_memory, save_infos, revision, token, use_auth_token, task, streaming, num_proc, storage_options, trust_remote_code, **config_kwargs)\u001b[0m\n\u001b[1;32m 2589\u001b[0m verification_mode \u001b[38;5;241m=\u001b[39m VerificationMode(\n\u001b[1;32m 2590\u001b[0m (verification_mode \u001b[38;5;129;01mor\u001b[39;00m VerificationMode\u001b[38;5;241m.\u001b[39mBASIC_CHECKS) \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m save_infos \u001b[38;5;28;01melse\u001b[39;00m VerificationMode\u001b[38;5;241m.\u001b[39mALL_CHECKS\n\u001b[1;32m 2591\u001b[0m )\n\u001b[1;32m 2593\u001b[0m \u001b[38;5;66;03m# Create a dataset builder\u001b[39;00m\n\u001b[0;32m-> 2594\u001b[0m builder_instance \u001b[38;5;241m=\u001b[39m \u001b[43mload_dataset_builder\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 2595\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2596\u001b[0m \u001b[43m \u001b[49m\u001b[43mname\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mname\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2597\u001b[0m \u001b[43m \u001b[49m\u001b[43mdata_dir\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdata_dir\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2598\u001b[0m \u001b[43m \u001b[49m\u001b[43mdata_files\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdata_files\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2599\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_dir\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_dir\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2600\u001b[0m \u001b[43m \u001b[49m\u001b[43mfeatures\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfeatures\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2601\u001b[0m \u001b[43m \u001b[49m\u001b[43mdownload_config\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdownload_config\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2602\u001b[0m \u001b[43m \u001b[49m\u001b[43mdownload_mode\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdownload_mode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2603\u001b[0m \u001b[43m \u001b[49m\u001b[43mrevision\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrevision\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2604\u001b[0m \u001b[43m \u001b[49m\u001b[43mtoken\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtoken\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2605\u001b[0m \u001b[43m \u001b[49m\u001b[43mstorage_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstorage_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2606\u001b[0m \u001b[43m \u001b[49m\u001b[43mtrust_remote_code\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtrust_remote_code\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2607\u001b[0m \u001b[43m \u001b[49m\u001b[43m_require_default_config_name\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mname\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;129;43;01mis\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[1;32m 2608\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mconfig_kwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2609\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2611\u001b[0m \u001b[38;5;66;03m# Return iterable dataset in case of streaming\u001b[39;00m\n\u001b[1;32m 2612\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m streaming:\n", + "File \u001b[0;32m~/.local/lib/python3.10/site-packages/datasets/load.py:2266\u001b[0m, in \u001b[0;36mload_dataset_builder\u001b[0;34m(path, name, data_dir, data_files, cache_dir, features, download_config, download_mode, revision, token, use_auth_token, storage_options, trust_remote_code, _require_default_config_name, **config_kwargs)\u001b[0m\n\u001b[1;32m 2264\u001b[0m download_config \u001b[38;5;241m=\u001b[39m download_config\u001b[38;5;241m.\u001b[39mcopy() \u001b[38;5;28;01mif\u001b[39;00m download_config \u001b[38;5;28;01melse\u001b[39;00m DownloadConfig()\n\u001b[1;32m 2265\u001b[0m download_config\u001b[38;5;241m.\u001b[39mstorage_options\u001b[38;5;241m.\u001b[39mupdate(storage_options)\n\u001b[0;32m-> 2266\u001b[0m dataset_module \u001b[38;5;241m=\u001b[39m \u001b[43mdataset_module_factory\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 2267\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2268\u001b[0m \u001b[43m \u001b[49m\u001b[43mrevision\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrevision\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2269\u001b[0m \u001b[43m \u001b[49m\u001b[43mdownload_config\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdownload_config\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2270\u001b[0m \u001b[43m \u001b[49m\u001b[43mdownload_mode\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdownload_mode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2271\u001b[0m \u001b[43m \u001b[49m\u001b[43mdata_dir\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdata_dir\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2272\u001b[0m \u001b[43m \u001b[49m\u001b[43mdata_files\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdata_files\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2273\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_dir\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_dir\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2274\u001b[0m \u001b[43m \u001b[49m\u001b[43mtrust_remote_code\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtrust_remote_code\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2275\u001b[0m \u001b[43m \u001b[49m\u001b[43m_require_default_config_name\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m_require_default_config_name\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2276\u001b[0m \u001b[43m \u001b[49m\u001b[43m_require_custom_configs\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mbool\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mconfig_kwargs\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2277\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2278\u001b[0m \u001b[38;5;66;03m# Get dataset builder class from the processing script\u001b[39;00m\n\u001b[1;32m 2279\u001b[0m builder_kwargs \u001b[38;5;241m=\u001b[39m dataset_module\u001b[38;5;241m.\u001b[39mbuilder_kwargs\n", + "File \u001b[0;32m~/.local/lib/python3.10/site-packages/datasets/load.py:1916\u001b[0m, in \u001b[0;36mdataset_module_factory\u001b[0;34m(path, revision, download_config, download_mode, dynamic_modules_path, data_dir, data_files, cache_dir, trust_remote_code, _require_default_config_name, _require_custom_configs, **download_kwargs)\u001b[0m\n\u001b[1;32m 1914\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m e1 \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 1915\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1916\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m(\n\u001b[1;32m 1917\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mCouldn\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mt find a dataset script at \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mrelative_to_absolute_path(combined_path)\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m or any data file in the same directory.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 1918\u001b[0m )\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: Couldn't find a dataset script at /home/mrwhite0racle/research/datasets/gs:/flaxdiff-datasets-regional/datasets/laion-aesthetics-12m+mscoco-2017/laion-aesthetics-12m+mscoco-2017.py or any data file in the same directory." ] } ], + "source": [ + "test = load_dataset(\"gs://flaxdiff-datasets-regional/datasets/laion-aesthetics-12m+mscoco-2017\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "imaged_data = mapDataset(mscoco_fused, (), mapper=imageFetcher, batch_size=5000, workers=64, should_remove_columns=False, fn_kwargs={\"num_threads\": 64})" ] @@ -281,45 +295,16 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "38ceb8843f1246f1901cd6f2bfdd9957", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "Resolving data files: 0%| | 0/128 [00:00 1\u001b[0m \u001b[43mdata_queue\u001b[49m\u001b[38;5;241m.\u001b[39mqsize()\n", - "\u001b[0;31mNameError\u001b[0m: name 'data_queue' is not defined" - ] - } - ], + "outputs": [], "source": [ "data_queue.qsize()" ] }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "error_queue.qsize()" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 0%| | 0/2000 [00:00 of the transform datasets.arrow_dataset.Dataset._map_single couldn't be hashed properly, a random hash was used instead. Make sure your transforms and parameters are serializable with pickle or dill for the dataset fingerprinting and caching to work. If you reuse this transform, the caching mechanism will consider it to be different from the previous calls and recompute everything. This warning is only showed once. Subsequent hashing failures won't be showed.\n", - "WARNING:datasets.fingerprint:Parameter 'function'= of the transform datasets.arrow_dataset.Dataset._map_single couldn't be hashed properly, a random hash was used instead. Make sure your transforms and parameters are serializable with pickle or dill for the dataset fingerprinting and caching to work. If you reuse this transform, the caching mechanism will consider it to be different from the previous calls and recompute everything. This warning is only showed once. Subsequent hashing failures won't be showed.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Map (num_proc=64): 36%|███▌ | 214080/591753 [01:54<32:53, 191.37 examples/s] " - ] - } - ], + "outputs": [], "source": [ "def parallel_loading(dataset):\n", " dataset.map(map_batch_fn, num_proc=64, batched=True, batch_size=64, fn_kwargs={\"num_threads\": 64})\n", @@ -862,25 +692,14 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "14974" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -895,7 +714,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -929,38 +748,9 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 0%| | 0/2312 [00:15 1\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m i \u001b[38;5;129;01min\u001b[39;00m tqdm\u001b[38;5;241m.\u001b[39mtqdm(data_loader):\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/tqdm/std.py:1181\u001b[0m, in \u001b[0;36mtqdm.__iter__\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1178\u001b[0m time \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_time\n\u001b[1;32m 1180\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1181\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m obj \u001b[38;5;129;01min\u001b[39;00m iterable:\n\u001b[1;32m 1182\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m obj\n\u001b[1;32m 1183\u001b[0m \u001b[38;5;66;03m# Update and possibly print the progressbar.\u001b[39;00m\n\u001b[1;32m 1184\u001b[0m \u001b[38;5;66;03m# Note: does not call self.update(1) for speed optimisation.\u001b[39;00m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/utils/data/dataloader.py:630\u001b[0m, in \u001b[0;36m_BaseDataLoaderIter.__next__\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 627\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_sampler_iter \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 628\u001b[0m \u001b[38;5;66;03m# TODO(https://github.com/pytorch/pytorch/issues/76750)\u001b[39;00m\n\u001b[1;32m 629\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reset() \u001b[38;5;66;03m# type: ignore[call-arg]\u001b[39;00m\n\u001b[0;32m--> 630\u001b[0m data \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_next_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 631\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_num_yielded \u001b[38;5;241m+\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;241m1\u001b[39m\n\u001b[1;32m 632\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_dataset_kind \u001b[38;5;241m==\u001b[39m _DatasetKind\u001b[38;5;241m.\u001b[39mIterable \u001b[38;5;129;01mand\u001b[39;00m \\\n\u001b[1;32m 633\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_IterableDataset_len_called \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;129;01mand\u001b[39;00m \\\n\u001b[1;32m 634\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_num_yielded \u001b[38;5;241m>\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_IterableDataset_len_called:\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/utils/data/dataloader.py:1327\u001b[0m, in \u001b[0;36m_MultiProcessingDataLoaderIter._next_data\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1324\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_process_data(data)\n\u001b[1;32m 1326\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_shutdown \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_tasks_outstanding \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m\n\u001b[0;32m-> 1327\u001b[0m idx, data \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1328\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_tasks_outstanding \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;241m1\u001b[39m\n\u001b[1;32m 1329\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_dataset_kind \u001b[38;5;241m==\u001b[39m _DatasetKind\u001b[38;5;241m.\u001b[39mIterable:\n\u001b[1;32m 1330\u001b[0m \u001b[38;5;66;03m# Check for _IterableDatasetStopIteration\u001b[39;00m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/utils/data/dataloader.py:1293\u001b[0m, in \u001b[0;36m_MultiProcessingDataLoaderIter._get_data\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1289\u001b[0m \u001b[38;5;66;03m# In this case, `self._data_queue` is a `queue.Queue`,. But we don't\u001b[39;00m\n\u001b[1;32m 1290\u001b[0m \u001b[38;5;66;03m# need to call `.task_done()` because we don't use `.join()`.\u001b[39;00m\n\u001b[1;32m 1291\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1292\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m \u001b[38;5;28;01mTrue\u001b[39;00m:\n\u001b[0;32m-> 1293\u001b[0m success, data \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_try_get_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1294\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m success:\n\u001b[1;32m 1295\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m data\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/utils/data/dataloader.py:1131\u001b[0m, in \u001b[0;36m_MultiProcessingDataLoaderIter._try_get_data\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 1118\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_try_get_data\u001b[39m(\u001b[38;5;28mself\u001b[39m, timeout\u001b[38;5;241m=\u001b[39m_utils\u001b[38;5;241m.\u001b[39mMP_STATUS_CHECK_INTERVAL):\n\u001b[1;32m 1119\u001b[0m \u001b[38;5;66;03m# Tries to fetch data from `self._data_queue` once for a given timeout.\u001b[39;00m\n\u001b[1;32m 1120\u001b[0m \u001b[38;5;66;03m# This can also be used as inner loop of fetching without timeout, with\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1128\u001b[0m \u001b[38;5;66;03m# Returns a 2-tuple:\u001b[39;00m\n\u001b[1;32m 1129\u001b[0m \u001b[38;5;66;03m# (bool: whether successfully get data, any: data if successful else None)\u001b[39;00m\n\u001b[1;32m 1130\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1131\u001b[0m data \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_data_queue\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1132\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m (\u001b[38;5;28;01mTrue\u001b[39;00m, data)\n\u001b[1;32m 1133\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 1134\u001b[0m \u001b[38;5;66;03m# At timeout and error, we manually check whether any worker has\u001b[39;00m\n\u001b[1;32m 1135\u001b[0m \u001b[38;5;66;03m# failed. Note that this is the only mechanism for Windows to detect\u001b[39;00m\n\u001b[1;32m 1136\u001b[0m \u001b[38;5;66;03m# worker failures.\u001b[39;00m\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/queues.py:113\u001b[0m, in \u001b[0;36mQueue.get\u001b[0;34m(self, block, timeout)\u001b[0m\n\u001b[1;32m 111\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m block:\n\u001b[1;32m 112\u001b[0m timeout \u001b[38;5;241m=\u001b[39m deadline \u001b[38;5;241m-\u001b[39m time\u001b[38;5;241m.\u001b[39mmonotonic()\n\u001b[0;32m--> 113\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_poll\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m:\n\u001b[1;32m 114\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m Empty\n\u001b[1;32m 115\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_poll():\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/connection.py:257\u001b[0m, in \u001b[0;36m_ConnectionBase.poll\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 255\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_check_closed()\n\u001b[1;32m 256\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_check_readable()\n\u001b[0;32m--> 257\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_poll\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/connection.py:424\u001b[0m, in \u001b[0;36mConnection._poll\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 423\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_poll\u001b[39m(\u001b[38;5;28mself\u001b[39m, timeout):\n\u001b[0;32m--> 424\u001b[0m r \u001b[38;5;241m=\u001b[39m \u001b[43mwait\u001b[49m\u001b[43m(\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 425\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mbool\u001b[39m(r)\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/connection.py:931\u001b[0m, in \u001b[0;36mwait\u001b[0;34m(object_list, timeout)\u001b[0m\n\u001b[1;32m 928\u001b[0m deadline \u001b[38;5;241m=\u001b[39m time\u001b[38;5;241m.\u001b[39mmonotonic() \u001b[38;5;241m+\u001b[39m timeout\n\u001b[1;32m 930\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m \u001b[38;5;28;01mTrue\u001b[39;00m:\n\u001b[0;32m--> 931\u001b[0m ready \u001b[38;5;241m=\u001b[39m \u001b[43mselector\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mselect\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 932\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m ready:\n\u001b[1;32m 933\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m [key\u001b[38;5;241m.\u001b[39mfileobj \u001b[38;5;28;01mfor\u001b[39;00m (key, events) \u001b[38;5;129;01min\u001b[39;00m ready]\n", - "File \u001b[0;32m/usr/lib/python3.10/selectors.py:416\u001b[0m, in \u001b[0;36m_PollLikeSelector.select\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 414\u001b[0m ready \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 416\u001b[0m fd_event_list \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_selector\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpoll\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 417\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mInterruptedError\u001b[39;00m:\n\u001b[1;32m 418\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ready\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: " - ] - } - ], + "outputs": [], "source": [ "for i in tqdm.tqdm(data_loader):\n", " pass" @@ -968,7 +758,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -1010,124 +800,9 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 0%| | 0/1156 [00:30 1\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m i \u001b[38;5;129;01min\u001b[39;00m tqdm\u001b[38;5;241m.\u001b[39mtqdm(data_loader):\n\u001b[1;32m 2\u001b[0m \u001b[38;5;66;03m# print(i)\u001b[39;00m\n\u001b[1;32m 3\u001b[0m \u001b[38;5;66;03m# break\u001b[39;00m\n\u001b[1;32m 4\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/tqdm/std.py:1181\u001b[0m, in \u001b[0;36mtqdm.__iter__\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1178\u001b[0m time \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_time\n\u001b[1;32m 1180\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1181\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m obj \u001b[38;5;129;01min\u001b[39;00m iterable:\n\u001b[1;32m 1182\u001b[0m \u001b[38;5;28;01myield\u001b[39;00m obj\n\u001b[1;32m 1183\u001b[0m \u001b[38;5;66;03m# Update and possibly print the progressbar.\u001b[39;00m\n\u001b[1;32m 1184\u001b[0m \u001b[38;5;66;03m# Note: does not call self.update(1) for speed optimisation.\u001b[39;00m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/utils/data/dataloader.py:630\u001b[0m, in \u001b[0;36m_BaseDataLoaderIter.__next__\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 627\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_sampler_iter \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 628\u001b[0m \u001b[38;5;66;03m# TODO(https://github.com/pytorch/pytorch/issues/76750)\u001b[39;00m\n\u001b[1;32m 629\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reset() \u001b[38;5;66;03m# type: ignore[call-arg]\u001b[39;00m\n\u001b[0;32m--> 630\u001b[0m data \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_next_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 631\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_num_yielded \u001b[38;5;241m+\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;241m1\u001b[39m\n\u001b[1;32m 632\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_dataset_kind \u001b[38;5;241m==\u001b[39m _DatasetKind\u001b[38;5;241m.\u001b[39mIterable \u001b[38;5;129;01mand\u001b[39;00m \\\n\u001b[1;32m 633\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_IterableDataset_len_called \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;129;01mand\u001b[39;00m \\\n\u001b[1;32m 634\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_num_yielded \u001b[38;5;241m>\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_IterableDataset_len_called:\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/utils/data/dataloader.py:1327\u001b[0m, in \u001b[0;36m_MultiProcessingDataLoaderIter._next_data\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1324\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_process_data(data)\n\u001b[1;32m 1326\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_shutdown \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_tasks_outstanding \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m\n\u001b[0;32m-> 1327\u001b[0m idx, data \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1328\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_tasks_outstanding \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;241m1\u001b[39m\n\u001b[1;32m 1329\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_dataset_kind \u001b[38;5;241m==\u001b[39m _DatasetKind\u001b[38;5;241m.\u001b[39mIterable:\n\u001b[1;32m 1330\u001b[0m \u001b[38;5;66;03m# Check for _IterableDatasetStopIteration\u001b[39;00m\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/utils/data/dataloader.py:1293\u001b[0m, in \u001b[0;36m_MultiProcessingDataLoaderIter._get_data\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1289\u001b[0m \u001b[38;5;66;03m# In this case, `self._data_queue` is a `queue.Queue`,. But we don't\u001b[39;00m\n\u001b[1;32m 1290\u001b[0m \u001b[38;5;66;03m# need to call `.task_done()` because we don't use `.join()`.\u001b[39;00m\n\u001b[1;32m 1291\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1292\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m \u001b[38;5;28;01mTrue\u001b[39;00m:\n\u001b[0;32m-> 1293\u001b[0m success, data \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_try_get_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1294\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m success:\n\u001b[1;32m 1295\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m data\n", - "File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/utils/data/dataloader.py:1131\u001b[0m, in \u001b[0;36m_MultiProcessingDataLoaderIter._try_get_data\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 1118\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_try_get_data\u001b[39m(\u001b[38;5;28mself\u001b[39m, timeout\u001b[38;5;241m=\u001b[39m_utils\u001b[38;5;241m.\u001b[39mMP_STATUS_CHECK_INTERVAL):\n\u001b[1;32m 1119\u001b[0m \u001b[38;5;66;03m# Tries to fetch data from `self._data_queue` once for a given timeout.\u001b[39;00m\n\u001b[1;32m 1120\u001b[0m \u001b[38;5;66;03m# This can also be used as inner loop of fetching without timeout, with\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1128\u001b[0m \u001b[38;5;66;03m# Returns a 2-tuple:\u001b[39;00m\n\u001b[1;32m 1129\u001b[0m \u001b[38;5;66;03m# (bool: whether successfully get data, any: data if successful else None)\u001b[39;00m\n\u001b[1;32m 1130\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1131\u001b[0m data \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_data_queue\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1132\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m (\u001b[38;5;28;01mTrue\u001b[39;00m, data)\n\u001b[1;32m 1133\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 1134\u001b[0m \u001b[38;5;66;03m# At timeout and error, we manually check whether any worker has\u001b[39;00m\n\u001b[1;32m 1135\u001b[0m \u001b[38;5;66;03m# failed. Note that this is the only mechanism for Windows to detect\u001b[39;00m\n\u001b[1;32m 1136\u001b[0m \u001b[38;5;66;03m# worker failures.\u001b[39;00m\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/queues.py:113\u001b[0m, in \u001b[0;36mQueue.get\u001b[0;34m(self, block, timeout)\u001b[0m\n\u001b[1;32m 111\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m block:\n\u001b[1;32m 112\u001b[0m timeout \u001b[38;5;241m=\u001b[39m deadline \u001b[38;5;241m-\u001b[39m time\u001b[38;5;241m.\u001b[39mmonotonic()\n\u001b[0;32m--> 113\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_poll\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m:\n\u001b[1;32m 114\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m Empty\n\u001b[1;32m 115\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_poll():\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/connection.py:257\u001b[0m, in \u001b[0;36m_ConnectionBase.poll\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 255\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_check_closed()\n\u001b[1;32m 256\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_check_readable()\n\u001b[0;32m--> 257\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_poll\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/connection.py:424\u001b[0m, in \u001b[0;36mConnection._poll\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 423\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_poll\u001b[39m(\u001b[38;5;28mself\u001b[39m, timeout):\n\u001b[0;32m--> 424\u001b[0m r \u001b[38;5;241m=\u001b[39m \u001b[43mwait\u001b[49m\u001b[43m(\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 425\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mbool\u001b[39m(r)\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/connection.py:931\u001b[0m, in \u001b[0;36mwait\u001b[0;34m(object_list, timeout)\u001b[0m\n\u001b[1;32m 928\u001b[0m deadline \u001b[38;5;241m=\u001b[39m time\u001b[38;5;241m.\u001b[39mmonotonic() \u001b[38;5;241m+\u001b[39m timeout\n\u001b[1;32m 930\u001b[0m \u001b[38;5;28;01mwhile\u001b[39;00m \u001b[38;5;28;01mTrue\u001b[39;00m:\n\u001b[0;32m--> 931\u001b[0m ready \u001b[38;5;241m=\u001b[39m \u001b[43mselector\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mselect\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 932\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m ready:\n\u001b[1;32m 933\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m [key\u001b[38;5;241m.\u001b[39mfileobj \u001b[38;5;28;01mfor\u001b[39;00m (key, events) \u001b[38;5;129;01min\u001b[39;00m ready]\n", - "File \u001b[0;32m/usr/lib/python3.10/selectors.py:416\u001b[0m, in \u001b[0;36m_PollLikeSelector.select\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 414\u001b[0m ready \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 416\u001b[0m fd_event_list \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_selector\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpoll\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 417\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mInterruptedError\u001b[39;00m:\n\u001b[1;32m 418\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ready\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: " - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[{'url': 'http://images.cocodataset.org/train2017/000000461898.jpg', 'caption': 'A close up of a smiling woman with glasses, seen only from the waist up shows that she is manipulating something like a ribbon of diaphanous fabric, ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461898.jpg', 'caption': 'A smiling woman wearing glasses uses a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461898.jpg', 'caption': 'a woman is swinging around a video game controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461898.jpg', 'caption': 'A smiling woman in motion, holding wii controls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409251.jpg', 'caption': 'A man and woman are playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409251.jpg', 'caption': 'Man pressing buttons on the Wii controller for a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409251.jpg', 'caption': 'He is showing her how to hold the Nintendo Wii wand for best game results.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409251.jpg', 'caption': 'A man in a brown shirt helping a lady with a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409251.jpg', 'caption': 'The man and woman are playing a video game together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451468.jpg', 'caption': 'A picnic table inside of a large room .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451468.jpg', 'caption': 'A room with a wooden table, rug, sofa, and book shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451468.jpg', 'caption': 'This is a photo of a room with a picnic table in the center. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451468.jpg', 'caption': 'A large dining room with a long wooden table and a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451468.jpg', 'caption': 'a living room with a low ceiling and a center window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065267.jpg', 'caption': 'A clean, orderly living room with high ceilings and with many windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065267.jpg', 'caption': 'A Florida room is lit with location lighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065267.jpg', 'caption': 'A living room with large windows facing the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065267.jpg', 'caption': 'A large living room with several couches and lamps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065267.jpg', 'caption': 'A living room filled with furniture and lots of windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146627.jpg', 'caption': 'Two kids playing in a room with a beach ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146627.jpg', 'caption': 'A young boy and girl playing with pool toys indoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146627.jpg', 'caption': 'a couple of kids that are playing on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146627.jpg', 'caption': 'A group of young children sitting on top of a bean bag chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146627.jpg', 'caption': 'Children playing on the floor with an inflatable tube and a beach ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578498.jpg', 'caption': 'A living room area with some couches and a television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578498.jpg', 'caption': 'A living room filled with furniture and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578498.jpg', 'caption': ' a living room filled with brown furniture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578498.jpg', 'caption': 'A photograph of a messy living room in a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578498.jpg', 'caption': 'A living room scene with a couch and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203849.jpg', 'caption': 'A living room that has a lit lamp on the counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203849.jpg', 'caption': 'Large bright living area with cabinets and wooden floors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203849.jpg', 'caption': 'some white cabinets a fireplace a television set and a lamp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203849.jpg', 'caption': 'A living room filled with furniture and a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203849.jpg', 'caption': 'The living room is clean and empty of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196311.jpg', 'caption': 'Image of a living room showing couches facing each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196311.jpg', 'caption': 'A living room with two couches and a coffee table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196311.jpg', 'caption': 'A big room with a couple of couches and other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196311.jpg', 'caption': 'The living room has two large sofas in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196311.jpg', 'caption': 'a small living room with wooden tables and two couches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395405.jpg', 'caption': 'A living room filled with furniture and a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395405.jpg', 'caption': 'a living room next to a tiny breakfast nook ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395405.jpg', 'caption': 'No body has been in the lving room or dining room since it has been cleaned', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395405.jpg', 'caption': 'a living room that has a couch and a rug in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395405.jpg', 'caption': 'Living room and kitchen with furniture and sun shinning through window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436470.jpg', 'caption': 'a living room with couches chairs and a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436470.jpg', 'caption': 'two chairs, a couch and a table in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436470.jpg', 'caption': 'A living room filled with white furniture and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436470.jpg', 'caption': 'An indoor living space with furniture and decorations', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436470.jpg', 'caption': 'An open floor plan of a living room and dining room with red walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102446.jpg', 'caption': 'A living area with counter, chairs, windows and an air hockey table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102446.jpg', 'caption': 'A living room with hard wood floors filled with furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102446.jpg', 'caption': 'A picture of a family room with a computer set up at a breakfast counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102446.jpg', 'caption': 'An open living room with hardwood floors and a vase of flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102446.jpg', 'caption': 'A chair and counter in a large room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132001.jpg', 'caption': 'A white keyboard and mouse provide contrast to black desktop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132001.jpg', 'caption': 'A white keyboard and mouse on top of a black desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132001.jpg', 'caption': 'a mac mouse and keyboard on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132001.jpg', 'caption': 'a macintosh wired keyboard and wireless macintosh mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132001.jpg', 'caption': 'A keyboard and mouse sit on a black surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349737.jpg', 'caption': 'A computer on a table with all kinds of bottles and other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349737.jpg', 'caption': 'A computer monitor sitting next to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349737.jpg', 'caption': 'a monitor that is on a big white counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349737.jpg', 'caption': 'A computer station with monitor, keyboard and personal items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349737.jpg', 'caption': 'A computer monitor and keyboard sit on a counter with other objects.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235597.jpg', 'caption': 'A group of men sitting at desks with computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235597.jpg', 'caption': 'A group of young men sitting at a computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235597.jpg', 'caption': 'Four men of Middle Eastern descent are sitting in a computer lab and all are on a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235597.jpg', 'caption': 'Men sit in front of computer screens all in a row', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235597.jpg', 'caption': 'People are sitting at desks working on computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358763.jpg', 'caption': 'a keyboard with five screens and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358763.jpg', 'caption': 'The computer monitors are filled with important information.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358763.jpg', 'caption': 'five monitors a keyboard mouse and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358763.jpg', 'caption': 'A group of monitors are gathered on a computer desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358763.jpg', 'caption': 'A desk with multiple computer monitors and a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484982.jpg', 'caption': 'A living room with chairs a fireplace and mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484982.jpg', 'caption': 'A living room area furnished with a fireplace, chairs, bookshelves, etc. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484982.jpg', 'caption': 'A partial view of a formal living room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484982.jpg', 'caption': 'A living room with a picture hanging over the fireplace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484982.jpg', 'caption': 'a nicely decorated living room with a big mirror above the fireplace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129739.jpg', 'caption': 'A living room with furniture and a lamp in a corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129739.jpg', 'caption': 'a living room with some couches and a television in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129739.jpg', 'caption': 'a couple of coaches in a cluttered living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129739.jpg', 'caption': 'The curtains in a room project a blue light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129739.jpg', 'caption': 'A living room with a chandelier and picture window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281878.jpg', 'caption': 'A bed with two laptops on it below a painting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281878.jpg', 'caption': 'This room has a bed that has two laptops on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281878.jpg', 'caption': 'Two computers are on the matress of a small bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281878.jpg', 'caption': 'A bed that has two laptop computers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281878.jpg', 'caption': 'A bed sitting underneath a painting on top of a hard wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503311.jpg', 'caption': 'The kite surfer is walking on the beach holding the kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503311.jpg', 'caption': 'A man flying a kite over a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503311.jpg', 'caption': 'A man flying a kite while walking on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503311.jpg', 'caption': 'A man carrying something and flying a kite with his other hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503311.jpg', 'caption': 'A man holding kite down by the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245453.jpg', 'caption': 'Someone releases a colorful kite to someone else holding the string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245453.jpg', 'caption': 'A person jumps and tries to catch a kite in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245453.jpg', 'caption': 'A person that just let go of a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245453.jpg', 'caption': 'A man is about to fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245453.jpg', 'caption': 'a person flying a kite near a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568101.jpg', 'caption': 'kites being flown on the beach near the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568101.jpg', 'caption': 'A beach a lot of people flying kites in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568101.jpg', 'caption': 'The flock of seagulls is converging on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568101.jpg', 'caption': 'a group of birds flying over a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568101.jpg', 'caption': 'A crowd of people flying kites next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049559.jpg', 'caption': 'A person with a flying kite on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049559.jpg', 'caption': 'A beach area with people flying a kite next to tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049559.jpg', 'caption': 'People flying a kite on the beach with choppy waters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049559.jpg', 'caption': 'the shoreline of a sandy beach with a colorful kite flying above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049559.jpg', 'caption': 'Colorful kite being flown over the ocean as people are on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381106.jpg', 'caption': 'two kids play at the beach with their kite ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381106.jpg', 'caption': 'Two persons flying a kite on the sea beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381106.jpg', 'caption': 'Two little kids flying a kite on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381106.jpg', 'caption': 'Two children flying a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381106.jpg', 'caption': 'Two children on a beach flying a yellow kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132686.jpg', 'caption': 'A sky filled with lots of colorful flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132686.jpg', 'caption': 'Variety of different colored kites flying next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132686.jpg', 'caption': 'Multi colored and shaped kites flying in cloudy skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132686.jpg', 'caption': 'many different types of kites flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132686.jpg', 'caption': 'A bunch of clouds flying very high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471009.jpg', 'caption': 'The woman is flying her kite on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471009.jpg', 'caption': 'there is a man and a woman flying a kite on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471009.jpg', 'caption': 'People flying a kite on the sand near the ocean ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471009.jpg', 'caption': 'A man watching a woman fly a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471009.jpg', 'caption': 'two people on a beach with a kite flying in the sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138477.jpg', 'caption': 'A man flying a blue kite in an open ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138477.jpg', 'caption': 'A man flying a kite on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138477.jpg', 'caption': 'A male flying a wing kite in an open field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138477.jpg', 'caption': 'a person flying a blue kite in an open field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138477.jpg', 'caption': 'A man attempting to launch a parachute style kite in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012543.jpg', 'caption': 'Children in a green field flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012543.jpg', 'caption': 'two kids are flying a kite in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012543.jpg', 'caption': 'Boy flies a kite with family in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012543.jpg', 'caption': 'A couple of people flying a colorful kite over a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012543.jpg', 'caption': 'A child flies a kite with another child onlooking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039760.jpg', 'caption': 'A person para-sailing in the water with mountains in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039760.jpg', 'caption': 'A man is parasailing in the water on a sunny day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039760.jpg', 'caption': 'A person riding a board on the ocean while holding onto a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039760.jpg', 'caption': 'Someone is windsurfing in the ocean with a large sail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039760.jpg', 'caption': 'a person parasailing in the water in front of some mountains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076292.jpg', 'caption': 'A dark skinned child getting ready to be pushed on a swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076292.jpg', 'caption': \"A girl getting pushed in a child's swing.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076292.jpg', 'caption': 'A man pushes a brightly smiling little girl on a swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076292.jpg', 'caption': 'a young girl on a swing being pushed by her dad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076292.jpg', 'caption': 'A man pushing a girl on a swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499940.jpg', 'caption': 'Two kids out in the field where kites are being flown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499940.jpg', 'caption': 'Two young children in open field with kites in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499940.jpg', 'caption': 'Two boys play in an open country field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499940.jpg', 'caption': 'Two boys are in a field flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499940.jpg', 'caption': 'A boy standing over a smaller boy who is kneeling down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016356.jpg', 'caption': 'two kids standing outside flying a kite during the day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016356.jpg', 'caption': 'Two young boys standing in grassy field watching kites in sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016356.jpg', 'caption': 'An older kid helping a younger one fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016356.jpg', 'caption': 'A pair of boys flying a kite in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016356.jpg', 'caption': 'A man standing next to a little boy flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296098.jpg', 'caption': \"A tall clock tower with a clock on each of it's sides.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296098.jpg', 'caption': 'A tall tower with a clock on the top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296098.jpg', 'caption': 'The clock tower rises higher than any building in the vicinity', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296098.jpg', 'caption': 'A tan stone building with a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296098.jpg', 'caption': 'The spire with the clock faces reaches towards the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146738.jpg', 'caption': 'A strange brass statue holding a clock on a bureau', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146738.jpg', 'caption': 'Clock statue sitting in front of a wall mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146738.jpg', 'caption': 'A mirror stands with a desk and a clock by it..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146738.jpg', 'caption': 'A very tall pretty clock in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146738.jpg', 'caption': 'A large mirror mounted to the wall of a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400538.jpg', 'caption': 'Many students sit together and talk in a classroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400538.jpg', 'caption': 'some people are sitting in desks and some are using laptops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400538.jpg', 'caption': 'a lot of people in a classroom setting ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400538.jpg', 'caption': 'A group of students split into groups for studying.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400538.jpg', 'caption': 'A bunch of teenagers in a classroom with laptops and books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331162.jpg', 'caption': 'This is a room full of laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331162.jpg', 'caption': 'There is a room with several laptops on tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331162.jpg', 'caption': 'A classroom with laptop computers, a projection screen and a basket of cookies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331162.jpg', 'caption': 'A computer lab has a blue wall and projector screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331162.jpg', 'caption': 'some tables laptops chairs a white board and a white screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502090.jpg', 'caption': 'A kite flying through a blue sky with a long tail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502090.jpg', 'caption': 'A colorful kite is flying over the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502090.jpg', 'caption': 'A kite flying through the sky on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502090.jpg', 'caption': 'a very pretty kite is flying high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502090.jpg', 'caption': 'THERE ARE DIFFERENT KITES FLYING IN THE SKY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137003.jpg', 'caption': 'A small girl is holding a large triangular kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137003.jpg', 'caption': 'A small child excitedly holds a kite over her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137003.jpg', 'caption': 'A smiling young girl holding a colorful kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137003.jpg', 'caption': 'a little girl is holding up a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137003.jpg', 'caption': 'a little girl holding onto a colorful kite at a carnival ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403065.jpg', 'caption': 'A beach patrol vehicle thats performing his duties on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403065.jpg', 'caption': 'A beach patrol jeep drives along the sand as people wade and fly kites down the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403065.jpg', 'caption': 'a white truck is driving down the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403065.jpg', 'caption': 'Many people and a car are on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403065.jpg', 'caption': 'A car with a load on top drives down a foggy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232309.jpg', 'caption': 'A man standing on a beach flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232309.jpg', 'caption': 'A man looks up at a dragon kite while on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232309.jpg', 'caption': 'a man playing with a kite that looks a bit like a dragon on the beach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232309.jpg', 'caption': 'Man in blue shirt flying a dragon shaped kite at the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232309.jpg', 'caption': 'Man flying a dragon kite on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199602.jpg', 'caption': 'A woman standing in the sand with a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199602.jpg', 'caption': 'A woman standing in a field holding a multi colored kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199602.jpg', 'caption': 'A woman standing on a beach while holding a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199602.jpg', 'caption': 'A woman wearing a white shirt and black capris getting ready to fly a multi colored kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199602.jpg', 'caption': 'A woman in white shirt holding a kite on beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028655.jpg', 'caption': 'A clock that is on top of a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028655.jpg', 'caption': 'A clock sitting in the middle of a sidewalk near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028655.jpg', 'caption': 'A large clock on a post on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028655.jpg', 'caption': 'The clock is at the center of the old town square was erected by the local bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028655.jpg', 'caption': 'A clock stands on the corner of a quiet street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387431.jpg', 'caption': 'Sidewalk in city with store fronts and clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387431.jpg', 'caption': 'A large clock on a pole in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387431.jpg', 'caption': 'A street clock on a brick sidewalk next to a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387431.jpg', 'caption': 'A clock that reads 5:55, is placed near the building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387431.jpg', 'caption': 'A clock is shown on the side of a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448269.jpg', 'caption': 'A baseball player about to swing at a pitch during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448269.jpg', 'caption': 'A batter in a baseball game ready to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448269.jpg', 'caption': 'A batter, catcher and umpire during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448269.jpg', 'caption': 'A batter at a baseball game preparing to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448269.jpg', 'caption': 'a batter at home plate getting ready to hit the ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237669.jpg', 'caption': 'A baseball player takes his turn at bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237669.jpg', 'caption': 'A baseball player taking a swing at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237669.jpg', 'caption': 'A man just swung a bat at a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237669.jpg', 'caption': 'A team of baseball players playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237669.jpg', 'caption': 'A baseball game in a stadium with a lot of spectators.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426523.jpg', 'caption': 'Three young kids are playing with Wiffle bats in the yard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426523.jpg', 'caption': 'Two children who are playing with baseball bats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426523.jpg', 'caption': 'Children playing wiffle ball in a back yard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426523.jpg', 'caption': 'a couple of kids are swinging bats outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426523.jpg', 'caption': 'Two kids swinging baseball bats while another one jumps back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466211.jpg', 'caption': 'A baseball player up to bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466211.jpg', 'caption': 'A man holding a baseball bat at the home plate on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466211.jpg', 'caption': 'A baseball player about to swing at a pitch made.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466211.jpg', 'caption': 'A baseball player prepares to swing at the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466211.jpg', 'caption': 'A referee and umpire behind a batter at a baseball game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191096.jpg', 'caption': 'A baseball player holding a bat while standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191096.jpg', 'caption': 'The men are playing a game of baseball on the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191096.jpg', 'caption': 'A baseball player taking a swing at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191096.jpg', 'caption': \"The batter's waiting to see if the ball is fair or foul.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191096.jpg', 'caption': 'Two baseball players and an umpire are standing on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078707.jpg', 'caption': 'A guy squatting and holding a baseball bat at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078707.jpg', 'caption': 'A man standing on a field, holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078707.jpg', 'caption': 'A baseball player taking a swing at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078707.jpg', 'caption': 'A baseball player getting ready for a pitch at the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078707.jpg', 'caption': 'A baseball player up at bat with the catcher behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336493.jpg', 'caption': 'A man holding a baseball bat while standing next to home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336493.jpg', 'caption': 'There is a baseball game going on the player is waiting to hit the ball, the umpire is at base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336493.jpg', 'caption': \"There is dust coming out of the catcher's glove as a boy prepares to bat.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336493.jpg', 'caption': 'A catcher catches a baseball after a young kid swings and misses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336493.jpg', 'caption': 'The batter, catcher, and plate umpire are fixed on the pitcher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335833.jpg', 'caption': 'a very big building with a mounted clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335833.jpg', 'caption': 'An architectural structure that has a wooden dock surrounding it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335833.jpg', 'caption': 'Scaffolding surrounding a clock tower on a pier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335833.jpg', 'caption': 'Scaffolding around a building for construction or remodeling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335833.jpg', 'caption': 'A large building with a giant clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048636.jpg', 'caption': 'a baseball player is swinging a bat at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048636.jpg', 'caption': 'This is a baseball player mid-swing about to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048636.jpg', 'caption': 'The boy hits the baseball with a bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048636.jpg', 'caption': 'A baseball player reaching out the bat to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048636.jpg', 'caption': 'A batter is swinging for the baseball at a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132615.jpg', 'caption': 'A baseball player is swinging and about to run. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132615.jpg', 'caption': 'A man in a baseball outfit is wearing a hard hat and is swinging his bat while the catcher has his mitt out ready to catch it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132615.jpg', 'caption': 'a baseball player swings a bat at a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132615.jpg', 'caption': 'A person on a field with a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132615.jpg', 'caption': 'A batter hits the ball during a Little League baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430359.jpg', 'caption': 'A baseball player holding a bat over his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430359.jpg', 'caption': 'a baseball player is holding up a bat in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430359.jpg', 'caption': 'A man wearing a baseball uniform warms up with a bat on a stadium field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430359.jpg', 'caption': 'A professional baseball player holding a bat overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430359.jpg', 'caption': 'A baseball player is holding his bat over his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113914.jpg', 'caption': 'a kid poses on a side walk as a baseball player ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113914.jpg', 'caption': \"Boy mimicking baseball batter's stance with rolled up paper.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113914.jpg', 'caption': 'A young person holding rolls of paper as if they were a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113914.jpg', 'caption': 'A smiling boy is holding rolled up paper like a bat on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113914.jpg', 'caption': 'a young person on a city street holding something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074369.jpg', 'caption': 'A little boy in a baseball uniform holds the bat ready to swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074369.jpg', 'caption': 'A young boy posing with a baseball bat in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074369.jpg', 'caption': 'A young man poses for his baseball team picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074369.jpg', 'caption': 'a boy that has a baseball bat in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074369.jpg', 'caption': 'A boy in a baseball uniform is holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418949.jpg', 'caption': \"The ballplayer waits in the batter's box, watching the umpire defend his call.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418949.jpg', 'caption': 'a batter standing on the side watching a baseball game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418949.jpg', 'caption': 'The batter is warming up for his turn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418949.jpg', 'caption': 'A batter up to swing in a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418949.jpg', 'caption': 'A baseball player waiting for his turn in baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569768.jpg', 'caption': 'A man standing over a little girl holding a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569768.jpg', 'caption': 'The adult is helping a small child swing a bat at a t-ball stand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569768.jpg', 'caption': 'The man is helping the girl hold the baseball bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569768.jpg', 'caption': 'A man teaching a child how to hit a ball of a tee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569768.jpg', 'caption': 'He was standing behind her helping her hold the baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505099.jpg', 'caption': 'a baseball player is going to swing a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505099.jpg', 'caption': 'A baseball game with Barry Bonds #25 at bat and a catcher and umpire behind the plate as fans, photographers and camera people look on from the stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505099.jpg', 'caption': 'Base ball game with pitcher on home base and the umpire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505099.jpg', 'caption': 'A man is at bat at a baseball game with a crowd watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505099.jpg', 'caption': 'A baseball player is up to bat while the crowd films the event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384012.jpg', 'caption': 'A batter up at the plate in a baseball game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384012.jpg', 'caption': 'A baseball player about to receive a pitch in a stadium full of people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384012.jpg', 'caption': 'Many fans are in a stadium watching a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384012.jpg', 'caption': 'base ball players entertaining a crowd of spectators ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384012.jpg', 'caption': 'A batter at home plate waiting for a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093725.jpg', 'caption': 'A boy swinging a baseball bat at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093725.jpg', 'caption': 'The boy is getting ready to hit the ball with his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093725.jpg', 'caption': 'A woman that is holding a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093725.jpg', 'caption': 'a man holding a bat ready to kick a tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093725.jpg', 'caption': 'A boy swinging a bat at as baseball heading towards him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579056.jpg', 'caption': 'A man hit something that exploded with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579056.jpg', 'caption': 'a person breadking a bottle with a baseball bat ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579056.jpg', 'caption': 'A boy in yellow shirt swinging a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579056.jpg', 'caption': 'A man bathing in the blood of his victims as he swings his battle bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579056.jpg', 'caption': 'The young man has hit the glass and the drink has exploded everywhere. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276580.jpg', 'caption': 'A baseball player holding a bat while standing on top of a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276580.jpg', 'caption': 'A baseball batter practices swinging in front of a large audience.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276580.jpg', 'caption': 'a baseball player warm up with a baseball bat ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276580.jpg', 'caption': 'a baseball player swings his baseball bat in front of the dugout', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276580.jpg', 'caption': 'A baseball player is taking swings in the on-deck circle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377715.jpg', 'caption': 'A young baseball player in uniform getting ready to bat.,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377715.jpg', 'caption': 'a baseball player holding a bat on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377715.jpg', 'caption': 'Little league baseball game player getting ready to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377715.jpg', 'caption': 'A man in a gray baseball uniform holds a bat over his shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377715.jpg', 'caption': 'A baseball player practicing on a baseball field during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351683.jpg', 'caption': 'A batter is waiting for a baseball to come to him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351683.jpg', 'caption': 'A group of adults plays baseball in an outdoor field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351683.jpg', 'caption': 'A baseball player holding a bat on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351683.jpg', 'caption': 'A catcher prepares to catch the ball if the batter misses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351683.jpg', 'caption': 'A batter, catcher, and umpire are poised for a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005064.jpg', 'caption': 'A baseball player swinging a bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005064.jpg', 'caption': 'A batter swinging his bat during a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005064.jpg', 'caption': 'A man swinging a baseball bat at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005064.jpg', 'caption': 'a kid plays baseball as people watch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005064.jpg', 'caption': 'The men are playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046859.jpg', 'caption': 'A baseball player taking a swing at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046859.jpg', 'caption': 'A young ball player takes a swing while the umpire looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046859.jpg', 'caption': 'A baseball game, the batter has just swung on a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046859.jpg', 'caption': 'A batter at home plate who has just finished swinging at the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046859.jpg', 'caption': 'A batter has just swung the bat in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024223.jpg', 'caption': 'A large pepperoni and mushroom pizza being cut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024223.jpg', 'caption': 'A person is slicing an oven bake pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024223.jpg', 'caption': 'a close up of a person slicing pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024223.jpg', 'caption': 'A person cutting a pizza on a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024223.jpg', 'caption': 'A person reaching for a pizza on a pan with various toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365426.jpg', 'caption': 'Photograph of an outdoor arena that looks great.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365426.jpg', 'caption': 'A lot of children are learning to play tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365426.jpg', 'caption': 'a small group of kids standing around a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365426.jpg', 'caption': 'A bunch of kids standing around on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365426.jpg', 'caption': 'kids on a tennis court playing a tennis games ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564745.jpg', 'caption': 'A young boy holding a rack fulled of tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564745.jpg', 'caption': 'A boy is on a tennis court carrying a tray of balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564745.jpg', 'caption': 'A boy holds several tennis balls on his racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564745.jpg', 'caption': 'A young man in an orange shirt is holding a tray of tennis balls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564745.jpg', 'caption': 'A boy balances many tennis balls on a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069392.jpg', 'caption': 'A group of people that are standing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069392.jpg', 'caption': 'A group of people who are on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069392.jpg', 'caption': 'a few people that are playing tennis on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069392.jpg', 'caption': 'A group of people standing on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069392.jpg', 'caption': 'some people standing on a tennis court holding tennis racketts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240727.jpg', 'caption': 'Two children are sitting at a table eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240727.jpg', 'caption': 'Two kids at a table with one eating while the other looks on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240727.jpg', 'caption': 'Two young children are eating food off of a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240727.jpg', 'caption': 'A baby and an older toddler sitting at a kitchen table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240727.jpg', 'caption': 'Two children sitting at a table eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020965.jpg', 'caption': 'a tennis player attempting to reach a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020965.jpg', 'caption': 'A man is trying to catch the Tennis ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020965.jpg', 'caption': 'A man shows his great form while returning the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020965.jpg', 'caption': 'A tennis player is about to hit a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020965.jpg', 'caption': 'Man attempting to return a volley during a tennis game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360926.jpg', 'caption': 'A man jumping in the air with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360926.jpg', 'caption': 'A person about to swing a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360926.jpg', 'caption': 'A man on a tennis court jumping to reach the ball with his racket ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360926.jpg', 'caption': 'The tennis player is reaching for the high ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360926.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303298.jpg', 'caption': 'A person holding a tennis racket in the air on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303298.jpg', 'caption': 'A man with a hat and sunglasses playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303298.jpg', 'caption': 'A man holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303298.jpg', 'caption': 'A man in sunglasses and a hat is getting ready to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303298.jpg', 'caption': 'A tennis player hits the ball back to his opponent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158015.jpg', 'caption': 'A man holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158015.jpg', 'caption': 'A man taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158015.jpg', 'caption': 'A man on a tennis court, looking up at a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158015.jpg', 'caption': 'A man holding a racquet looking up at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158015.jpg', 'caption': \"A tennis player attempts to hit a ball that's in the air.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280607.jpg', 'caption': 'A pizza that is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280607.jpg', 'caption': 'A person cutting up a small square pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280607.jpg', 'caption': 'A rustic pizza being cut into eight slices', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280607.jpg', 'caption': 'SOMEONE CUTTING A HOMEMADE PIZZA PIE IN HALF', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280607.jpg', 'caption': 'The person is cutting the pizza on the counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340420.jpg', 'caption': 'two different pizzas that just came out of an oven. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340420.jpg', 'caption': 'Two stainless steel trays holding pizzas on top of a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340420.jpg', 'caption': 'A couple of pizzas sitting on top of metal pans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340420.jpg', 'caption': 'Variety of baked pizzas displayed on metal pans on stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340420.jpg', 'caption': 'there are two small pizzas on the plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477010.jpg', 'caption': 'A tennis player serves a ball as a crowd watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477010.jpg', 'caption': 'a tennis player getting ready to serve the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477010.jpg', 'caption': 'A man serving the ball as the audience watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477010.jpg', 'caption': 'A tennis player has a crowd of spectators behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477010.jpg', 'caption': 'A man with a tennis racquet about to swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560323.jpg', 'caption': 'a man with a tennis racket celebrates as people look on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560323.jpg', 'caption': 'a tennis player with an angry look on his face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560323.jpg', 'caption': 'A tennis player reacts as the crowd looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560323.jpg', 'caption': 'Man holding tennis racket in one hand, with arms bent, hands in fists, and mouth clenched, standing man with raised camera and spectators behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560323.jpg', 'caption': 'A man walking across a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308441.jpg', 'caption': 'A woman holding a tennis racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308441.jpg', 'caption': 'The audience watches the tennis playing woman on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308441.jpg', 'caption': 'A tennis match being viewed from an audience perspective.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308441.jpg', 'caption': 'An image taken from the audience of a tennis tournament.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308441.jpg', 'caption': 'A tennis player waiting for a serve on a grass court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480726.jpg', 'caption': 'A group of people on a court with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480726.jpg', 'caption': 'A doubles tennis match is about to commence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480726.jpg', 'caption': 'four women in white outfits are playing tennis and some fans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480726.jpg', 'caption': 'A group of women standing on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480726.jpg', 'caption': 'there are four woman talking at a tennis game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527023.jpg', 'caption': 'A women doubles team in tennis converse as they are on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527023.jpg', 'caption': 'Two women stand next to each other on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527023.jpg', 'caption': 'two women in white dresses playing tennis and fans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527023.jpg', 'caption': 'Tennis players cross paths on a grassy court with packed stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527023.jpg', 'caption': 'Tennis match in play with people in the stands watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493174.jpg', 'caption': 'Two women in white dresses playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493174.jpg', 'caption': 'Two women playing tennis while a crowd watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493174.jpg', 'caption': 'Two women playing doubles tennis at a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493174.jpg', 'caption': 'A couple of women on a court playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493174.jpg', 'caption': 'Two women on the same side of the tennis court, playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331692.jpg', 'caption': 'A pizza topped with lots of toppings on a checkered table cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331692.jpg', 'caption': 'a plate of food that is on checkered table cloth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331692.jpg', 'caption': 'A very nice looking pizza with assorted toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331692.jpg', 'caption': 'A pizza with many toppings is sitting on a checkered table cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331692.jpg', 'caption': 'A pizza with pesto, peppers, olives, and artichokes on a checked napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284220.jpg', 'caption': 'There is a boy playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284220.jpg', 'caption': 'Young boy on court playing tennis wearing red shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284220.jpg', 'caption': 'A young boy is in a tennis court and has his hand with the racket up and ready to receive a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284220.jpg', 'caption': 'a boy is holding a tennis racket outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284220.jpg', 'caption': 'a tennis player with a tennis racket ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272262.jpg', 'caption': 'A guy in a maroon shirt is holding a tennis racket out to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272262.jpg', 'caption': 'A man on a tennis court that has a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272262.jpg', 'caption': 'A boy hitting a tennis ball on the tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272262.jpg', 'caption': 'A person hitting a tennis ball with a tennis racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272262.jpg', 'caption': 'A boy attempts to hit the tennis ball with the racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196053.jpg', 'caption': 'A woman holding a tennis racquet on top of a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196053.jpg', 'caption': 'A woman hitting a ball with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196053.jpg', 'caption': 'A woman follows through on her swing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196053.jpg', 'caption': 'a woman hits a tennis ball with a racquet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196053.jpg', 'caption': 'A smiling male tennis player swinging a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461063.jpg', 'caption': 'a lady in blue shorts and white shirt swinging at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461063.jpg', 'caption': 'a lady that is on a tennis court with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461063.jpg', 'caption': 'A tennis player in action on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461063.jpg', 'caption': 'there is a young woman playing tennis on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461063.jpg', 'caption': 'A woman hitting a tennis ball on the tennis court ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133698.jpg', 'caption': 'A pizza that is half pepperoni and half chicken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133698.jpg', 'caption': 'A square shaped pizza half pepperoni and half mushroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133698.jpg', 'caption': 'A pizza, with half pepperoni and half mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133698.jpg', 'caption': 'A square half pepperoni and half anchovies pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133698.jpg', 'caption': 'This is a pizza that is half pepperoni and half chicken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335578.jpg', 'caption': 'A tennis player hits a ball in an indoor area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335578.jpg', 'caption': 'A woman swinging her racket to hit a ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335578.jpg', 'caption': 'A woman prepares to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335578.jpg', 'caption': 'A woman is playing tennis and about to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335578.jpg', 'caption': 'A woman is getting ready to hit a tennis ball with her racquet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377385.jpg', 'caption': 'A tennis player is lunging for the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377385.jpg', 'caption': 'A woman hitting a tennis ball with a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377385.jpg', 'caption': 'a woman tennis player in a white top is playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377385.jpg', 'caption': 'A tennis player looks at a tennis ball as she lifts up a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377385.jpg', 'caption': 'A woman is reaching to strike a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500062.jpg', 'caption': 'A person jumping as they swing at a incoming tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500062.jpg', 'caption': 'A woman in white shirt and black shorts playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500062.jpg', 'caption': 'A tennis player forcefully hits a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500062.jpg', 'caption': 'A person wearing black shorts is playing indoor tennis ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500062.jpg', 'caption': 'A woman swinging a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398362.jpg', 'caption': 'A window with wooden shutters and metal bars across it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398362.jpg', 'caption': 'A light bulb hanging above an open door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398362.jpg', 'caption': 'Theres seems to be something hanging by a door way', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398362.jpg', 'caption': 'A light bulb hangs down in front of a window with bars in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398362.jpg', 'caption': 'A vase hanging in font of a barred window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152751.jpg', 'caption': 'A computer desk with a green mat sitting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152751.jpg', 'caption': 'A desk with some blue prints, an envelope and a coffee mug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152751.jpg', 'caption': 'A desk with various office supplies adjacent to a window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152751.jpg', 'caption': 'A large desk by a window is neatly arranged.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152751.jpg', 'caption': 'A desk area with a window view with mugs, tablets, and books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038034.jpg', 'caption': 'An office with a computer, printer, scanner and many other technologies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038034.jpg', 'caption': 'The desk holds a computer, mouse and some other office supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038034.jpg', 'caption': 'A desk with a computer, scanner and a printer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038034.jpg', 'caption': 'a computer desk with a printer and someone hard at work', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038034.jpg', 'caption': 'a desk with a keyboard a monitor and a mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212704.jpg', 'caption': 'Four girls who are looking at a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212704.jpg', 'caption': 'Four young women are smiling at a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212704.jpg', 'caption': 'four nice ladies gazing at the computers smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212704.jpg', 'caption': 'A group of four women in orange aprons in front of a computer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212704.jpg', 'caption': 'a group of people gathered around one person sitting in front o f a computer monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295564.jpg', 'caption': 'A lot of colorful vases sitting on top of a white table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295564.jpg', 'caption': 'Varity of vases made of colored blown glass on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295564.jpg', 'caption': 'A table with many painted glass items on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295564.jpg', 'caption': 'A bunch of glass bottles on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295564.jpg', 'caption': 'Many colorful glass jars on the table have different shapes and sizes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354540.jpg', 'caption': 'A counter with extension cords, a toaster oven and a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354540.jpg', 'caption': 'A kitchen has wires hanging down from a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354540.jpg', 'caption': 'an image of a kitchen setting with various cords hanging', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354540.jpg', 'caption': 'Many wires hang over the edge of a counter with electronics on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354540.jpg', 'caption': 'a counter with a toaster over and an open laptop sitting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041550.jpg', 'caption': 'A room with large curved desk with lots of chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041550.jpg', 'caption': 'A view of an empty conference room with laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041550.jpg', 'caption': 'a table that has a bunch of chairs around it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041550.jpg', 'caption': 'A very big room with long counters filled with laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041550.jpg', 'caption': 'A room with a projector and a lot of chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043635.jpg', 'caption': 'A bunch of people sit in an open court yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043635.jpg', 'caption': 'a small group of people standing around a ball patio ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043635.jpg', 'caption': 'A group of people walking around a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043635.jpg', 'caption': 'A group of people in front of a white building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043635.jpg', 'caption': 'Many people on a courtyard under a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153563.jpg', 'caption': 'A group of men in suits sitting at a table using laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153563.jpg', 'caption': 'A group of men sitting by tables working on laptops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153563.jpg', 'caption': 'Business people sit at their desks and use devices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153563.jpg', 'caption': 'A group of men sitting at a desk with lap top computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153563.jpg', 'caption': 'Two men gesture hands next to laptops, one man uses a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335532.jpg', 'caption': 'A little girl eating food while sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335532.jpg', 'caption': 'A close-up of a little girl eating a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335532.jpg', 'caption': 'A girl eagerly bites into a hot dog bun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335532.jpg', 'caption': 'A young girl biting into a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335532.jpg', 'caption': 'A girl is taking a bite out of a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365289.jpg', 'caption': 'A young girl is holding a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365289.jpg', 'caption': 'A child holding a large teddy bear wearing boots and clothing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365289.jpg', 'caption': 'A young girl holding a little stuffed animal rabbit.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000391895.jpg', 'caption': 'A man with a red helmet on a small moped on a dirt road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391895.jpg', 'caption': 'Man riding a motor bike on a dirt road on the countryside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391895.jpg', 'caption': 'A man riding on the back of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391895.jpg', 'caption': 'A dirt path with a young person on a motor bike rests to the foreground of a verdant area with a bridge and a background of cloud-wreathed mountains. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391895.jpg', 'caption': 'A man in a red shirt and a red hat is on a motorcycle on a hill side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522418.jpg', 'caption': 'A woman wearing a net on her head cutting a cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522418.jpg', 'caption': 'A woman cutting a large white sheet cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522418.jpg', 'caption': 'A woman wearing a hair net cutting a large sheet cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522418.jpg', 'caption': 'there is a woman that is cutting a white cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522418.jpg', 'caption': \"A woman marking a cake with the back of a chef's knife. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184613.jpg', 'caption': 'A child holding a flowered umbrella and petting a yak.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184613.jpg', 'caption': 'A young man holding an umbrella next to a herd of cattle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184613.jpg', 'caption': 'a young boy barefoot holding an umbrella touching the horn of a cow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184613.jpg', 'caption': 'A young boy with an umbrella who is touching the horn of a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184613.jpg', 'caption': 'A boy holding an umbrella while standing next to livestock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318219.jpg', 'caption': 'A young boy standing in front of a computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318219.jpg', 'caption': 'a little boy wearing headphones and looking at a computer monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318219.jpg', 'caption': 'He is listening intently to the computer at school.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318219.jpg', 'caption': 'A young boy stares up at the computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318219.jpg', 'caption': 'a young kid with head phones on using a computer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554625.jpg', 'caption': 'a boy wearing headphones using one computer in a long row of computers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554625.jpg', 'caption': 'A little boy with earphones on listening to something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554625.jpg', 'caption': 'A group of people sitting at desk using computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554625.jpg', 'caption': 'Children sitting at computer stations on a long table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554625.jpg', 'caption': 'A small child wearing headphones plays on the computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574769.jpg', 'caption': 'A woman in a room with a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574769.jpg', 'caption': 'A girl smiles as she holds a cat and wears a brightly colored skirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574769.jpg', 'caption': 'a woman is holding a cat in her kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574769.jpg', 'caption': 'A woman is working in a kitchen carrying a soft toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574769.jpg', 'caption': 'A woman is holding a cat in her kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060623.jpg', 'caption': 'A young girl inhales with the intent of blowing out a candle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060623.jpg', 'caption': 'A young girl is preparing to blow out her candle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060623.jpg', 'caption': 'A kid is to blow out the single candle in a bowl of birthday goodness. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060623.jpg', 'caption': 'Girl blowing out the candle on an ice-cream ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060623.jpg', 'caption': 'A little girl is getting ready to blow out a candle on a small dessert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309022.jpg', 'caption': 'A commercial stainless kitchen with a pot of food cooking. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309022.jpg', 'caption': 'Some food sits in a pot in a kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309022.jpg', 'caption': 'A kitchen has all stainless steel appliances and counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309022.jpg', 'caption': 'a kitchen with a sink and many cooking machines and a pot of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309022.jpg', 'caption': 'Food cooks in a pot on a stove in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005802.jpg', 'caption': 'Two men wearing aprons working in a commercial-style kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005802.jpg', 'caption': 'Chefs preparing food in a professional metallic style kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005802.jpg', 'caption': 'Two people standing around in a large kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005802.jpg', 'caption': 'A commercial kitchen with two men working to prepare several plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005802.jpg', 'caption': 'two men in white shirts in a large steel kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222564.jpg', 'caption': 'Two chefs in a restaurant kitchen preparing food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222564.jpg', 'caption': 'Two cooks are cooking the food someone ordered at this restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222564.jpg', 'caption': 'The chef is cooking with pans on the stove next to an oven. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222564.jpg', 'caption': 'Two men that are standing in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222564.jpg', 'caption': 'Two cooks are near the stove in a stainless steel kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118113.jpg', 'caption': 'this is a very dark picture of a room with a shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118113.jpg', 'caption': 'a cluttered room with a table and shelf on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118113.jpg', 'caption': 'A view of a messy room, with shelves on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118113.jpg', 'caption': 'A dark and cluttered storage area with wood walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118113.jpg', 'caption': 'A dim lit room consisting of many objects put together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193271.jpg', 'caption': 'A kitchen filled with black appliances and lots of counter top space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193271.jpg', 'caption': 'some brown cabinets a black oven a tea kettle and a microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193271.jpg', 'caption': 'A small kitchen with glass and wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193271.jpg', 'caption': 'A modern style kitchen filled with may different items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193271.jpg', 'caption': 'A kitchen with wooden cabinets and black appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224736.jpg', 'caption': 'A professional kitchen filled with sinks and appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224736.jpg', 'caption': 'A kitchen area with toilet and various cleaning appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224736.jpg', 'caption': 'A commercial dish washing station with a toilet in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224736.jpg', 'caption': 'A toilet and mop bucket in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224736.jpg', 'caption': 'A cluttered room with a sink, a toilet and in industrial mop bucket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483108.jpg', 'caption': 'A man on a bicycle riding next to a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483108.jpg', 'caption': 'A person is riding a bicycle but there is a train in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483108.jpg', 'caption': 'a red and white train and a man riding a bicycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483108.jpg', 'caption': 'a guy that is riding his bike next to a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483108.jpg', 'caption': 'A man riding a bike past a train traveling along tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403013.jpg', 'caption': 'A narrow kitchen filled with appliances and cooking utensils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403013.jpg', 'caption': 'A galley kitchen with cabinets and appliances on both sides', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403013.jpg', 'caption': 'A hallway leading into a white kitchen with appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403013.jpg', 'caption': 'Doorway view of a kitchen with a sink, stove, refrigerator and pantry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403013.jpg', 'caption': 'The pantry door of the small kitchen is closed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374628.jpg', 'caption': 'A kitchen with wood floors and lots of furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374628.jpg', 'caption': 'A beautiful, open kitchen and dining room area features an island in the center and wood cabinets and large windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374628.jpg', 'caption': 'A kitchen made of mostly wood with a small desk with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374628.jpg', 'caption': 'A very spacious room with a kitchen and dining area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374628.jpg', 'caption': 'A full view of an open kitchen and dining area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328757.jpg', 'caption': 'A woman eating vegetables in front of a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328757.jpg', 'caption': 'A woman forks vegetables out of a bowl into her mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328757.jpg', 'caption': 'Woman eating an assortment of mixed vegetables in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328757.jpg', 'caption': 'A young woman standing in a kitchen eats a plate of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328757.jpg', 'caption': 'A woman eating fresh vegetables from a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384213.jpg', 'caption': 'A kitchen is shown with a variety of items on the counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384213.jpg', 'caption': 'A kitchen has the windows open and plaid curtains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384213.jpg', 'caption': 'A kitchen with two windows and two metal sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384213.jpg', 'caption': 'An older kitchen with cluttered counter tops but empty sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384213.jpg', 'caption': 'Glasses and bottles are placed near a kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293802.jpg', 'caption': 'A boy performing a kickflip on his skateboard on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293802.jpg', 'caption': 'A man is doing a trick on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293802.jpg', 'caption': 'A guy jumps in the air with his skateboard beneath him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293802.jpg', 'caption': 'Man in all black doing a trick on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293802.jpg', 'caption': 'A skateboarder flipping his board on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086408.jpg', 'caption': 'A kitchen with a stove, microwave and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086408.jpg', 'caption': 'A refrigerator, oven and microwave sitting in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086408.jpg', 'caption': 'The kitchenette uses small space to great efficiency.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086408.jpg', 'caption': 'an image of a kitchen setting with black appliances', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086408.jpg', 'caption': 'A kitchen with cabinets, a stove, microwave and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372938.jpg', 'caption': 'A group of people riding on the back of a loaded red pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372938.jpg', 'caption': 'A truck with a number of people and things in the back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372938.jpg', 'caption': 'Men are crowded on the back of a small overloaded pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372938.jpg', 'caption': 'An old pick up truck over loaded with people and cargo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372938.jpg', 'caption': 'A truck carries a large amount of items and a few people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386164.jpg', 'caption': 'A wooden ball on top of a wooden stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386164.jpg', 'caption': 'The table is full of wooden spoons and utensils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386164.jpg', 'caption': 'A wood table holding an assortment of wood cooking utensils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386164.jpg', 'caption': 'A selection of wooden kitchen tools on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386164.jpg', 'caption': 'Wooden spoons are lined up on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223648.jpg', 'caption': 'Multiple wooden spoons are shown on a table top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223648.jpg', 'caption': 'A table surrounded by chairs and filled with cooking utensils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223648.jpg', 'caption': 'Wooden spoons laid out across a kitchen table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223648.jpg', 'caption': 'Wooden spoons and forks are all over a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223648.jpg', 'caption': 'A table and chairs with wooden kitchen tools on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204805.jpg', 'caption': 'A large boat filled with mean on wheels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204805.jpg', 'caption': 'A bunch of people aboard a boat with wheels. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204805.jpg', 'caption': 'A boat is being rolled on a trailer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204805.jpg', 'caption': 'A large boat full of men is sitting on a cart ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204805.jpg', 'caption': 'A boat full of people is on a trailer with wheels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113588.jpg', 'caption': 'several young students working at a desk with multiple computers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113588.jpg', 'caption': 'A young man at his workstation examines the monitor of a lap top, with one hand on the keyboard and the other on the mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113588.jpg', 'caption': 'A man is working on a laptop next to other computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113588.jpg', 'caption': 'People in a large room, use multiple computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113588.jpg', 'caption': 'A young professional is working at his laptop while his coworker is reading material.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384553.jpg', 'caption': 'A man riding an elephant into some water of a creek.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384553.jpg', 'caption': 'man riding an elephant into water surrounded by forest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384553.jpg', 'caption': 'A man riding an elephant in a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384553.jpg', 'caption': 'A man in a brown shirt rides an elephant into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384553.jpg', 'caption': 'A man rides an elephant into a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337264.jpg', 'caption': 'a couple of women are in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337264.jpg', 'caption': 'Two people standing in the kitchen of a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337264.jpg', 'caption': 'A group of people who are around a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337264.jpg', 'caption': 'A group of people prepare dinner in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337264.jpg', 'caption': 'two women in a kitchen bottles and lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368402.jpg', 'caption': 'The woman in the kitchen is holding a huge pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368402.jpg', 'caption': 'A chef carrying a large pan inside of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368402.jpg', 'caption': 'A woman is holding a large pan in a kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368402.jpg', 'caption': 'A woman cooking in a kitchen with granite counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368402.jpg', 'caption': 'A woman cooking in her kitchen with a black pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012448.jpg', 'caption': 'A baby is laying down with a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012448.jpg', 'caption': 'A baby laying in a crib with a stuffed teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012448.jpg', 'caption': 'A baby wearing gloves, lying next to a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012448.jpg', 'caption': 'A baby stares to the left while taking a picture with a teddy bear lays beside it .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012448.jpg', 'caption': 'A baby lies on blue and green bedding next to a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079841.jpg', 'caption': 'Two bikers, one in front of a building, the other in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079841.jpg', 'caption': 'Two shots of men riding bicycles down city streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079841.jpg', 'caption': 'A man riding a bike in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079841.jpg', 'caption': 'There are two different people riding bikes down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079841.jpg', 'caption': 'Two photos of a person riding a bicycle on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515289.jpg', 'caption': 'People riding bicycles down the road approaching a bird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515289.jpg', 'caption': 'three bicycle riders some trees and a pigeon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515289.jpg', 'caption': 'A geoup of people on bicycles coming down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515289.jpg', 'caption': 'Several smiling bicycle riders approaching a colorful pigeon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515289.jpg', 'caption': 'A pigeon greets three bicyclists on a park path', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562150.jpg', 'caption': 'A little girl holding a kitten next to a blue fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562150.jpg', 'caption': 'Girl in a tank top holding a kitten in her back yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562150.jpg', 'caption': 'A young girl is holding a small cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562150.jpg', 'caption': 'Girl with a yellow shirt holding a small cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562150.jpg', 'caption': 'A girl smiles as she holds a kitty cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542145.jpg', 'caption': 'A toilet and a sink in small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542145.jpg', 'caption': 'a bathroom with just a toliet and a sink in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542145.jpg', 'caption': 'A small section of a bathroom with dim lighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542145.jpg', 'caption': 'a bathroom with a toilet, sink, cabinet and mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542145.jpg', 'caption': 'The bathroom has been cleaned and is ready to use. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412151.jpg', 'caption': 'A bicycle store shows two males leaning toward a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412151.jpg', 'caption': 'A man adjust a bicycle in a bike shop with a child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412151.jpg', 'caption': 'The bike shop employee is helping a customer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412151.jpg', 'caption': 'A man and a boy are talking about a bicycle in a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412151.jpg', 'caption': 'Two people in a shop looking at a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579003.jpg', 'caption': 'A shower stall with interesting tile is the focal point.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579003.jpg', 'caption': 'A full perspective of a washroom with a sink. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579003.jpg', 'caption': 'A white bathroom sink sitting under a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579003.jpg', 'caption': \"I picture of a bathroom with a stand up shower stall and a person's reflection in the mirror.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579003.jpg', 'caption': 'A small shower behind a small bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540186.jpg', 'caption': 'A view of a very large bathroom with mirrored walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540186.jpg', 'caption': 'a corner bathroom with two sinks and a bathtub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540186.jpg', 'caption': 'A bathroom with a sink, shower and bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540186.jpg', 'caption': 'A large bathroom with cabinets, mirrors and a tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540186.jpg', 'caption': 'This bathroom has mirrors on the doors, cabinets, and a bathtub in the corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242611.jpg', 'caption': 'a long beige bathroom with a door to a bedroom and another to the hallway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242611.jpg', 'caption': 'A view of a bathroom with double sinks and carpeted floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242611.jpg', 'caption': 'white vanity that opens up to a bathroom with shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242611.jpg', 'caption': 'a hallway with diamond patterned walls leading to a bathroom and a bedroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242611.jpg', 'caption': 'A bathroom with a large sink and mirror opens onto a room with the toilet and bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051191.jpg', 'caption': 'The view of a large bathroom with a walk in closet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051191.jpg', 'caption': 'A bathroom with a walk-in closet and a jacuzzi tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051191.jpg', 'caption': 'A white and beige tiled bathroom and adjoining walk-in closet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051191.jpg', 'caption': 'White tiled bathroom with a vanity tub and white flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051191.jpg', 'caption': 'Long shot of a bathroom includes closet and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269105.jpg', 'caption': 'A white toilet sitting next to a green wall under a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269105.jpg', 'caption': 'The letter A framed in a green bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269105.jpg', 'caption': 'There is a potted plant on the back of a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269105.jpg', 'caption': 'A white toilet and some tissue in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269105.jpg', 'caption': 'A commode with a plant on it under a picture on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294832.jpg', 'caption': 'A bathroom with an enclosed shower next to a sink and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294832.jpg', 'caption': 'A clean, spacious bathroom with a large shower stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294832.jpg', 'caption': 'There are a toilet, a sink, and a shower stall in a large bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294832.jpg', 'caption': 'A bathroom featuring a walk in shower, mirror, sink and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294832.jpg', 'caption': 'Bathroom with a shower, sink, and toilet in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462565.jpg', 'caption': 'people on bicycles ride down a busy street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462565.jpg', 'caption': 'A group of people are riding bikes down the street in a bike lane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462565.jpg', 'caption': 'bike riders passing Burger King in city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462565.jpg', 'caption': 'A group of bicyclists are riding in the bike lane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462565.jpg', 'caption': 'Bicyclists on a city street, most not using the bike lane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144941.jpg', 'caption': 'This is an image of the inside of a nice bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144941.jpg', 'caption': 'A white toilet next to a walk in shower and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144941.jpg', 'caption': 'A potted plant is being displayed in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144941.jpg', 'caption': 'A tiled bathroom with a potted plant as a center piece.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144941.jpg', 'caption': 'Interior bathroom scene with modern furnishings including a plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173350.jpg', 'caption': 'Two dogs are looking up while they stand near the toilet in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173350.jpg', 'caption': 'Two small dogs standing in a restroom next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173350.jpg', 'caption': 'Two dogs looking up at a camera in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173350.jpg', 'caption': 'Two small lap dogs in a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173350.jpg', 'caption': 'Two small dogs stand together in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060760.jpg', 'caption': 'A bathroom with a walk in shower currently under repair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060760.jpg', 'caption': 'A photograph of a bathroom undergoing major renovations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060760.jpg', 'caption': 'Interior shot of bathroom in the process of remodeling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060760.jpg', 'caption': 'Picture of bathroom being remolded where sink has not been installed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060760.jpg', 'caption': 'A room under construction with an unfinished shower and plumbing for the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324266.jpg', 'caption': 'The bathroom is clean for the guests to use. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324266.jpg', 'caption': 'A bath and a sink in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324266.jpg', 'caption': 'A bathroom area with tub, sink and standup shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324266.jpg', 'caption': 'a view of a bathroom which is covered in tiles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324266.jpg', 'caption': 'A kitchen is shown with a tub and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166532.jpg', 'caption': 'A white bath tub sitting next to a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166532.jpg', 'caption': 'There is a bathtub and a counter in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166532.jpg', 'caption': 'A bathroom with a tub and shower and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166532.jpg', 'caption': 'This is a shower and bathtub without a shower curtain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166532.jpg', 'caption': 'A bathroom that has a mirror and a bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262284.jpg', 'caption': 'A full view of a shower with glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262284.jpg', 'caption': 'A walk in shower with a hand held shower head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262284.jpg', 'caption': 'A bathroom shower stall with a shower head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262284.jpg', 'caption': 'a glass walled shower in a home bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262284.jpg', 'caption': 'a see through glass shower in a bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360772.jpg', 'caption': 'A toilet sitting in a bathroom next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360772.jpg', 'caption': 'A toilet in a bathroom with green faded paint.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360772.jpg', 'caption': 'A bathroom with a gouged wall and wall socket with no panel. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360772.jpg', 'caption': 'The toilet is near the door in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360772.jpg', 'caption': 'The bathroom wall needs to be resurfaced and painted.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191381.jpg', 'caption': 'Blue dust pan and brush on floor next to white commode.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191381.jpg', 'caption': 'A toilet in a low budget bathroom with a rough floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191381.jpg', 'caption': 'a close up of a toilet and a dust pale', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191381.jpg', 'caption': 'A clean toilet in a bathroom with a cement floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191381.jpg', 'caption': 'a bathroom with a blue dustpan and broom on the floor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111076.jpg', 'caption': 'A bathroom with a sink and toilet and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111076.jpg', 'caption': 'A white bathroom with white fixtures and tile floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111076.jpg', 'caption': 'A small white toilet sitting next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111076.jpg', 'caption': 'Small bathroom with a toilet, shower, and small mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111076.jpg', 'caption': 'A bathroom contains a toilet and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340559.jpg', 'caption': 'There are two sinks next to two mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340559.jpg', 'caption': 'Two very metallic sinks are shown as well as the mirrors above them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340559.jpg', 'caption': 'A room with stainless steel equipment including sinks and mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340559.jpg', 'caption': 'Two stainless steel sinks with mirrors and a fire extinguisher. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340559.jpg', 'caption': 'A photo of a bathroom made of steel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258985.jpg', 'caption': 'A large porcelain toilet posed with a tan flower pot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258985.jpg', 'caption': 'A toilet is sitting on the ground next to a plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258985.jpg', 'caption': 'A toliet sitting on a curb in front of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258985.jpg', 'caption': 'A white toilet sits on the front lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258985.jpg', 'caption': 'A white toilet sitting on a sidewalk outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509822.jpg', 'caption': 'a gray bicycle is locked to some metal doors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509822.jpg', 'caption': 'A bike that is padlocked to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509822.jpg', 'caption': 'The bicycle is locked on the green, metal wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509822.jpg', 'caption': 'A bike chained to the doors of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509822.jpg', 'caption': 'A bike is locked and hanging from a door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321107.jpg', 'caption': 'A woman rides a bicycle on a road next to the median.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321107.jpg', 'caption': 'A girl is riding her bike down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321107.jpg', 'caption': 'A lady riding her bicycle on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321107.jpg', 'caption': 'A person on a bike riding on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321107.jpg', 'caption': 'A woman riding a bike down a street next to a divider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229643.jpg', 'caption': 'A man takes a picture in the bathroom mirror\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229643.jpg', 'caption': 'a person taking a photo in a mirror ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229643.jpg', 'caption': 'A man taking a picture of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229643.jpg', 'caption': 'A bathroom sink sitting under a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229643.jpg', 'caption': 'A man takes a picture of his reflection in a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125059.jpg', 'caption': 'A bathroom with a white toilet sitting next to a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125059.jpg', 'caption': 'A bathroom vanity and toilet in a public restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125059.jpg', 'caption': 'A view of a bathroom shows a toilet, sink and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125059.jpg', 'caption': 'A modern looking bathroom has a toilet and a sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125059.jpg', 'caption': 'This bathroom has brown counter tops and a white toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455483.jpg', 'caption': 'A bathroom with two sinks and a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455483.jpg', 'caption': 'a big bathroom that has some sinks in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455483.jpg', 'caption': 'Bathroom vanity with double sinks and large mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455483.jpg', 'caption': 'A bathroom with sinks mirrors and tile flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455483.jpg', 'caption': 'A bathroom that has two sinks next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436141.jpg', 'caption': 'The bathroom is clean and ready to be used. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436141.jpg', 'caption': 'a small bathroom with a sink and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436141.jpg', 'caption': 'A toilet, sink and mirror in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436141.jpg', 'caption': 'Doorway view into bathroom with a sink and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436141.jpg', 'caption': 'A white toilet sitting next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129001.jpg', 'caption': 'A bath tub sitting next to a sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129001.jpg', 'caption': 'The bathroom is clean and ready for us to use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129001.jpg', 'caption': 'a bath tub sitting next to a sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129001.jpg', 'caption': 'A bathroom that has a shower curtain over a bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129001.jpg', 'caption': 'A bathroom with multicolored tile, bathtub and pedestal sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232262.jpg', 'caption': 'an image of a cars driving on the highway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232262.jpg', 'caption': 'A section of traffic coming to a stop at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232262.jpg', 'caption': 'A bunch of cars sit at the intersection of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232262.jpg', 'caption': 'This is a picture of traffic on a very busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232262.jpg', 'caption': 'A busy intersection filled with cars in asia', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061181.jpg', 'caption': 'This shot is of a crowded highway full of traffic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061181.jpg', 'caption': 'there are many taxi cabs on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061181.jpg', 'caption': 'A city street with lots of traffic and lined with buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061181.jpg', 'caption': 'Heavy city traffic all going in one direction', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061181.jpg', 'caption': 'Many cars stuck in traffic on a high way', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166323.jpg', 'caption': 'Mirror view of a bathroom with a sink and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166323.jpg', 'caption': 'mirror reflection of sink and the tub next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166323.jpg', 'caption': 'A bathroom mirror has the reflection of the sink and bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166323.jpg', 'caption': 'The bathroom is very small with white fixtures. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166323.jpg', 'caption': 'A sink is shown in a small bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580041.jpg', 'caption': 'A city street filled with traffic and parking lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580041.jpg', 'caption': 'A full view of a late evening with many cars parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580041.jpg', 'caption': 'A very dark street with cars and many wires above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580041.jpg', 'caption': \"A car's break lights glow as it waits at a red-light at an intersection.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580041.jpg', 'caption': 'A street scene with cars, street signs, and many high wires.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326781.jpg', 'caption': 'A white toilet and a sink in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326781.jpg', 'caption': 'White bathroom area with a blue and white shower curtain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326781.jpg', 'caption': 'Small bathroom area with a blue and white shower curtain hanging. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326781.jpg', 'caption': 'A bath tub shower sitting next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326781.jpg', 'caption': 'A toilet with a sink and the door opened', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326781.jpg', 'caption': 'a small white bathroom with a curtain for the shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387362.jpg', 'caption': 'A bathroom sink shapped like a glass bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387362.jpg', 'caption': 'A man that is standing with a mug in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387362.jpg', 'caption': 'a man taking a picture of himself in a bathroom mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387362.jpg', 'caption': 'A man standing in a bathroom taking a picture of his self in the mirror with his cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387362.jpg', 'caption': 'a man taking a selfie in a little bathroom mirror ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138079.jpg', 'caption': 'A door opens to a bare, white bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138079.jpg', 'caption': 'A varying palette of neutrals in a bathroom awaits the softening of the cabinetry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138079.jpg', 'caption': 'A bathroom with a tile floor, bathtub and shower and no shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138079.jpg', 'caption': 'A bathroom is shown with a shower and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138079.jpg', 'caption': 'A beige and white three piece bathroom with no shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556616.jpg', 'caption': 'A row of parked cars sitting next to parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556616.jpg', 'caption': 'A row of cars parked on a street with parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556616.jpg', 'caption': 'A series of parking meters and cars are located next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556616.jpg', 'caption': 'A parking meter on a street by a car with traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556616.jpg', 'caption': 'A parking meter on a street with cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472621.jpg', 'caption': 'An elegant bathroom features a tub, sink, mirror, and decorations. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472621.jpg', 'caption': 'An old fashion above ground tub is shown with gold feet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472621.jpg', 'caption': 'A lovely, vintage-styled bathroom with a great claw-footed tub. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472621.jpg', 'caption': 'Bathroom with a pedestal sink and claw foot bathtub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472621.jpg', 'caption': 'A claw foot tub is in a large bathroom near a pedestal sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192440.jpg', 'caption': 'A clean bathroom is seen in this image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192440.jpg', 'caption': 'A bathroom with a white toilet and large shelf full of stuff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192440.jpg', 'caption': 'some shelves filled with a bunch of different items in the bathroom\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192440.jpg', 'caption': 'A shelving unit is between a toilet and a bathroom sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192440.jpg', 'caption': 'A shelf with hygiene products in a bathroom.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086320.jpg', 'caption': 'A bathroom sink sitting under a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086320.jpg', 'caption': 'A bathroom with a vanity cabinet on the wrong wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086320.jpg', 'caption': 'A small beige bathroom with an additional medicine cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086320.jpg', 'caption': 'A bathroom sink with a mirror and medicine cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086320.jpg', 'caption': 'THERE IS A BATHROOM WITH A SINK AND A MIRROR', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256668.jpg', 'caption': 'A white urinal mounted to a bathroom wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256668.jpg', 'caption': 'A pair of kitchen tongs on top of a urinal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256668.jpg', 'caption': 'Bathroom urinal with kitchen tongs on top behind plumbing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256668.jpg', 'caption': 'A urinal in a bathroom with tongs on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256668.jpg', 'caption': 'a metal thing is sitting on top of a urinal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383445.jpg', 'caption': 'A glazed donut hanging from a metal rod.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383445.jpg', 'caption': 'A tasty looking treat hanging on a car antenna.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383445.jpg', 'caption': 'A donut on the antenna of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383445.jpg', 'caption': 'A donut put around an antenna on a car ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383445.jpg', 'caption': 'There is a donut sitting on the car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565797.jpg', 'caption': \"An orange striped tabby cat laying on top of a red vehicle's wheel.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565797.jpg', 'caption': 'a cat with a big fluffy tail sitting on top of a car tire ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565797.jpg', 'caption': 'A cat sitting on a wheel of a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565797.jpg', 'caption': 'A cat hiding in a fender well of a car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565797.jpg', 'caption': 'An orange cat hiding on the wheel of a red car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081922.jpg', 'caption': 'A large jetliner flying over a traffic filled street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081922.jpg', 'caption': 'An airplane flies low in the sky over a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081922.jpg', 'caption': 'An airplane flies over a street with many cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081922.jpg', 'caption': 'An airplane comes in to land over a road full of cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081922.jpg', 'caption': 'The plane is flying over top of the cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050125.jpg', 'caption': 'A silver and red bus in parking lot next to cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050125.jpg', 'caption': 'A silver bus that is parked in a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050125.jpg', 'caption': 'An older picture of a bus and other vehicles in a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050125.jpg', 'caption': 'An old bus parks in a parking lot with other cars and bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050125.jpg', 'caption': 'An older silver metro bus in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364521.jpg', 'caption': 'A red helmet is on a yellow toilet in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364521.jpg', 'caption': 'A yellow toilet with a red helmet on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364521.jpg', 'caption': 'A yellow toilet with a red helmet above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364521.jpg', 'caption': 'A toilet sitting in an outdoor area with a helmet resting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364521.jpg', 'caption': 'An old toilet sits in dirt with a helmet on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394892.jpg', 'caption': 'a little kid riding a skateboard at a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394892.jpg', 'caption': 'A child playing on a skateboard in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394892.jpg', 'caption': 'A girl stepping onto a skateboard in the playground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394892.jpg', 'caption': 'A young lady riding a skateboard across a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394892.jpg', 'caption': 'The kid is skateboarding on the street while wearing a jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001146.jpg', 'caption': 'A young man wearing black attire and a flowered tie is standing and smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001146.jpg', 'caption': 'A man with glasses and his eyes closed dressed in a black shirt and a necktie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001146.jpg', 'caption': 'A man in a green tie with his eyes closed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001146.jpg', 'caption': 'Smiling man wearing black shirt and pale green tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001146.jpg', 'caption': 'A person that is dressed up very nicely.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310391.jpg', 'caption': 'A car with some surfboards in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310391.jpg', 'caption': 'The old fashioned car is carrying some retro surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310391.jpg', 'caption': 'An old car with surfboards on the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310391.jpg', 'caption': 'An old vehicle painted light blue and dark blue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310391.jpg', 'caption': 'An old station wagon with a surfboard on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097434.jpg', 'caption': 'A person on a street next to a motor bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097434.jpg', 'caption': 'A cop standing next to a police bike next to a man sitting on a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097434.jpg', 'caption': 'A man sits on the sidewalk next to a police motorcycle with a police officer in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097434.jpg', 'caption': 'A man that is sitting down next to a cops motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097434.jpg', 'caption': 'A man is sitting on the sidewalk while a police officer is doing something behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463836.jpg', 'caption': 'A man looking down with a backpack on in a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463836.jpg', 'caption': 'THERE IS A MAN WITH BOOK BAG ON HIS BAG ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463836.jpg', 'caption': 'a person standing in a stone walled and floored room wearing a backpack ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463836.jpg', 'caption': 'A guy standing in a very dark room with a small window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463836.jpg', 'caption': 'A man in a stone room possibly using the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241876.jpg', 'caption': 'A cat on the lid of a toilet looking perturbed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241876.jpg', 'caption': 'A blurry picture of a cat standing on a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241876.jpg', 'caption': 'A cat standing on the toilet bowl seat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241876.jpg', 'caption': 'A cat is perched on the top of a toilet seat in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241876.jpg', 'caption': 'A cat standing on a toilet with an open lid.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156832.jpg', 'caption': 'A toilet sitting in a bathroom next to a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156832.jpg', 'caption': 'A small bathroom with the toilet seat up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156832.jpg', 'caption': 'The toilet seat was left in the up position.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156832.jpg', 'caption': 'A door open revealing a small bathroom with sink and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156832.jpg', 'caption': 'A toilet and a sink in a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270721.jpg', 'caption': 'Bathroom with white fixtures, tiles and corner shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270721.jpg', 'caption': 'A white toilet sitting in a bathroom next to a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270721.jpg', 'caption': 'Bathroom shot of non transparent shower glass and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270721.jpg', 'caption': 'An all white bathroom with a shower, toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270721.jpg', 'caption': 'A plain white bathroom with a sink, shower, and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462341.jpg', 'caption': 'An older building with birds flying near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462341.jpg', 'caption': 'A church with a high spire and decorative roof tiles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462341.jpg', 'caption': 'A large clock tower towering over a small city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462341.jpg', 'caption': 'Picture of a church and its tall steeple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462341.jpg', 'caption': 'Birds fly around a tall building with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310103.jpg', 'caption': 'a motorcycle in a driveway with a vanity license plate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310103.jpg', 'caption': 'Two luxurious motor bikes on the road near a hedge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310103.jpg', 'caption': 'a close up of a motorcycle license plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310103.jpg', 'caption': 'A motor bike parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310103.jpg', 'caption': 'The back of a motorcycle showing the wheel, license plate and lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032992.jpg', 'caption': 'A picture of a wooden container with crosses on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032992.jpg', 'caption': 'a close up of wood decorated with crosses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032992.jpg', 'caption': 'close up of a wooden base with crosses designed on the neck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032992.jpg', 'caption': 'A close up shut off some sort of religious object. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032992.jpg', 'caption': 'A shiny wooden object is decorated with crosses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122851.jpg', 'caption': 'There is a man picking bananas next to a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122851.jpg', 'caption': 'A man standing over several bunches of green bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122851.jpg', 'caption': \"A man attending to several bundles of banana's as a motorcycle rides by.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122851.jpg', 'caption': 'A guy grabbing a stack of bananas from a pile on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122851.jpg', 'caption': 'A man standing over some bundles of bananas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540763.jpg', 'caption': 'A restroom has a toilet and a decorative sun wall plaque.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540763.jpg', 'caption': 'A picture of a very nice and white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540763.jpg', 'caption': 'A bathroom with a white toilet in the middle of the wall and a sun wall decor above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540763.jpg', 'caption': 'A bath room with a sun decoration above the toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540763.jpg', 'caption': 'A bathroom has a sun decal on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138246.jpg', 'caption': 'some horses grazing in front of a church', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138246.jpg', 'caption': 'Three horses on a green pasture with an old building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138246.jpg', 'caption': 'A filed with brown horses standing next to a church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138246.jpg', 'caption': 'Three horses are grazing in a field in front of an old church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138246.jpg', 'caption': 'horses eating grass in a field with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197254.jpg', 'caption': 'A horse drawn carriage is parked along the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197254.jpg', 'caption': 'A horse drawn carriage is in front of an old large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197254.jpg', 'caption': 'A pair of horses carrying a carriage that is parked by a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197254.jpg', 'caption': 'A horse drawn carriage parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197254.jpg', 'caption': 'People walking pass a horse drawn carriage sitting at the curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032907.jpg', 'caption': 'a toilet on the ground outdoors in front of a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032907.jpg', 'caption': 'A toilet sitting in the middle of the road beside a home. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032907.jpg', 'caption': 'A toilet on the pavement in front of a house, the tank lid lying discarded.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032907.jpg', 'caption': 'An old looking toilet sitting out on the side walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032907.jpg', 'caption': 'A toilet sitting in front of someones house. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251252.jpg', 'caption': 'The shiny motorcycle is being shown on a display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251252.jpg', 'caption': 'A motor bike parked inside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251252.jpg', 'caption': 'A parked motorcycle sitting next to a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251252.jpg', 'caption': 'White motorcycle on display inside a building with people looking on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251252.jpg', 'caption': 'A motorcycle sits displayed in a large shopping area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037675.jpg', 'caption': 'Horses graze in front of a large building amid snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037675.jpg', 'caption': 'Several horses eating grass around melting a snow spot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037675.jpg', 'caption': 'some horses eating grass by a big house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037675.jpg', 'caption': 'Horses grazing in a field by a large home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037675.jpg', 'caption': 'A couple of horses grazing in front of an estate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159537.jpg', 'caption': 'A large clock tower with a wind indicator on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159537.jpg', 'caption': 'A very tall clock tower towering over a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159537.jpg', 'caption': 'A clock tower has a weather vane on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159537.jpg', 'caption': 'Blue and orange stone clock tower with a small clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159537.jpg', 'caption': 'A large clock tower in front of a clear sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268556.jpg', 'caption': 'A woman is riding a motorcycle down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268556.jpg', 'caption': 'A woman on a motorcycle wearing a bag and passing a car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268556.jpg', 'caption': 'A woman on a motor cycle on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268556.jpg', 'caption': 'A woman on a motorcycle in the middle of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268556.jpg', 'caption': 'A woman sits on her motorcycle in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271177.jpg', 'caption': 'A motorcycle sitting on the side of a street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271177.jpg', 'caption': 'Black motorcycle parked on the side of a busy street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271177.jpg', 'caption': 'A motorcycle is sitting outside on the street near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271177.jpg', 'caption': 'a black motorcycle is parked on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271177.jpg', 'caption': 'An unattended motorcycle parked along a curb on roadway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075051.jpg', 'caption': 'A small white toilet sitting next to a metal trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075051.jpg', 'caption': 'A compact toilet and shower of a small bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075051.jpg', 'caption': 'A close up shot of a white toilet and waste bin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075051.jpg', 'caption': 'A small white toilette with the lid closed has a metal trash can on one side and a shower stall on the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075051.jpg', 'caption': 'a toilet bowl and a trash can in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549399.jpg', 'caption': 'A purple motorcycle parked in front of a red brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549399.jpg', 'caption': 'A motorcycle that is parked in front of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549399.jpg', 'caption': 'A sport motorbike parked on a pavement close to a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549399.jpg', 'caption': 'A blur motorcycle against a red brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549399.jpg', 'caption': 'A motor bike parked on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085160.jpg', 'caption': 'A few people working on various computers in an office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085160.jpg', 'caption': 'A man works on a laptop placed on a table in a busy office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085160.jpg', 'caption': 'A man is working on a laptop computer at a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085160.jpg', 'caption': 'A man in blue works on a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085160.jpg', 'caption': 'A man sitting in front of a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559665.jpg', 'caption': 'Black and white photograph of two men on motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559665.jpg', 'caption': 'Two people riding a motorcycle with hats and backpack down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559665.jpg', 'caption': 'Two men are at an intersection on motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559665.jpg', 'caption': 'The man are driving side by side on their motorcycles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559665.jpg', 'caption': 'Two men on motorcycles at a stop light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019358.jpg', 'caption': 'Two blue bowls of food next to a bottle of cinnamon and sugar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019358.jpg', 'caption': 'this is an image of cereal and milk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019358.jpg', 'caption': 'A desert of bananas and cinnamon in two blue bowls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019358.jpg', 'caption': 'A blue bowl holding mashed bananas and oatmeal with a bottle of sugar and cinnamon sitting beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019358.jpg', 'caption': 'A bowl of oatmeal is ready to eat with some cinnamon and sugar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459912.jpg', 'caption': 'Rows of motor bikes and helmets in a city', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000410002.jpg', 'caption': 'Assortment of doughnuts and other snack items on a serving tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410002.jpg', 'caption': 'there are many different sweets and donuts on display', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410002.jpg', 'caption': 'A display case at a bakery with different items. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410002.jpg', 'caption': 'A glass bakery case with pastries and several kinds of doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410002.jpg', 'caption': 'Donuts and pastries sit on trays in a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533750.jpg', 'caption': 'A metal table holding two donuts covered in sprinkles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533750.jpg', 'caption': 'Two donuts are placed together on a napkin. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533750.jpg', 'caption': 'The donuts on the napkins are very colorful. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533750.jpg', 'caption': 'A couple of doughnuts on a napkin on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533750.jpg', 'caption': 'a close up of two sprinkled doughnuts on napkins', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507065.jpg', 'caption': 'A little boy sitting on a wooden bench eating half a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507065.jpg', 'caption': 'a small boy with a green shirt is eating a sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507065.jpg', 'caption': 'A young boy sitting on a bench with a sandwich. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507065.jpg', 'caption': 'A little boy holding half a sandwich in each hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507065.jpg', 'caption': 'A boy is holding a sandwich up to his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540174.jpg', 'caption': 'A baby in a carseat eating a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540174.jpg', 'caption': 'a close up of a child in a car seat with a doughnut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540174.jpg', 'caption': 'an image of a child eating a donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540174.jpg', 'caption': 'a young boy in car seat holding a donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540174.jpg', 'caption': 'The young child is eating a donut in the car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446322.jpg', 'caption': 'A glass display of different varieties of donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446322.jpg', 'caption': 'A bunch of doughnuts that are behind a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446322.jpg', 'caption': 'A variety of donuts in a glass case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446322.jpg', 'caption': 'A display case of donuts and other sweets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446322.jpg', 'caption': 'The display case is filled with donuts with colorful icing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415746.jpg', 'caption': 'Muffins and other pastries on display ground and purchase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415746.jpg', 'caption': 'a bunch of baked goods in a plastic shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415746.jpg', 'caption': 'a bunch of pastries that are in a clear case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415746.jpg', 'caption': 'Various muffins and pastries on trays inside plastic cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415746.jpg', 'caption': 'Various muffins and pastries lined up in plastic cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415746.jpg', 'caption': 'Different types of types of pastries sitting on display together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334686.jpg', 'caption': 'A little girl holding twp donuts in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334686.jpg', 'caption': 'Two kids with donuts and frosting on their fingers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334686.jpg', 'caption': 'A girl holds two donuts as a boy watches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334686.jpg', 'caption': 'A girl eats doughnuts in front of a boy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334686.jpg', 'caption': 'a boy and a girl and the girl is holding two pink donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280819.jpg', 'caption': 'A lady sitting at an enormous dining table with lots of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280819.jpg', 'caption': 'a woman with eye glasses sitting at a table covered with food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280819.jpg', 'caption': 'Several plates of food on a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280819.jpg', 'caption': 'A guest looks over the plates of fruit on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280819.jpg', 'caption': 'A woman standing near a table with plates covered in food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005754.jpg', 'caption': 'A box of donuts of different colors and varieties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005754.jpg', 'caption': 'a close up of a box of doughnuts ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005754.jpg', 'caption': 'A box is full of a variety of different donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005754.jpg', 'caption': 'A box containing ten different kids of doughnuts. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005754.jpg', 'caption': 'A box filled with lots of different flavored donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071171.jpg', 'caption': 'A meal at a restaurant of a salad, a toasted sandwich and a pickle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071171.jpg', 'caption': 'A plate of food containing a sandwich and a salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071171.jpg', 'caption': 'A grilled cheese sandwich with a side of salad and a pickle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071171.jpg', 'caption': 'A plate with a sandwich and a pickle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071171.jpg', 'caption': 'there is a sandwich and lettuce on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556462.jpg', 'caption': 'Panini and fries are are on a lunch platter are served with dressings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556462.jpg', 'caption': 'A sandwich with toothpicks and french fries are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556462.jpg', 'caption': 'A grilled sandwich and french fries on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556462.jpg', 'caption': 'Closeup of a table with a plate of food that includes a sandwich and fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556462.jpg', 'caption': 'This person ordered some sandwich melts with fries on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292301.jpg', 'caption': 'A table with a coffee and a salad on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292301.jpg', 'caption': 'A deli lunch for two on a table with drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292301.jpg', 'caption': 'A sandwich wrapped in a bag, a to-go coffee cup and a drink sits on top of a white table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292301.jpg', 'caption': 'A sandwich and two coffees sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292301.jpg', 'caption': 'In-flight meal of a bagged sandwich and drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550627.jpg', 'caption': 'A bunch of doughnuts with sprinkles on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550627.jpg', 'caption': 'Tray of chocolate donuts with sprinkles in a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550627.jpg', 'caption': 'Donuts on a tray in a display case ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550627.jpg', 'caption': 'A display of yummy looking chocolate covered donuts with sprinkles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550627.jpg', 'caption': 'A tray full of sprinkle covered, chocolate glazed doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266041.jpg', 'caption': 'A man in black jersey holding a basketball above his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266041.jpg', 'caption': 'a person with a tattoo holding a basketball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266041.jpg', 'caption': 'A man in a black shirt with an arm tattoo holding a basketball over his head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266041.jpg', 'caption': 'A man holding a basketball in his hands in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266041.jpg', 'caption': 'Tatooed young man holding a basketball over his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244339.jpg', 'caption': 'A basket ball player is posing in front of a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244339.jpg', 'caption': 'A uniformed boy is holding a basketball with his back to the hoop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244339.jpg', 'caption': 'A young man in a green jersey is holding a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244339.jpg', 'caption': 'A basketball player holds a basketball for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244339.jpg', 'caption': 'A person with a basketball stands in front of a goal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427135.jpg', 'caption': 'A man kicking a soccer ball on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427135.jpg', 'caption': 'A soccer player in the field kicking a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427135.jpg', 'caption': 'A man that is standing in the grass with a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427135.jpg', 'caption': 'a guy in a uniform kicking a soccer ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427135.jpg', 'caption': 'A person kicks a soccer ball on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578210.jpg', 'caption': 'A sheet cake sitting on top of a table with lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578210.jpg', 'caption': 'A birthday cake with candles and a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578210.jpg', 'caption': 'Someone lights the other candles on the cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578210.jpg', 'caption': 'A birthday cake with a cell phone on it is being lit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578210.jpg', 'caption': 'an image of a 2nd year birthday cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201925.jpg', 'caption': 'A cake inside of a pan sitting in an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201925.jpg', 'caption': 'Something delicious and sweet is done baking in the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201925.jpg', 'caption': 'Something baking in a pan in the oven and rising out of the pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201925.jpg', 'caption': 'a close up of a cake being cooked in an oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201925.jpg', 'caption': 'A cake in a pan sitting on the rack of an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072833.jpg', 'caption': 'A person riding a surfboard on a wave in a wet suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072833.jpg', 'caption': 'A male surfer catching a wave wearing a bodysuit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072833.jpg', 'caption': 'The surfer with black and blue outfit rides the wave with his blue and white surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072833.jpg', 'caption': 'Man in a wetsuit on top of a blue and white surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072833.jpg', 'caption': 'A man in a full body wetsuit and water shoes on a surfboard riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269089.jpg', 'caption': 'A sandwich cut in half served with coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269089.jpg', 'caption': 'A tray with two sandwich halves, a salad, a cup of coffee and a fork and spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269089.jpg', 'caption': 'lunch tray with sandwich on a doily, salad, and cup of coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269089.jpg', 'caption': 'a close up of food on a tray with a sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269089.jpg', 'caption': 'A tray topped with a sandwich, coffee and salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045864.jpg', 'caption': '2 teams of young kids playing soccer against each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045864.jpg', 'caption': 'there are many young children playing a soccer game together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045864.jpg', 'caption': 'Many soccer players are competing for control of the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045864.jpg', 'caption': 'A group of kids playing soccer on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045864.jpg', 'caption': 'Some children are playing soccer on a grassy field,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562614.jpg', 'caption': 'A group of children running after a soccer ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562614.jpg', 'caption': 'Four boys are on a grassy area near a white soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562614.jpg', 'caption': 'Three children having fun playing soccer on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562614.jpg', 'caption': 'Children wearing team uniforms, playing soccer in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562614.jpg', 'caption': 'Kids chasing a soccer ball on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541010.jpg', 'caption': 'A soccer team is praying on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541010.jpg', 'caption': 'A bunch of youth soccer players huddling around each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541010.jpg', 'caption': 'Kids are standing together in the grass with a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541010.jpg', 'caption': 'A bunch of kids are getting to ready to play soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541010.jpg', 'caption': 'The team of soccer players are kneeling around the coach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289444.jpg', 'caption': 'A young man and woman playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289444.jpg', 'caption': 'Two children kick a soccer ball back and forth in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289444.jpg', 'caption': 'young children playing soccer in a grassy area with a white soccer ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289444.jpg', 'caption': 'Two boys contending over a soccer ball on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289444.jpg', 'caption': 'A boy and a girl play soccer together on the soccer field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570579.jpg', 'caption': 'A baby boy sits in a high chair next to a green and white cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570579.jpg', 'caption': 'a small boy playing with z toy tractor from a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570579.jpg', 'caption': 'A young child who has a big cake in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570579.jpg', 'caption': 'The boy is playing with a tractor that goes on his cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570579.jpg', 'caption': 'A young boy in a highchair with a large birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094194.jpg', 'caption': 'Two men holding onto a knife about to cut a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094194.jpg', 'caption': 'A man prepares to cut a cake while standing near another man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094194.jpg', 'caption': 'a couple of guys cutting a small cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094194.jpg', 'caption': 'two men in suits cutting a wedding cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094194.jpg', 'caption': 'The two men are cutting a white and blue cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143541.jpg', 'caption': 'A person stands in shallow water at the beach and looks at the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143541.jpg', 'caption': 'a man walking out into the ocean wearing a wetsuit and carrying a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143541.jpg', 'caption': 'A person riding on top of water under a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143541.jpg', 'caption': 'A personr is standing in shallow water holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143541.jpg', 'caption': 'Someone is walking through water holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284350.jpg', 'caption': 'A woman standing in a set suit on a beach holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284350.jpg', 'caption': 'Woman wearing all black holding up a white surfboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284350.jpg', 'caption': 'A female surfboarder dressed in black holding a white surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284350.jpg', 'caption': 'a woman wearing a wet suit is holding a white surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284350.jpg', 'caption': 'Surfer on a black sand beach holding her board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309120.jpg', 'caption': 'A man getting ready to kick a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309120.jpg', 'caption': 'A man that is on a soccer field with a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309120.jpg', 'caption': 'A man carrying a soccer ball down a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309120.jpg', 'caption': 'there is a man running on a field with a soccer ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309120.jpg', 'caption': 'The soccer player is bringing back the ball into play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146193.jpg', 'caption': 'A man walking into the ocean while holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146193.jpg', 'caption': 'A black and white picture of a surfer walking into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146193.jpg', 'caption': 'A boy holds his board while walking into the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146193.jpg', 'caption': 'A guy with bushy hair stands in the ocean holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146193.jpg', 'caption': 'Person walking into the waves while holding a surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467477.jpg', 'caption': 'Young boy riding large breaking wave in open ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467477.jpg', 'caption': 'THIS IS A BLACK AND WHITE PHOTO OF A SURFER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467477.jpg', 'caption': 'The surfer in the black and white photo is on a huge wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467477.jpg', 'caption': 'A child rides a wave on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467477.jpg', 'caption': 'A young child catching a wave while surfing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172327.jpg', 'caption': 'A person swimming in the waves of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172327.jpg', 'caption': 'A person body surfing on a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172327.jpg', 'caption': 'Surfer and black outfit coming down the front of a wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172327.jpg', 'caption': 'A person in a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172327.jpg', 'caption': 'A person riding on a surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153570.jpg', 'caption': 'female surfer riding a large ocean wave on a surfboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153570.jpg', 'caption': 'A girl rides a surfboard on a large wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153570.jpg', 'caption': 'A man riding on top of a surfboard on top of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153570.jpg', 'caption': 'A surfer is riding a wave in a greyscale picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153570.jpg', 'caption': 'A person surfing on a wave that is crashing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550444.jpg', 'caption': 'a group of men playing a game of soccer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550444.jpg', 'caption': 'a group of people that are kicking a soccer ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550444.jpg', 'caption': 'A group of people playing a game of soccer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550444.jpg', 'caption': 'Two football teams with members surrounding ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550444.jpg', 'caption': 'a group of people playing soccer on a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154971.jpg', 'caption': 'A man kicking a soccer ball whle standing on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154971.jpg', 'caption': 'A man kicking a soccerball at a group of people on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154971.jpg', 'caption': 'A group of men are playing soccer on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154971.jpg', 'caption': 'There are two soccer teams playing a game on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154971.jpg', 'caption': 'four soccer players in white uniforms one in orange', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282225.jpg', 'caption': 'A young man kicking a soccer ball around a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282225.jpg', 'caption': 'A soccer player gets ready to kick the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282225.jpg', 'caption': 'A goalkeeper goes towards the ball, deciding where to kick it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282225.jpg', 'caption': 'A man about to kick a soccer ball on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282225.jpg', 'caption': 'an image of a man that is playing soccer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146723.jpg', 'caption': 'Soccer player returns the ball from the goal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146723.jpg', 'caption': 'A soccer goalie by the net and holding the soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146723.jpg', 'caption': 'Man on a soccer field running with soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146723.jpg', 'caption': 'A man in yellow jersey holding a soccer ball on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146723.jpg', 'caption': 'A soccer goalie holding a soccer ball with his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489023.jpg', 'caption': 'A soccer player looks up at a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489023.jpg', 'caption': 'some men are playing soccer on a field with a blue ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489023.jpg', 'caption': 'A soccer game is in action as a player prepares to head but the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489023.jpg', 'caption': 'Man in an orange soccer jersey and white shorts looking up at a blue soccer ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489023.jpg', 'caption': 'A soccer player that is playing in a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453757.jpg', 'caption': 'A group of men playing a game of soccer on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453757.jpg', 'caption': 'A man in a blue uniform falls down while kicking a soccer ball as his team mate someone from the opposite team run on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453757.jpg', 'caption': 'Three men are playing soccer one man is on the grown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453757.jpg', 'caption': 'Three men going after a soccer ball on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453757.jpg', 'caption': 'Soccer players are scrambling for the ball with one player down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321674.jpg', 'caption': 'A mom and her baby are laying on the couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321674.jpg', 'caption': 'A woman and young child in a hospital room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321674.jpg', 'caption': 'Two kids on a bed together with a saline drip bag in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321674.jpg', 'caption': 'A girl and a young child on a hospital bed with an IV bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321674.jpg', 'caption': 'A young child in a bed is hooked to an IV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195829.jpg', 'caption': 'A group of young men playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195829.jpg', 'caption': 'a group of men playing soccer on a field in an fenced area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195829.jpg', 'caption': 'There are some men playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195829.jpg', 'caption': 'Two teams are playing soccer on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195829.jpg', 'caption': 'Two teams of men are playing soccer on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398076.jpg', 'caption': 'Here is a woman lying on a bed pointing her finger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398076.jpg', 'caption': 'A woman is pointing at the camera while lying down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398076.jpg', 'caption': 'A person pointing while lying on a bed with a book on his lap', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398076.jpg', 'caption': 'A woman looking at a notebook pointing at the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398076.jpg', 'caption': 'a girl laying down with a book pointing her finger at the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310227.jpg', 'caption': \"Black and white photograph of two bare feet sticking out from the covers of a child's bed\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310227.jpg', 'caption': 'A pair of feet poke out from under a bed sheet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310227.jpg', 'caption': \"Someone's toes that are not covered by a blanket.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310227.jpg', 'caption': 'A person laying in bed underneath a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310227.jpg', 'caption': 'Bare feet sticking out from under the covers of a bed full of stuffed animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453926.jpg', 'caption': 'A plate that has a dessert on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453926.jpg', 'caption': 'A chocolate and fudge dessert on layered pastry is on a red plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453926.jpg', 'caption': 'A stack of pancakes on a plate with creme and chocolate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453926.jpg', 'caption': 'a red plate with some chocolate and whip cream desert', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453926.jpg', 'caption': 'A small cake is covered in frosting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090935.jpg', 'caption': 'A room filled with a metal rack with white pieces of cloth resting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090935.jpg', 'caption': 'A hospital room with a bed and curtains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090935.jpg', 'caption': 'Possible hospital room with cleaning bucket and drying rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090935.jpg', 'caption': 'Latex gloves drying on a standing upright rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090935.jpg', 'caption': 'A room with steel bed frames and plastic mattresses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542959.jpg', 'caption': 'A collage of photos showing a house and some of its rooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542959.jpg', 'caption': 'A collage of different bedroom and house pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542959.jpg', 'caption': 'Little pictures of a home including driveway, fireplace, bedroom, furniture, and pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542959.jpg', 'caption': 'Collage of mostly various interior rooms with one image of a driveway and house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542959.jpg', 'caption': 'many rooms well made with white sheets on bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295837.jpg', 'caption': 'A woman standing over a pan filled with food in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295837.jpg', 'caption': 'A woman smiling while she prepares a plate of food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295837.jpg', 'caption': 'a smiling woman standing next to a plate of food she made ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295837.jpg', 'caption': 'A woman in a bright pink summer shirt smiles and displays a party platter she has made. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295837.jpg', 'caption': 'a person standing in front of a counter top and a tall pile of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279305.jpg', 'caption': 'Give candles light a decorative cake with white frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279305.jpg', 'caption': 'A white cake with black drizzled chocolate and candles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279305.jpg', 'caption': 'a couple of candles are on a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279305.jpg', 'caption': 'A cake that has candles that are lit on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279305.jpg', 'caption': 'A white frosted cake with five lit candles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207826.jpg', 'caption': 'A woman holds up a book as she attempts to read in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207826.jpg', 'caption': 'A person laying down in bed reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207826.jpg', 'caption': 'A teenager is in bed reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207826.jpg', 'caption': 'A person lying down, reading a novel in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207826.jpg', 'caption': 'A person reading a book while lying in a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224757.jpg', 'caption': 'A man instructing a group of kids on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224757.jpg', 'caption': 'A soccer coach is instructing the children on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224757.jpg', 'caption': 'A group of young children standing around a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224757.jpg', 'caption': 'Dad coaches talking to the little soccer team players on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224757.jpg', 'caption': 'Pair of adult males with group of small children with soccer balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385786.jpg', 'caption': 'Two beds with decorative wooden headboard and foot board, one is a double and one is a single', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385786.jpg', 'caption': 'Two differently sized hotel beds in a room with an open curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385786.jpg', 'caption': 'Two beds in a bedroom covered with blankets next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385786.jpg', 'caption': 'A pair of twin beds in a cozy cottage house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385786.jpg', 'caption': 'Two beds in a room with orange walls and lovely curtains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165133.jpg', 'caption': 'A young man poses with a surfboard next to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165133.jpg', 'caption': 'A man holding a black and white surfboard in street clothes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165133.jpg', 'caption': 'a man holding a surfboard next to a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165133.jpg', 'caption': 'a person standing holding a surf board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165133.jpg', 'caption': 'A man poses by the water with his surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336102.jpg', 'caption': 'A mouse head shapped pizza sitting in a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336102.jpg', 'caption': 'A pizza in a box is shaped like Mickey Mouse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336102.jpg', 'caption': 'A large pizza in the shape of cat face with two ears,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336102.jpg', 'caption': 'A pizza made in the shape of Mickey Mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336102.jpg', 'caption': \"A picture of a pizza in the shape of mickey mouse's head.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017707.jpg', 'caption': 'A bed covered in a ten sitting on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017707.jpg', 'caption': 'At the beach resort, there is a privacy bed for rental ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017707.jpg', 'caption': 'A bed under a white canopy on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017707.jpg', 'caption': 'a bed with a canopy on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017707.jpg', 'caption': 'A cabana covered bed on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140743.jpg', 'caption': 'a person smiling eating a piece of pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140743.jpg', 'caption': 'A little girl laughing and eating a piece of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140743.jpg', 'caption': 'A child frowning while eating a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140743.jpg', 'caption': 'A girl grimacing while eating a slice of pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140743.jpg', 'caption': 'A small child frowning while eating a hot slice of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066423.jpg', 'caption': 'Group pf people learning how to surf on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066423.jpg', 'caption': 'A group of surfers practicing on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066423.jpg', 'caption': 'Five guys practicing surfboarding on the sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066423.jpg', 'caption': 'A group of people standing on top of surfboards next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066423.jpg', 'caption': 'Five people standing on a beach next to a volley ball net.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476280.jpg', 'caption': 'A man holds a surf board and walks with a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476280.jpg', 'caption': 'Two people, one of whom is a surfer, walk side-by-side on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476280.jpg', 'caption': 'A man and woman are walking up the beach after he has finished surfing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476280.jpg', 'caption': 'A young man with a surfboard walks down the beach with his large breasted female companion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476280.jpg', 'caption': 'A man and woman are on brown sand by the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182245.jpg', 'caption': 'Man sitting at a small table behind a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182245.jpg', 'caption': 'A man sitting at a table with lots of food in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182245.jpg', 'caption': 'Friends about to enjoy fresh pizza and coffee at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182245.jpg', 'caption': 'The Asian man is deciding what to eat on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182245.jpg', 'caption': 'A man sits at the table with a large pizza on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001369.jpg', 'caption': 'A man in a wetsuit with a surfboard standing on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001369.jpg', 'caption': 'This is an image of a man with a surfboard looking at the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001369.jpg', 'caption': 'Rear view of surfboard holding man standing on beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001369.jpg', 'caption': 'A person with a surfboard stands at the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001369.jpg', 'caption': 'A man is holding a surfboard and staring out into the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430125.jpg', 'caption': 'A man eating a slice of pizza next to food stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430125.jpg', 'caption': 'A man eating a piece of pizza at a fair, during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430125.jpg', 'caption': 'A man eats some pizza in a town fair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430125.jpg', 'caption': 'A man eats a slice of pizza at the carnival.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430125.jpg', 'caption': 'A man eating some food near some shops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546702.jpg', 'caption': 'A fat gray tiger cat laying on top of bed up against a pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546702.jpg', 'caption': 'A cat sits on a white bed with sheets and pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546702.jpg', 'caption': \"A cat spreads it's legs in the middle of a bed.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546702.jpg', 'caption': 'A cat sitting on a bed cleaning itself', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546702.jpg', 'caption': 'A cat propped up with pillows sitting on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177941.jpg', 'caption': 'two pizzas on plates on a dining table with a pink design table cloth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177941.jpg', 'caption': 'There were two pizzas on the table ready to eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177941.jpg', 'caption': 'Picture of two pizza pies on a date', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177941.jpg', 'caption': 'Two pizzas are on a table and a person is on the other side of the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177941.jpg', 'caption': 'two white plates with pizza a pitcher of wine some glasses and silverware', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053015.jpg', 'caption': 'A baby grabs for a bite of pizza that a man is eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053015.jpg', 'caption': 'A man holding a baby sits eating at a table of pizzas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053015.jpg', 'caption': 'A man eating some pizza while holding a young child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053015.jpg', 'caption': 'A man holding a baby, eating and sitting at a table with two pizza atop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053015.jpg', 'caption': 'The man and the baby are sitting together ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504304.jpg', 'caption': 'Two people, one being a young girl, are playing tennis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504304.jpg', 'caption': 'A young girl swinging a tennis racket during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504304.jpg', 'caption': 'a small girl in a blue shirt is playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504304.jpg', 'caption': 'A little girl holding a tennis racquet next to another woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504304.jpg', 'caption': 'a young girl plays tennis with a woman on an asphalt court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054796.jpg', 'caption': 'there is a young girl running and playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054796.jpg', 'caption': 'A young girl holding a tennis racquet in her right hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054796.jpg', 'caption': 'A little girl leans to the side holding a tennis racket and a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054796.jpg', 'caption': 'this child is in a playground holding a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054796.jpg', 'caption': 'A little girl playing with a tennis ball and raquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124629.jpg', 'caption': 'An older woman standing next to two children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124629.jpg', 'caption': 'Kids and an old woman playing in the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124629.jpg', 'caption': 'A lady and two children in the street playing with a tennis raquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124629.jpg', 'caption': 'two young girls playing together tennis together outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124629.jpg', 'caption': 'Children are playing with an old woman in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310302.jpg', 'caption': 'A plate with sliced pizza and a bottle of beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310302.jpg', 'caption': 'A personal pizza and beer on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310302.jpg', 'caption': 'Pizza toppings are situated fashionably alongside a beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310302.jpg', 'caption': 'Delicious looking pizza on table with some beer poured in a glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310302.jpg', 'caption': 'A vegetable pizza is cut and ready to eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353830.jpg', 'caption': 'An Italian dish is presented on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353830.jpg', 'caption': 'Baked pizza with red tomatoes and green olives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353830.jpg', 'caption': 'A plate of food cut into slices has onions and olives on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353830.jpg', 'caption': 'a pizza sliced in four slices on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353830.jpg', 'caption': 'ONIONS, TOMATOES AND OLIVES ATOP A PLATE ON A TABLE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493652.jpg', 'caption': 'Living room decorated for Christmas with gifts galore', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493652.jpg', 'caption': 'a living room with many decorations hanging ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493652.jpg', 'caption': 'A living room with a red carpet and a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493652.jpg', 'caption': 'A living room with decorations set up for Christmas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493652.jpg', 'caption': 'Holiday decorations are hanging from the ceiling of a cluttered living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226278.jpg', 'caption': 'A man on a tennis court at night time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226278.jpg', 'caption': 'A man playing tennis outside on a tennis court at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226278.jpg', 'caption': 'A man playing a game of tennis at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226278.jpg', 'caption': 'A tennis player on a tennis court at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226278.jpg', 'caption': 'A tennis player on the court at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399839.jpg', 'caption': 'A young girl eating a very tasty looking slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399839.jpg', 'caption': 'Young girl sitting and eating a piece of cheese pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399839.jpg', 'caption': 'A young girl is eating a large slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399839.jpg', 'caption': 'A young girl is staring at a piece of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399839.jpg', 'caption': 'A little girl eating a slice of pizza on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039540.jpg', 'caption': 'A full veggie pizza near a couple of plate of fries, are all ready to be eaten. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039540.jpg', 'caption': 'A pizza with multiple toppings including an egg. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039540.jpg', 'caption': 'Closeup of a white plate holding a pizza next to plate of fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039540.jpg', 'caption': 'A pizza sitting on top of a pan covered in cheese and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039540.jpg', 'caption': 'A pizza pie with vegetables of some sort on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301102.jpg', 'caption': 'the two racquets are close to being identical.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301102.jpg', 'caption': 'a bunch of tennis rackets are tangles together ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301102.jpg', 'caption': 'a couple of tennis rackets are laying together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301102.jpg', 'caption': 'Two tennis rackets next to each other on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301102.jpg', 'caption': 'One tennis racket is place on top of the other one.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317595.jpg', 'caption': 'three guys sitting down eating sandwiches and smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317595.jpg', 'caption': 'Three men eating sandwiches at a corner table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317595.jpg', 'caption': 'Two young men one old enjoying a meal at a restaurant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317595.jpg', 'caption': 'Three men all eating sub sandwiches at a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317595.jpg', 'caption': 'Three men are sitting in a restaurant eating sandwiches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053990.jpg', 'caption': 'A child eating a piece of cheese pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053990.jpg', 'caption': 'An African American girl eating a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053990.jpg', 'caption': 'A young girl eating a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053990.jpg', 'caption': 'A little girl eating a large piece of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053990.jpg', 'caption': 'a little girl eating a slice of pizza in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190081.jpg', 'caption': 'A young woman holding a giant tennis racquet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190081.jpg', 'caption': 'A pretty young woman holding a giant tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190081.jpg', 'caption': 'The girl is smiling, holding a gigantic tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190081.jpg', 'caption': 'an image of female tennis player holding a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190081.jpg', 'caption': 'A girl is holding a novelty tennis racket in a very large size.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521400.jpg', 'caption': 'A female tennis player stands close to the net holding a racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521400.jpg', 'caption': 'A woman with a racket stands at a net.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521400.jpg', 'caption': 'a lady tennis player standing close to the net', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521400.jpg', 'caption': 'A women is standing holding her tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521400.jpg', 'caption': 'Two females playing tennis on tennis court with fencing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193565.jpg', 'caption': 'A man sitting at a table with a pizza on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193565.jpg', 'caption': 'There is a man eating a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193565.jpg', 'caption': 'a man sitting at a table in front of a pizza holding one slice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193565.jpg', 'caption': 'adult male eating meal at indoor restaurant seating area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193565.jpg', 'caption': 'A man eating pizza is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207151.jpg', 'caption': 'A vegetarian pizza is half eaten on a pizza holder. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207151.jpg', 'caption': 'A couple of pieces of pizza with vegetable slices on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207151.jpg', 'caption': 'A wooden pan serving tray with a pizza on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207151.jpg', 'caption': 'A pizza on a cutting board is half gone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207151.jpg', 'caption': 'A Pizza is nearly finished with only three pieces left. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057387.jpg', 'caption': 'a crowd watching a girl ready to hit the tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057387.jpg', 'caption': 'A woman standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057387.jpg', 'caption': 'A tennis player prepares to hit a ball during a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057387.jpg', 'caption': 'a woman looking up for a tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057387.jpg', 'caption': 'A female tennis player waiting for the ball to come down for the serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577858.jpg', 'caption': 'Children making their own personal pizzas with different toppings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577858.jpg', 'caption': 'A boy and a girl making their own pizzas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577858.jpg', 'caption': 'A young girl eating food from a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577858.jpg', 'caption': 'a couple of little girls that are making some food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577858.jpg', 'caption': 'A little girl is preparing food at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409944.jpg', 'caption': 'A picture of a tennis player yelling passionately.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409944.jpg', 'caption': 'Street poster of a man holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409944.jpg', 'caption': 'An urban ad featuring tennis player Roger Federer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409944.jpg', 'caption': 'An advertisement with a male tennis player in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409944.jpg', 'caption': 'A poster of an angry tennis player adorns a graffiti-ridden wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481635.jpg', 'caption': 'A smiling woman waves at the camera as she sits at a restaurant table in front of a piece of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481635.jpg', 'caption': 'A woman at a restaurant eating a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481635.jpg', 'caption': 'Lady sitting at a table with pizza waving at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481635.jpg', 'caption': 'A photo of a woman sitting at a table with a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481635.jpg', 'caption': 'A woman is sitting next to a table with a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261757.jpg', 'caption': 'a pizza on a wooden table ready to be cooked', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261757.jpg', 'caption': 'A pie sitting on top of a wooden board near stack of plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261757.jpg', 'caption': 'An oven fired traditional pizza sits on a board in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261757.jpg', 'caption': 'A pizza is sitting on a pizza stone fully cooked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261757.jpg', 'caption': 'A whole uncut pizza on a pizza paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538859.jpg', 'caption': 'The chef is standing by a giant pan of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538859.jpg', 'caption': 'A cook preparing food in a kitchen at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538859.jpg', 'caption': 'A man is serving pizza at a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538859.jpg', 'caption': 'A chef slicing pizza to serve at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538859.jpg', 'caption': 'Fresh baked pizza being served at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183803.jpg', 'caption': 'Living room with coffee table and a brown couch and chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183803.jpg', 'caption': 'A living room with a couch and coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183803.jpg', 'caption': 'A waiting room with a sofe, easy chair and reading material.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183803.jpg', 'caption': 'A living room with a brown sofa, chair and coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183803.jpg', 'caption': 'A living room has a couch, chair, and coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143975.jpg', 'caption': 'The living room wall has many framed pictures above the sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143975.jpg', 'caption': 'A living room is shown with tables and seating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143975.jpg', 'caption': 'A image taken from outside of a room with a leather chair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143975.jpg', 'caption': \"A comfy and cozy looking bachelor's living room with a lot of pictures. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143975.jpg', 'caption': 'A couch and a table in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490923.jpg', 'caption': 'A young girl brushing her teeth with a tooth brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490923.jpg', 'caption': 'A young child smiles while brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490923.jpg', 'caption': 'a little girl brushing her teeth with a blue toothbrush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490923.jpg', 'caption': 'a young girl is using a blue toothbrush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490923.jpg', 'caption': 'A girl with a toothbrush and toothpaste in her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336182.jpg', 'caption': 'A woman sitting on a bed brushing her teeth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336182.jpg', 'caption': 'a lady looking bored while brushing her teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336182.jpg', 'caption': 'A woman in a blue top is sitting on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336182.jpg', 'caption': 'a women sitting on her bed brushing her teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336182.jpg', 'caption': 'A woman sitting on a bed brushing her teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371250.jpg', 'caption': 'A brown sofa and ottoman with pillows and remotes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371250.jpg', 'caption': 'A small oval orange couch and ottoman with pineapple pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371250.jpg', 'caption': 'A couch and ottoman are shown with remotes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371250.jpg', 'caption': 'a small couch overed with blankes and pinapple designed pillows\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371250.jpg', 'caption': 'a brown sofa with pineapple pillows and and ottoman with two remotes on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391735.jpg', 'caption': 'A man kneeling down beside the street and a yellow building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391735.jpg', 'caption': 'A man is squatting in on a sidewalk in front of a yellow compartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391735.jpg', 'caption': 'The man kneeling on the sidewalk is near a yellow structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391735.jpg', 'caption': 'A man in blue shirt sitting outside of a yellow hut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391735.jpg', 'caption': 'A man is squatting down on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008418.jpg', 'caption': 'A table topped with personal care items and tooth paste.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008418.jpg', 'caption': 'A toothbrush, cleaning utensil, floss, mouth rinse and toothpaste.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008418.jpg', 'caption': 'Toothpaste,toothbrush,mouth rinse,tongue cleaner and other mouth cleaning things are kept.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008418.jpg', 'caption': 'A toothbrush, toothpaste and mouth rinse and floss.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008418.jpg', 'caption': 'Various items that include mouthwash, toothpaste and a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071466.jpg', 'caption': 'a chair with a pillow a mirror on the wall and a set of curtains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071466.jpg', 'caption': 'View of a wall with a mirror and curtains in a rather plain looking room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071466.jpg', 'caption': 'A mirror is on the wall in a bedroom setting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071466.jpg', 'caption': 'A mirror hangs on the wall above a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071466.jpg', 'caption': 'a close up of a pillow leaning against a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065244.jpg', 'caption': 'a little kid is brushing his teeth and smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065244.jpg', 'caption': 'A young boy is smiling and brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065244.jpg', 'caption': 'A toddler brushing with a green electric toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065244.jpg', 'caption': 'A young boy brushes his teeth with a green toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065244.jpg', 'caption': 'A toddler boy smiles while he brushes his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080172.jpg', 'caption': 'A little boy that is sitting on a toilet using a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080172.jpg', 'caption': 'a small child has a brush in his mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080172.jpg', 'caption': 'A little boy in the bathroom brushing his teeth with a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080172.jpg', 'caption': 'A baby boy brushing his teeth with a green tooth brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080172.jpg', 'caption': 'a kid with a brush in his mouth brushing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209868.jpg', 'caption': 'A child leans into the camera brushing their teeth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209868.jpg', 'caption': 'A young girl is lathered up with toothpaste.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209868.jpg', 'caption': 'Young person brushing their teeth with lots of toothpaste', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209868.jpg', 'caption': 'A young girl brushing her teeth with a toothbrush and tooth paste.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209868.jpg', 'caption': 'The girl is brushing her teeth and toothpaste and it is foaming up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201723.jpg', 'caption': 'A wall that is filled with some cool items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201723.jpg', 'caption': 'a wall full of many different colored toothbrushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201723.jpg', 'caption': 'Display of assorted numbered toothbrushes affixed to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201723.jpg', 'caption': 'Many different types of toothbrushes are displayed on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201723.jpg', 'caption': 'An art installation of many toothbrushes against a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187743.jpg', 'caption': 'A small girl with long hair brushing her teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187743.jpg', 'caption': 'A little girl brushing her teeth with an electric toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187743.jpg', 'caption': 'a close up of a small child brushing her teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187743.jpg', 'caption': 'A girl in pajamas brushing her teeth with an crayon toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187743.jpg', 'caption': 'A little girl brushing her teeth with a tooth brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150675.jpg', 'caption': 'a room with a clock on the wall and a small table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150675.jpg', 'caption': 'A lamp shines on the nightstand beside the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150675.jpg', 'caption': 'a large white clock mounted to a wall above a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150675.jpg', 'caption': 'A white chair in the corner of a room below a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150675.jpg', 'caption': 'A large clock and a lamp in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362373.jpg', 'caption': 'a living room with a wooden floor and chairs inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362373.jpg', 'caption': 'A room with book cases, chairs, a lot of books and a rug in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362373.jpg', 'caption': 'A room in a house that has two bookshelves extending from the floor to the ceiling on each side of a doorway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362373.jpg', 'caption': 'A living room that has a large collection of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362373.jpg', 'caption': 'Living area of residence with chairs and bookshelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506552.jpg', 'caption': 'Group of folks playing bowling on Wii sports', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506552.jpg', 'caption': 'Several people are playing a wii game in front of a TV mounted on a wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506552.jpg', 'caption': 'Several people stand in preparation to play an interactive video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506552.jpg', 'caption': 'A group of adults are watching television standing up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506552.jpg', 'caption': 'Five people standing around the television watching it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129576.jpg', 'caption': 'A sofa, television and a bike are sitting in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129576.jpg', 'caption': 'A living room with a long sectional sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129576.jpg', 'caption': 'A living area has a blue sectional couch, brown ottoman, bicycles, TV and stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129576.jpg', 'caption': 'A couch, bicycle and television sitting next to a window in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129576.jpg', 'caption': 'A room with a hardwood floor containing a sectional couch, ottoman, table, tv and bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461898.jpg', 'caption': 'a lady wearing glasses playing a video game', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000037038.jpg', 'caption': 'a surfer riding small waves in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037038.jpg', 'caption': 'a man water skiing at in the water at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511117.jpg', 'caption': 'A couple of kids standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511117.jpg', 'caption': 'A little boy wearing a baseball uniform stands by a little girl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511117.jpg', 'caption': 'A young boy in a baseball uniform and a young girl are standing in front of a chain link fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511117.jpg', 'caption': 'A little boy and girl standing on a baseball field. The boy has a uniform on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511117.jpg', 'caption': 'A young baseball player is standing next to a young girl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246199.jpg', 'caption': 'A table topped with baskets filled with ripe bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246199.jpg', 'caption': 'A variety of fruit, bunches of bananas, tangerines, etc. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246199.jpg', 'caption': 'Bunches of bananas and other fruit and vegetables displayed in buckets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246199.jpg', 'caption': 'A huge assortment of fruit with a lot of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246199.jpg', 'caption': 'Closeup of various baskets of food that include bananas and potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095427.jpg', 'caption': 'A pile of oranges with on sliced on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095427.jpg', 'caption': 'a close up of many oranges with one sliced orange', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095427.jpg', 'caption': 'A pile of oranges for sale the the price on a sign on top of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095427.jpg', 'caption': 'A large arrangement of oranges has a sale sign on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095427.jpg', 'caption': 'I large group of oranges in a pile with a sign saying how much they cost.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180800.jpg', 'caption': 'Plastic container filled with oranges sitting on a green shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180800.jpg', 'caption': 'Man baskets of apricots are arranged on a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180800.jpg', 'caption': 'There are many oranges inside of the containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180800.jpg', 'caption': 'a table full of cartons of apricots on display', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180800.jpg', 'caption': 'Small pails of oranges displayed on a shelf in a produce section.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485709.jpg', 'caption': \"Pitcher on a pitcher's mound throwing a baseball.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485709.jpg', 'caption': 'a pitcher for the red sox in motion to through a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485709.jpg', 'caption': 'A man in red jersey throwing a baseball on field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485709.jpg', 'caption': 'A pitcher in a baseball game on the mound in action.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485709.jpg', 'caption': 'A baseball player throwing a pitch onto the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146973.jpg', 'caption': 'Two white plates topped with lots of desserts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146973.jpg', 'caption': 'A white paper plate filled with different types of chocolate desserts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146973.jpg', 'caption': 'A paper plate with chocolate deserts sits on a blue covered table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146973.jpg', 'caption': 'A plate filled with desserts is sitting on a dinner table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146973.jpg', 'caption': 'A close up a plate filled with a variety of chocolate desserts ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098590.jpg', 'caption': 'A couple of people in the snow on some skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098590.jpg', 'caption': 'Children stand in front of a stop sign with their skis on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098590.jpg', 'caption': 'A woman and a child standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098590.jpg', 'caption': \"A boy and a girl on there ski's .\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098590.jpg', 'caption': 'Two kids wearing skis standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557360.jpg', 'caption': 'Some bunches of red bananas on a stalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557360.jpg', 'caption': 'A tree with a bunch of red bananas next to lots of leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557360.jpg', 'caption': 'Platanos growing on tree with much green behind', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557360.jpg', 'caption': 'Branch of tree with something growing on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557360.jpg', 'caption': 'A small red plant similar to a banana plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114549.jpg', 'caption': 'Set of bananas hanging off of a banana tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114549.jpg', 'caption': 'Two bunches of green bananas on banana trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114549.jpg', 'caption': 'Bunches of green bananas hanging down from trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114549.jpg', 'caption': 'Banana trees with large hanging bunches of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114549.jpg', 'caption': 'There are some green bananas hanging in bunches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376549.jpg', 'caption': 'A man in his skiing gear is posing for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376549.jpg', 'caption': 'A man on skis at the peak of a slope looking back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376549.jpg', 'caption': 'A man in black jacket on skis standing next to a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376549.jpg', 'caption': 'A person on skis stands on the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376549.jpg', 'caption': 'A man standing in the snow on top of the mounting about to go skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536831.jpg', 'caption': 'A man is on the ski slope on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536831.jpg', 'caption': 'a man skiing on the side of a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536831.jpg', 'caption': 'A single skier stands still on the slopes and casts a shadow in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536831.jpg', 'caption': 'Man skiing down snow covered mountain side in the ice weather.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536831.jpg', 'caption': 'A person who is all bundled up standing in the snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034180.jpg', 'caption': 'A person wearing a banana headdress and necklace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034180.jpg', 'caption': 'A lady dressed in a blue and purple outfit wearing a hat made of fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034180.jpg', 'caption': 'A person wearing a hat made out of yellow bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034180.jpg', 'caption': 'Person with bananas on head and banana necklace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034180.jpg', 'caption': 'A woman wears a hat that is made of bananas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169802.jpg', 'caption': 'A man in hat made of bananas standing in room by men.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169802.jpg', 'caption': 'A man wearing a colorful outfit and a hat made of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169802.jpg', 'caption': 'A man that has bananas on his head and shoulders.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169802.jpg', 'caption': 'a man wearing a plastic banana hat and necklace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169802.jpg', 'caption': 'A smiling guy with a very funny looking hat of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317560.jpg', 'caption': 'A man wearing a hat and necklace made of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317560.jpg', 'caption': 'A man wearing a necklace and hat made of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317560.jpg', 'caption': 'A person with a bananas in a costume laughing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317560.jpg', 'caption': 'A person dressed in costume, wearing a banana hat and a banana necklace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317560.jpg', 'caption': 'A performer poses joyously in a banana costume.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144200.jpg', 'caption': 'broccoli being sauteed in a pan with a wooden spoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144200.jpg', 'caption': 'A pot of vegetables cooking on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144200.jpg', 'caption': 'Broccoli stir fry in a frying pan on the stove ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144200.jpg', 'caption': 'A wooden spoon accompanied by a cooking pan filled with stir-fried broccoli and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144200.jpg', 'caption': 'A wooden spoon stirs vegetables cooking in a pan. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138975.jpg', 'caption': 'Two men in skis are standing on a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138975.jpg', 'caption': 'Two skiers stand on top of a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138975.jpg', 'caption': 'a couple of people on skis pose in the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138975.jpg', 'caption': 'Two men are snow boarding in the mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138975.jpg', 'caption': 'two men standing by each other on a snowy hill ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570465.jpg', 'caption': 'Several slices of bread with side salads on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570465.jpg', 'caption': 'A table with a plate of cut pizza, two plates of salad, and a can of soda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570465.jpg', 'caption': 'Three plates of food consisting of pizza, salads, rice and a can of cola', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570465.jpg', 'caption': 'Several plates of food including fried dough and salads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570465.jpg', 'caption': 'A meal containing soda, salad pizza and rice on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094590.jpg', 'caption': 'A bunch of doughnuts that are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094590.jpg', 'caption': 'There is a variety of donuts on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094590.jpg', 'caption': 'A plate of several kinds of donuts on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094590.jpg', 'caption': 'a plate with a bunch of doughnuts on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094590.jpg', 'caption': 'A plate that has various types of donuts on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162827.jpg', 'caption': 'A white plate topped with four donuts covered in frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162827.jpg', 'caption': 'Four different kinds of donuts on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162827.jpg', 'caption': 'A plate of four different donuts on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162827.jpg', 'caption': 'a bunch of donuts with different frosting and designs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162827.jpg', 'caption': 'A plate of bagels with various toppings on a white plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208663.jpg', 'caption': 'A meal of vegetables and seafood mixed together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208663.jpg', 'caption': 'Cooked shrimp sits among broccoli and other vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208663.jpg', 'caption': 'A variety of vegetable that include carrots, and carrots. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208663.jpg', 'caption': 'A bunch of different vegetables are mixed together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208663.jpg', 'caption': 'A plate of broccoli, carrots, onions along with shrimp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410632.jpg', 'caption': 'A group of three men standing on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410632.jpg', 'caption': 'Three men are standing on a baseball field with a crowd watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410632.jpg', 'caption': 'Back view of three men on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410632.jpg', 'caption': 'Three players standing on the field during a break during a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410632.jpg', 'caption': 'Three people walk across an empty baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248242.jpg', 'caption': 'A young child holding on to a rope and wearing a pair of skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248242.jpg', 'caption': 'Small child on skis holding a rope in snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248242.jpg', 'caption': 'A skiing child is holding onto a rope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248242.jpg', 'caption': 'a small child sitting on some skis in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248242.jpg', 'caption': 'a kid with very warm clothes pulling a rope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010442.jpg', 'caption': 'there are many baseball players greeting each other on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010442.jpg', 'caption': 'Baseball players high-fiving each other on a baseball field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010442.jpg', 'caption': 'Baseball players are celebrating with each other after a win. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010442.jpg', 'caption': 'a number of baseball players on a field with each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010442.jpg', 'caption': 'A group of men on a baseball field giving each other high fives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356708.jpg', 'caption': 'A man riding skis on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356708.jpg', 'caption': 'An adult and child standing in the snow wearing jackets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356708.jpg', 'caption': 'A man and little girl are on skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356708.jpg', 'caption': 'A man and a child skiing on a snowy plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356708.jpg', 'caption': 'a person riding skis on a snowy surface ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419856.jpg', 'caption': 'a black bicycle parked near a large branch carrying bananas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419856.jpg', 'caption': 'A bicycle parked in the sand has a large tray on the back with mangoes and bananas on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419856.jpg', 'caption': 'a bicycle with a basket filled with bananas and other fruit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419856.jpg', 'caption': 'A bike with a basket full of mangoes and bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419856.jpg', 'caption': 'A rusty bicycle filled with mangoes and bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397773.jpg', 'caption': 'A close up of a plate of pasta containing broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397773.jpg', 'caption': 'A dish of pasta and broccoli is covered by finely shredded cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397773.jpg', 'caption': 'Pasta dish with cheese and vegetables served on plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397773.jpg', 'caption': 'A plate of sime sort of pasta with meat and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397773.jpg', 'caption': 'A plate of pasta with broccoli, beef, and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400139.jpg', 'caption': 'A white paint holding food that includes broccoli and meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400139.jpg', 'caption': 'A main entree with vegetables on a decorative plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400139.jpg', 'caption': 'A plate of steak, corn and steamed broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400139.jpg', 'caption': 'Red and white plate full of meat and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400139.jpg', 'caption': 'A bunch of food is loaded onto a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027353.jpg', 'caption': 'Closeup of a white plate with a maggot in a piece of broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027353.jpg', 'caption': 'A couple of pieces of broccoli with a caterpillar emerging from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027353.jpg', 'caption': 'A white plate topped with a piece of broccoli and a bug laying in sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027353.jpg', 'caption': 'A piece of broccoli with a fork and twig.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027353.jpg', 'caption': 'A piece of broccoli with a plate and a large worm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210103.jpg', 'caption': 'A bowl of various candies mixed in a red bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210103.jpg', 'caption': 'A person holding a red bowl filled with cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210103.jpg', 'caption': 'SOMEONE IS HOLDING A RED PLASTIC BOWL OF JUNK FOOD', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210103.jpg', 'caption': 'A person that is holding a bowl with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210103.jpg', 'caption': 'A bowl filled with ice cream, sprinkles, cherries and other toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362368.jpg', 'caption': 'A small boy holding a plate of tasty looking food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362368.jpg', 'caption': 'Boy holding bowl of ice cream sundae up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362368.jpg', 'caption': 'A child holding up a red plate full of foo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362368.jpg', 'caption': 'A young man holding a pale of sweet treats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362368.jpg', 'caption': 'A boy showing off a bowl with an ice cream sundae.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519706.jpg', 'caption': 'An old woman in a flowered dress is holding a plate of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519706.jpg', 'caption': 'an older person with a bowl of bananas standing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519706.jpg', 'caption': 'An older woman in a colorful skirt is holding a plate of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519706.jpg', 'caption': 'A black woman wearing a dress holding a plate in her hand with bananas on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519706.jpg', 'caption': 'A little old lady holding a bowl of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040881.jpg', 'caption': 'A bowl of chicken and vegetables is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040881.jpg', 'caption': 'a bowl of soup with vegetables and other foods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040881.jpg', 'caption': 'A bowl of soup with onions, broccoli and chicken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040881.jpg', 'caption': 'A bowl containing soup made up of broccoli, red onions, cauliflower and scallions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040881.jpg', 'caption': 'A bowl is filled with meat and different types of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472246.jpg', 'caption': 'A fork next to an apple, orange and onion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472246.jpg', 'caption': 'a close up of a fork an orange an apple and an onion', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472246.jpg', 'caption': 'A fork, apple, orange and onion lined up in a row.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472246.jpg', 'caption': 'A fork, apple, orange and onion sitting on a surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472246.jpg', 'caption': 'A fork, an apple, and orange and an onion sitting in a row.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420229.jpg', 'caption': 'A person getting ready to use an apple slicer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420229.jpg', 'caption': 'Someone holding an apple slicer over an apple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420229.jpg', 'caption': 'A hand holding a fruit slicer above an apple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420229.jpg', 'caption': 'a person putting an apple slicer over an apple', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420229.jpg', 'caption': 'An apple slicer is over a green apple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564659.jpg', 'caption': 'Three pieces of broccoli on and around a small chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564659.jpg', 'caption': 'A tiny chair and pieces of broccoli on a white surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564659.jpg', 'caption': 'A group of celery are posed with a mini chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564659.jpg', 'caption': 'three stalks of broccoli one sitting on a chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564659.jpg', 'caption': 'Three pieces of broccoli arranged standing up with one piece on a miniature chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308026.jpg', 'caption': 'A skateboarder doing a trick with skyscrapers in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308026.jpg', 'caption': 'A skateboarder doing a trick on the side of concrete steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308026.jpg', 'caption': 'A person riding his skateboard on cement steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308026.jpg', 'caption': 'A skateboarder grinding a curb next to a stairway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308026.jpg', 'caption': 'three buildings in the background and a skateboarder doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010142.jpg', 'caption': 'A man on skis posing for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010142.jpg', 'caption': \"A man that is on ski's standing in the snow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010142.jpg', 'caption': 'The cross country skier stops to wait for his friends.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010142.jpg', 'caption': 'A man smiles as he turns to look behind him while skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010142.jpg', 'caption': 'A man in his ski gear is out in the snow, posing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311553.jpg', 'caption': 'a plate of vegetables amongst bowls of rice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311553.jpg', 'caption': 'A yellow plate topped with Chinese food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311553.jpg', 'caption': 'A plate of chicken and broccoli next to bowls of rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311553.jpg', 'caption': 'A plate full of food that includes rice, chicken and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311553.jpg', 'caption': 'A plate of food that has some meat and broccoli on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016497.jpg', 'caption': 'A man posing for a picture while holding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016497.jpg', 'caption': 'A young man holding a skateboard in front of a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016497.jpg', 'caption': 'a person holding a skate board at a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016497.jpg', 'caption': 'A man holding a skateboard at a skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016497.jpg', 'caption': 'A teenager standing on a ramp while holding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572051.jpg', 'caption': 'A plate of pasta shells, broccoli and legumes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572051.jpg', 'caption': 'A plate of vegetables and pasta are ready to be eaten. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572051.jpg', 'caption': 'A mixture of food all on a plate .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572051.jpg', 'caption': 'Pasta with broccoli, garbanzo beans, and corn on plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572051.jpg', 'caption': 'A pasta and broccoli salad is shown with garbanzo beans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185036.jpg', 'caption': 'A group of people riding skis across snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185036.jpg', 'caption': 'Three people smile as they each hold ski poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185036.jpg', 'caption': 'Three people standing holding ski poles in snow, of which, a man and a woman are smiling into the camera, beside another woman looking away, with evergreens, and two people in distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185036.jpg', 'caption': 'some people standing in the snow while holding some ski poles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185036.jpg', 'caption': 'these three people are standing on skis in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273045.jpg', 'caption': 'This is a large fish that is in an aquarium. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273045.jpg', 'caption': 'A number of fish inside an aquarium near a tape measure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273045.jpg', 'caption': 'Fish in an aquarium tank with a tape measure stretched at bottom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273045.jpg', 'caption': 'a a bunch of orange fish are in a tank', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273045.jpg', 'caption': 'A fish and some broccoli in a glass tank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287570.jpg', 'caption': 'A young girl is skiing as others are far down the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287570.jpg', 'caption': 'A person with some skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287570.jpg', 'caption': 'Skiers skiing in the snow with their skis on the ski slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287570.jpg', 'caption': 'A young girl riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287570.jpg', 'caption': 'A woman wearing a red jack and black pants skiing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140007.jpg', 'caption': 'A girl in the snow wearing vintage ski equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140007.jpg', 'caption': 'Black and white photograph of a woman on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140007.jpg', 'caption': 'A thick woman riding skis on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140007.jpg', 'caption': 'A large woman in a skirt has fun skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140007.jpg', 'caption': 'A woman on skis holding one hand up with a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041687.jpg', 'caption': 'a skier and a snowboarder in front of a large house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041687.jpg', 'caption': 'A person skiing and a person snowboarding on slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041687.jpg', 'caption': 'A person on skis a d one one a snowboard, facing the opposite way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041687.jpg', 'caption': 'A man and a woman on skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041687.jpg', 'caption': 'Two skiers are on their skis on the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493868.jpg', 'caption': 'A plate with broccoli down the sides and some white, rolled up things in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493868.jpg', 'caption': 'a close up of a plate of food with broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493868.jpg', 'caption': 'Broccoli and rolled vegetables sit on a square plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493868.jpg', 'caption': 'The plate of food has broccoli on each side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493868.jpg', 'caption': 'A plate of rolled up food and broccoli ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119181.jpg', 'caption': 'Two wine glasses and bread on top of a piece of paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119181.jpg', 'caption': 'Two glasses of red wine with a piece of bread and cheese in between.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119181.jpg', 'caption': 'Two glasses holding red wine sit on a piece of paper on a wooden surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119181.jpg', 'caption': 'Two half-full glasses of wine are sitting on paper with bread and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119181.jpg', 'caption': 'a close up of a sheet of paper with a piece of bread near two glasses of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296303.jpg', 'caption': 'A grasshopper in a cage eating a slice of carrot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296303.jpg', 'caption': 'a close up of a large bug eating something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296303.jpg', 'caption': 'A grasshopper in a cage eating something that is orange colored.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296303.jpg', 'caption': 'A giant cricket in a cage eating an orange slice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296303.jpg', 'caption': 'An insect is chewing some carrot inside a wooden cage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258516.jpg', 'caption': 'A cricket inside of a small cage on a table..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258516.jpg', 'caption': 'There is some sort of insect inside of a cage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258516.jpg', 'caption': 'A large insect inside a white cage, which is on a counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258516.jpg', 'caption': 'A bug in a cage or trap eating something orange.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258516.jpg', 'caption': 'The large bug is trapped inside the cage on the counter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341041.jpg', 'caption': 'A smiling young boy holds a skateboard as young men skateboard in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341041.jpg', 'caption': 'A young child holding a skateboard in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341041.jpg', 'caption': 'A little boy by a skateboard park holding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341041.jpg', 'caption': 'Young boy holding a skateboard at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341041.jpg', 'caption': 'A young child is holding a skate board next to some ramps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406404.jpg', 'caption': 'A black and white photo of a man in the air with his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406404.jpg', 'caption': 'A man practices skate boarding in a skatepark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406404.jpg', 'caption': 'A man that is in the air with a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406404.jpg', 'caption': 'An individual is in the open view in the image.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406404.jpg', 'caption': 'a man is doing a trick on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560108.jpg', 'caption': 'A young boy with safety gear on a skate board in his backyard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560108.jpg', 'caption': 'a young person riding a skate board near a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560108.jpg', 'caption': 'A young boy in a backyard standing with one foot on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560108.jpg', 'caption': 'A young boy wearing protective gear riding a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560108.jpg', 'caption': 'A young boy on a patio with a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352194.jpg', 'caption': 'A man is skateboarding near the parked cars, ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352194.jpg', 'caption': 'A person wearing a hooded jacket traveling with his skate board down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352194.jpg', 'caption': 'a man riding on a skate board down the middle of the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352194.jpg', 'caption': 'A person skateboarding down a street with cars parked along both sides of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352194.jpg', 'caption': 'A person skateboarding down the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216228.jpg', 'caption': 'A girl is skateboarding down the Hollywood walk of fame.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216228.jpg', 'caption': 'A woman who is skateboarding down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216228.jpg', 'caption': \"A woman with glasses and a scarf skateboards along Hollywood's Walk of Fame.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216228.jpg', 'caption': 'lady in front of a store standing on a pink skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216228.jpg', 'caption': 'A woman is riding her skate board down the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143671.jpg', 'caption': 'A bunch of fresh carrots still covered with dirt in a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143671.jpg', 'caption': 'Freshly picked carrots with dirt on them sit in a basket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143671.jpg', 'caption': 'Carrots sit in a basket covered in soil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143671.jpg', 'caption': 'A pile of carrots in a woven basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143671.jpg', 'caption': 'Carrots picked from the earth are still dirty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285291.jpg', 'caption': 'A young lady riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285291.jpg', 'caption': 'a kid that is skiing down a snowy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285291.jpg', 'caption': 'A young child learning how to ski down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285291.jpg', 'caption': 'A girl in red skiing on a very snowy mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285291.jpg', 'caption': 'A young person in a red winter suit skiing down a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064822.jpg', 'caption': 'The clock on the building is in the shape of a coffee cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064822.jpg', 'caption': 'A large white, blue, and red clock shaped like a cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064822.jpg', 'caption': 'A clock is shaped like a coffee mug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064822.jpg', 'caption': 'A clock attached to a building is shaped like a coffee cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064822.jpg', 'caption': 'A cock on the side of a giant cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420775.jpg', 'caption': 'a man wearing a backpack and green jacket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420775.jpg', 'caption': 'A man on skis wears orange boots, a green jacket and a yellow backpack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420775.jpg', 'caption': 'A man wearing a backpack and skis sits on the mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420775.jpg', 'caption': 'A man standing in the snow with ski gear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420775.jpg', 'caption': 'a woman is a green jacket is in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153656.jpg', 'caption': 'Two toothbrushes and a tube of toothpaste are in a cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153656.jpg', 'caption': 'A coffee cup with a couple of tooth brushes and a tube of tooth paste.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153656.jpg', 'caption': 'Miniature electric toothbrushes and toothpaste inside a cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153656.jpg', 'caption': 'Electric toothbrushes and toothpaste standing in a coffee cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153656.jpg', 'caption': 'two toothbrushes and a tube of toothpaste in a cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472854.jpg', 'caption': 'Two men on skateboards on the pavement', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472854.jpg', 'caption': 'Two young skateboarders are skating near each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472854.jpg', 'caption': 'Two young men riding skateboards on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472854.jpg', 'caption': 'There are two men riding on their skateboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472854.jpg', 'caption': 'A man and a boy traveling on skateboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330835.jpg', 'caption': 'A person riding a skateboard down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330835.jpg', 'caption': 'a person is standing on top of a skate board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330835.jpg', 'caption': 'Someones feet on a skateboard with their shoes on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330835.jpg', 'caption': 'A man standing on a skateboard on a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330835.jpg', 'caption': 'A person wearing sneakers riding a skateboard on cement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347170.jpg', 'caption': 'a person riding a skate board grinding on a rail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347170.jpg', 'caption': 'A man riding a skateboard next to a chain link fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347170.jpg', 'caption': 'A SKATEBOARDER DOING STUNT IN THE SKATING ARENA.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347170.jpg', 'caption': 'Man in white tank top and green shoes skate boarding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347170.jpg', 'caption': 'Skateboarder on his board grinding against a metal bar. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234572.jpg', 'caption': 'A person on a skateboard on the edge of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234572.jpg', 'caption': 'A male skater riding his board on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234572.jpg', 'caption': 'A skateboarder balancing his board on the edge of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234572.jpg', 'caption': 'A skateboarder does a trick in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234572.jpg', 'caption': 'A man riding a skateboard on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072944.jpg', 'caption': 'A small boy on a skate board on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072944.jpg', 'caption': 'A young male child in an orange shirt skateboarding down a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072944.jpg', 'caption': 'A young boy who is riding on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072944.jpg', 'caption': 'A startled child on a skateboard, on a ramp with metal railings, looks upwards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072944.jpg', 'caption': 'Boy on skateboard on a down ramp near going into a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383137.jpg', 'caption': 'A person doing a \"Manual\" on a skateboard at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383137.jpg', 'caption': 'A young person is riding a skateboard in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383137.jpg', 'caption': 'A person on a skateboard wearing colorful tennis shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383137.jpg', 'caption': 'PERSON ON A SKATE BOARD WITH COLORFUL TENNIS SHOES ON', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383137.jpg', 'caption': 'A boy wearing shorts and sneakers stands on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065415.jpg', 'caption': 'a lady wearing ski equipment in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065415.jpg', 'caption': 'a person riding skis on a snowy surface ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065415.jpg', 'caption': 'A female Skiier moving along in the snow posing for picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065415.jpg', 'caption': 'a person that is skiing across some snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065415.jpg', 'caption': 'A woman riding skis across a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204049.jpg', 'caption': 'a man that is standing on a snowy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204049.jpg', 'caption': 'A person on skis is getting ready to throw a snowball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204049.jpg', 'caption': 'A person is winding back to throw a snowball while on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204049.jpg', 'caption': 'A person on skis in the snow throwing a snowball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204049.jpg', 'caption': 'A person on skis that is throwing a snowball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335472.jpg', 'caption': 'A woman riding skis down a ski slope holding ski poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335472.jpg', 'caption': 'Happy skier skiing down hill with demolished snowman to the left.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335472.jpg', 'caption': 'A skier flies by a an old hillside shanty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335472.jpg', 'caption': 'A woman skiing down a snowy ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335472.jpg', 'caption': 'A woman in the process of down hill skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234500.jpg', 'caption': 'A child eating a sandwich with relish on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234500.jpg', 'caption': 'A girl eats a messy burger with ketchup on her face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234500.jpg', 'caption': 'A child at table eating a hotdog with various condiments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234500.jpg', 'caption': 'A person sitting at a table holding a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234500.jpg', 'caption': 'A photo of a small kid taking a hotdog ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272110.jpg', 'caption': 'Man performing a trick on a skateboard with monochrome black and white', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272110.jpg', 'caption': 'a few guys in a public place on skate boards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272110.jpg', 'caption': 'A man with a cap is jumping on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272110.jpg', 'caption': 'a skate boarding kid does tricks out side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272110.jpg', 'caption': 'a few men that are skateboarding across the lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577826.jpg', 'caption': 'Two skateboarders riding their boards on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577826.jpg', 'caption': 'two people riding skate boards near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577826.jpg', 'caption': 'a couple of people are riding on skateboards outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577826.jpg', 'caption': 'a couple of people that are riding around on some skatboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577826.jpg', 'caption': 'Two skateboarders are riding on a slanted walkway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385861.jpg', 'caption': 'a close up of a child eating something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385861.jpg', 'caption': 'A girl sitting at a table taking a big bite of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385861.jpg', 'caption': 'A girl in a black jacket eating a burrito.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385861.jpg', 'caption': 'The young girl in a jacket is biting a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385861.jpg', 'caption': 'A young girl eating some sort of sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059202.jpg', 'caption': 'A skateboarder is near the edge of a skateboard ledge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059202.jpg', 'caption': 'A man is skateboarding in a skate park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059202.jpg', 'caption': 'Teenagers are watching a boy skateboard on a skateboard ramp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059202.jpg', 'caption': 'A man on his skateboard riding ramps at a skating event. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059202.jpg', 'caption': 'A guy on a skate board on a big ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383419.jpg', 'caption': 'A little girl sitting at a table eating a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383419.jpg', 'caption': 'A kid eating a hot dog in a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383419.jpg', 'caption': 'Child biting into a hot dog with a basket on the table and a man sitting at the table behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383419.jpg', 'caption': 'a happy kid eating a hot dog at a restaurant table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383419.jpg', 'caption': 'A child in a colorful hoodie biting into a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041369.jpg', 'caption': 'A person riding down a sidewalk on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041369.jpg', 'caption': 'A person riding on a skateboard on a brick sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041369.jpg', 'caption': 'Person on skateboard on sidewalk passing newspaper boxes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041369.jpg', 'caption': 'A PERSON SKATEBOARDING ON THE SIDE OF THE ROAD', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041369.jpg', 'caption': 'A young person is skateboarding on a side of the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262873.jpg', 'caption': 'A snow boarder is going down an indoor slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262873.jpg', 'caption': 'A man riding a snow board down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262873.jpg', 'caption': 'A man on skis is in a covered building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262873.jpg', 'caption': 'A man in black jacket on snow slope that is indoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262873.jpg', 'caption': 'Guy slides down indoor snow track on snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303590.jpg', 'caption': 'A child sitting with container that has chips and a hot dog in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303590.jpg', 'caption': 'A child sitting at a table with a hot dog, pickle and chips in front of her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303590.jpg', 'caption': 'A little girl sitting in front of a container with a hot dog and chips with a pickle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303590.jpg', 'caption': 'A small girl smiles, holding a tray with a hot dog and nachos.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303590.jpg', 'caption': 'A child smiling in front of a hotdog, in a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483234.jpg', 'caption': 'A person is standing in the snow near a tree with skis and snowboards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483234.jpg', 'caption': 'Snowboards resting upon a tree, with man hiding inside it like fort', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483234.jpg', 'caption': 'A person holds a snowboard in front of a tree with snowboards leaning on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483234.jpg', 'caption': 'a person holding some skis walking through the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483234.jpg', 'caption': 'a a couple of snowboards are up against a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553667.jpg', 'caption': 'A young woman taking a bite of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553667.jpg', 'caption': 'A young girl is eating a messy sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553667.jpg', 'caption': 'A black child who is enjoying a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553667.jpg', 'caption': 'A child bites into a sandwich with gusto.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553667.jpg', 'caption': 'an african american child wearing a green shirt eating a sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173704.jpg', 'caption': 'A person standing on a street with some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173704.jpg', 'caption': 'A man is hoding a large hotdog outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173704.jpg', 'caption': 'A man holding a hot dog in his hands while wearing a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173704.jpg', 'caption': 'A MAN ON A WINTERY DAY IS EATING A HOT DOG', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173704.jpg', 'caption': 'A very serious looking man holding some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404243.jpg', 'caption': 'A display case in a sandwich shop filled with sandwiches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404243.jpg', 'caption': 'A deli case full of fresh made sandwiches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404243.jpg', 'caption': 'A display of food with price tags in front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404243.jpg', 'caption': 'There are plenty of sandwiches to buy in the store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404243.jpg', 'caption': 'a display case of a bunch of pastries like donuts and muffins ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127451.jpg', 'caption': 'Two men riding snowboards in a snow storm down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127451.jpg', 'caption': 'Two people are snowboarding down a hill fast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127451.jpg', 'caption': 'Two men use their snowboards to go down a snowy incline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127451.jpg', 'caption': 'two snow boarders skiing down a mountain ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127451.jpg', 'caption': 'Two men snow boarding and laughing together on the mountain ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109092.jpg', 'caption': 'A man holding a sausage dog and looking at the sausage dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109092.jpg', 'caption': 'A man looks at a hot dog he is eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109092.jpg', 'caption': 'A man is eating a hot dog while wearing a suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109092.jpg', 'caption': 'A man holds up a partially eaten hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109092.jpg', 'caption': 'A man in a suit stares at a chili dog with cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514083.jpg', 'caption': 'Man on skateboard riding around a garage next to car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514083.jpg', 'caption': 'a man talking on a phone riding a skate board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514083.jpg', 'caption': 'A man riding a skateboard on the cement near a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514083.jpg', 'caption': 'A man riding on a skateboard near a crate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514083.jpg', 'caption': 'man on skateboard beside a milk crate in driveway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461953.jpg', 'caption': 'A long hot dog on a plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461953.jpg', 'caption': 'a very long hot dog on a plastic plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461953.jpg', 'caption': 'A foot long hot dog on top of two buns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461953.jpg', 'caption': 'Long hot dog using two buns on paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461953.jpg', 'caption': 'A foot long hotdog on two regular buns on a Styrofoam plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025202.jpg', 'caption': 'A plate has oranges and a chocolate donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025202.jpg', 'caption': 'A plate of orange slices and meat with three forks on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025202.jpg', 'caption': 'A food entree is served on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025202.jpg', 'caption': 'A plate with a chocolate and a sliced orange.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025202.jpg', 'caption': 'A chocolate donut on a plate with orange wedges on the side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495107.jpg', 'caption': 'a boy eating a doughnut and holding a coffee cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495107.jpg', 'caption': 'A bespectacled man about to eat a donut in the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495107.jpg', 'caption': 'a man in glasses is holding a snadwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495107.jpg', 'caption': 'A man who looks like the zodiac killer eating a donut while holding a yellow cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495107.jpg', 'caption': 'a male in a gray sweatshirt is holding a donut and a drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413044.jpg', 'caption': 'The woman is eating her doughnut while sitting out on the bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413044.jpg', 'caption': 'A woman eating a doughnut on a wooden park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413044.jpg', 'caption': 'Woman in glasses eating a donut on the bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413044.jpg', 'caption': 'a close up of a person eating a doughnut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413044.jpg', 'caption': 'A woman eating a donut on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399012.jpg', 'caption': 'Boiled eggs, tea and donuts on a picnic table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399012.jpg', 'caption': 'A disply of fresh donuts on a picnic table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399012.jpg', 'caption': 'A wooden table with several donuts and eggs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399012.jpg', 'caption': 'many doughnuts on wax paper on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399012.jpg', 'caption': 'There are some eggs,doughnuts and two drinks displayed on some white paper or cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523772.jpg', 'caption': 'Closeup of a table with donuts and a red bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523772.jpg', 'caption': 'Donuts on top of wax paper on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523772.jpg', 'caption': 'several glazed donuts sit on a table with a bowl of liquid', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523772.jpg', 'caption': 'Three doughnuts sitting on tissue paper around a cup of tea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523772.jpg', 'caption': 'Three pastries on napkins sit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436795.jpg', 'caption': 'A man eating a hotdog in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436795.jpg', 'caption': 'A man eating a hot dog inside of a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436795.jpg', 'caption': 'A man eating bread in a restaurant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436795.jpg', 'caption': 'There is a man that is eating something and looking at sosthing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436795.jpg', 'caption': 'A guy makes a weird face as he eats what looks like a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413321.jpg', 'caption': 'An explorer or adventurer hikes in a remote area in challenging weather.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413321.jpg', 'caption': 'a snowboarder sliding down a snowy mountain with wind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413321.jpg', 'caption': 'A man riding a snow board down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413321.jpg', 'caption': 'This is a person with a jacket, pants and a mask on in a sandy place. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413321.jpg', 'caption': 'Man on large open area covered with snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557780.jpg', 'caption': 'A small dog chewing on hot dog like dog toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557780.jpg', 'caption': 'The dog is sitting on a pillow and eating a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557780.jpg', 'caption': 'A dog is lounged on a bean bag while chewing a hot dog toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557780.jpg', 'caption': 'A dog chewing on a chew toy while sitting on a beanbag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557780.jpg', 'caption': 'A small dog is chewing on a chew toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299116.jpg', 'caption': 'A little girl posing for a picture while eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299116.jpg', 'caption': 'Little girl smiles for the camera as she eats her sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299116.jpg', 'caption': 'A young girl smiles while enjoying her meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299116.jpg', 'caption': 'An Asian child eating a hot dog sitting at a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299116.jpg', 'caption': 'A girl eating a hotdog at a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569839.jpg', 'caption': 'A little girl sitting in the middle of a restaurant and smiling for picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569839.jpg', 'caption': 'A girl with a missing front tooth enjoys a hotdog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569839.jpg', 'caption': 'A young child is sitting at a bar and eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569839.jpg', 'caption': 'there is a small girl sitting at the counter eating', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569839.jpg', 'caption': 'A young girl eating food at a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313155.jpg', 'caption': 'TWO DONUTS WITH SPRINKLES ARE ON A DESK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313155.jpg', 'caption': 'Two donuts that have sprinkles on them sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313155.jpg', 'caption': 'Two donuts are on a plate on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313155.jpg', 'caption': 'A plate of pastries in front of a computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313155.jpg', 'caption': 'a couple of pastries are on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375521.jpg', 'caption': 'Two people outside in snow gear with a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375521.jpg', 'caption': 'Two people dressed in snow suits looking at a snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375521.jpg', 'caption': 'Two snowboarders are preparing their girl for the ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375521.jpg', 'caption': 'Two people in ski gear looking at a snow board at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375521.jpg', 'caption': 'Two people wearing snow suits conversing about a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066412.jpg', 'caption': 'A young boy holding a snow board and a pair of shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066412.jpg', 'caption': 'A boy is holding his shoes and a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066412.jpg', 'caption': 'A guy smiling, wearing a blue jacket, holding a snowboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066412.jpg', 'caption': 'A young man looks delighted with his shiny snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066412.jpg', 'caption': 'Getting geared up to do a little snow boarding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404464.jpg', 'caption': ' Persons skating in the ice skating rink on the skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404464.jpg', 'caption': 'A snowboard sliding very gently across the snow in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404464.jpg', 'caption': 'A person on a snowboard getting ready for competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404464.jpg', 'caption': 'Man on snowboard riding under metal roofed enclosed area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404464.jpg', 'caption': 'A snowboarder practicing his moves at a snow facility.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054277.jpg', 'caption': 'A person is seen using a snowboard on the packed snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054277.jpg', 'caption': 'A boy on a snowboard sliding on a slope ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054277.jpg', 'caption': 'A man riding down a slope on a snowboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054277.jpg', 'caption': 'A man skis down a snowy hill wearing a blue hat and jacket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054277.jpg', 'caption': 'A man riding a snowboard on top of snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319908.jpg', 'caption': 'A man holds a snowboard inside a building with snow while people hang out in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319908.jpg', 'caption': 'Man standing up posing for a picture with his snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319908.jpg', 'caption': 'A man posing with his skateboard in an inside rink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319908.jpg', 'caption': 'The man poses for a picture while holding a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319908.jpg', 'caption': 'Young man posing with his snow board inside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188958.jpg', 'caption': 'A group of snowboarders standing outside a lodge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188958.jpg', 'caption': 'A group of people walking through the snow in front of a hotel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188958.jpg', 'caption': 'A group of people with snowboards outside of a lodge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188958.jpg', 'caption': 'A group of skiers takes off their skis near the lodge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188958.jpg', 'caption': 'Snowboarders hanging around in front of a building at the bottom of a ski hill.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000459912.jpg', 'caption': 'A lot of motorbikes line up down a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459912.jpg', 'caption': 'Large set of motorcycles all lined up down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459912.jpg', 'caption': 'A large group of motorcycles lined up on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459912.jpg', 'caption': 'A series of motorbikes parked in a row on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015827.jpg', 'caption': 'Two rows of various makes of parked motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015827.jpg', 'caption': 'a bunch of motorcycles are parked tightly together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015827.jpg', 'caption': 'Rows and columns of motorcycles in middle of street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015827.jpg', 'caption': 'A bunch of motorcycles that are grouped together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015827.jpg', 'caption': 'Motorcycles are lined up outside along the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394240.jpg', 'caption': 'A row of motorcycles parked in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394240.jpg', 'caption': 'A bunch of motorcycles parked on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394240.jpg', 'caption': 'a back ally neighborhood with motor bikes in a row', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394240.jpg', 'caption': 'A number of motorbikes parked on an alley', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394240.jpg', 'caption': 'a bunch of motorcycles parked along the side of the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510755.jpg', 'caption': 'A row of motorcycles parked next to each other on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510755.jpg', 'caption': 'Several motorcycles parked beneath trees in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510755.jpg', 'caption': 'THERE ARE A LOT OF MOTOR BIKES ON THE GRASS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510755.jpg', 'caption': 'a line of parked motorcycles on some grass and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510755.jpg', 'caption': 'A bunch of motorcycles line up near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175831.jpg', 'caption': 'Two people on mopeds passing in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175831.jpg', 'caption': 'two people riding scooter on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175831.jpg', 'caption': 'People on mopeds in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175831.jpg', 'caption': 'People riding motorcycles in front of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175831.jpg', 'caption': 'an image of a boy on his bike riding past a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079472.jpg', 'caption': 'Office space with office equipment on desk top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079472.jpg', 'caption': 'A hope office setup of computers and printers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079472.jpg', 'caption': 'a home office with laptop, printer, scanner, and extra monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079472.jpg', 'caption': 'The computer desk in the corner is by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079472.jpg', 'caption': 'A laptop, monitor, printer and tablet on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250108.jpg', 'caption': 'A computer that is on a desk near a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250108.jpg', 'caption': 'An office desk in front of a large window overlooking a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250108.jpg', 'caption': 'this is a desk with a computer on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250108.jpg', 'caption': 'A corner desk with a laptop and other office equipment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250108.jpg', 'caption': 'A office desk, with a view of a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315601.jpg', 'caption': 'A close-up of a one-way street with many cars and motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315601.jpg', 'caption': 'Straight ahead view of several lanes of traffic heading this way', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315601.jpg', 'caption': 'Cars, motorized scooters, and other vehicles stopped on a busy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315601.jpg', 'caption': 'Bikers on bikes in front of a lot of traffic\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315601.jpg', 'caption': 'a group of motorcycle riders stopped in traffic next to cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437218.jpg', 'caption': 'this living room has a small tv and a lamp next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437218.jpg', 'caption': 'A big screen television is sitting on a stand in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437218.jpg', 'caption': 'A large television and table in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437218.jpg', 'caption': 'Living room with flat screen TV and surround sound.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437218.jpg', 'caption': 'A flat screen television in a room with yellow walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503707.jpg', 'caption': 'A group of men riding motorcycle down a country road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503707.jpg', 'caption': 'a street with some motorcycles driving through it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503707.jpg', 'caption': 'A white car driving down the highway with three motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503707.jpg', 'caption': 'Three motorcycles are driving swiftly behind a white car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503707.jpg', 'caption': 'a blurry image of motorcycles and a car driving along a highway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074331.jpg', 'caption': 'This is a case full of yellow bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074331.jpg', 'caption': 'Bananas a tightly packed and boxed for delivery to the market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074331.jpg', 'caption': 'a bunch of bananas are packaged up in boxes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074331.jpg', 'caption': 'Bananas packed in cardboard box covered in plastic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074331.jpg', 'caption': 'An unopened box full of perfectly ripe bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579664.jpg', 'caption': 'Vegetables are displayed in a wooden barrel outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579664.jpg', 'caption': 'A bunch of bananas are sitting on the stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579664.jpg', 'caption': 'The cart has bananas or plantains piled on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579664.jpg', 'caption': 'a box of green bananas and a box of ripe bananas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579664.jpg', 'caption': 'A large number of green and yellow bananas in wooden containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369763.jpg', 'caption': 'A polie officer standing next to a motorcycle parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369763.jpg', 'caption': 'A scene depicting a man sitting down on a curb and a motor cop writing a ticket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369763.jpg', 'caption': 'A man and police officer on the sidewalk next to a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369763.jpg', 'caption': 'A man sitting on a curb with a police officer behind him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369763.jpg', 'caption': 'A motorcycle police officer is writing a ticket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199951.jpg', 'caption': 'a person riding a motorcycle on an enclosed road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199951.jpg', 'caption': 'A motorcycle and a rider on a race track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199951.jpg', 'caption': 'A person on a motorcycle driving around a racetrack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199951.jpg', 'caption': 'A person riding a motor cycle down a race track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199951.jpg', 'caption': 'Racer driving a high performance motorcycle on track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452684.jpg', 'caption': 'A large pitcher of some beverage is on the table next to orange slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452684.jpg', 'caption': 'A cold pitcher of orange juice beside a bowl of orange slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452684.jpg', 'caption': 'A pitcher of beer is sitting next to a cup of orange slices. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452684.jpg', 'caption': 'A pitcher of beer stands next to a dish containing orange slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452684.jpg', 'caption': 'a pitcher of liquid sitting on a table next to some sliced oranges', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213687.jpg', 'caption': 'Motorcycles driving down a wide city street nearing a white building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213687.jpg', 'caption': 'A large building with many windows and people riding scooters nearby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213687.jpg', 'caption': 'People are riding scooters down the middle of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213687.jpg', 'caption': 'People are riding electric scooters in front of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213687.jpg', 'caption': 'Many motorcycles riding in front of a KFC.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108094.jpg', 'caption': 'Two people on motorbike passing by a clock facade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108094.jpg', 'caption': 'Two people are riding a red bike down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108094.jpg', 'caption': 'Two people riding on top of one motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108094.jpg', 'caption': 'Two people are on a motorcycle driving down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108094.jpg', 'caption': 'The couple scoots around town on the motorbike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527040.jpg', 'caption': 'A bunch of birds sitting in a bread basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527040.jpg', 'caption': 'Two birds perched on a bread basked on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527040.jpg', 'caption': 'Two finch birds standing next to a basket of bread. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527040.jpg', 'caption': 'Birds are standing in a basket on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527040.jpg', 'caption': 'three birds sitting on a bread basket near a newspaper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350341.jpg', 'caption': 'Grey bird in a wooden basket eating bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350341.jpg', 'caption': ' A basket of bread with a small bird eating it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350341.jpg', 'caption': 'Bread sitting in a basket on a table beside a newspaper. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350341.jpg', 'caption': 'A bird is eating bread from a basket on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350341.jpg', 'caption': 'A bowl of bread and newspaper laid on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550529.jpg', 'caption': 'A motorbike sitting in front of a wine display case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550529.jpg', 'caption': 'A motor bike and some wine in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550529.jpg', 'caption': 'A dirt bike sitting on a counter by some wine bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550529.jpg', 'caption': 'a motorcycle standing in front a winery ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550529.jpg', 'caption': 'A bike sits among bottles of wine on a shelf. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432176.jpg', 'caption': 'A wooden bench sitting next to an entrance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432176.jpg', 'caption': 'A green wooden bench in front of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432176.jpg', 'caption': 'A green bench in front of a window box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432176.jpg', 'caption': 'a green, warped bench outside of a small cottage with a flowers in the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432176.jpg', 'caption': 'The front of a small cabin with a window garden and green bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281533.jpg', 'caption': 'A dog watches an animal on the television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281533.jpg', 'caption': 'Large brown dog facing away, watching TV with wildlife scene.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281533.jpg', 'caption': 'A big brown dog is watching a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281533.jpg', 'caption': 'The hound dog sits on a rug and watches another dog on the television set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281533.jpg', 'caption': 'A dog is sitting in front of a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369826.jpg', 'caption': 'A picture advertising Arizona tourism in an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369826.jpg', 'caption': 'A television that is sitting next to signs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369826.jpg', 'caption': 'A television is shown in the middle of a baggage claim area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369826.jpg', 'caption': 'An airport terminal has a big screen displaying an ad for Arizona.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369826.jpg', 'caption': 'A flat screen TV with a picture of a person jumping on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551334.jpg', 'caption': 'the person is sitting at a desk with a television behind him ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551334.jpg', 'caption': 'A person sitting at a table in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551334.jpg', 'caption': 'A man who is sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551334.jpg', 'caption': 'A man in a news room sits in front of a camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551334.jpg', 'caption': 'A man sitting a desk in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291380.jpg', 'caption': 'A car passes by to find a man outside near a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291380.jpg', 'caption': 'A picture of a man sitting on the sidewalk next to a television set and backpack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291380.jpg', 'caption': 'A picture taken out of a vehicle of a man sitting outside beside a tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291380.jpg', 'caption': 'Man sitting next to a TV on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291380.jpg', 'caption': 'A person sitting net to a TV on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291380.jpg', 'caption': 'A black man is sitting on the sidewalk next to a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368978.jpg', 'caption': 'A four engine jet transport airplane flying low.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368978.jpg', 'caption': 'A large airplane flying over a grassy field with trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368978.jpg', 'caption': 'jumbo jet comes in for a landing over some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368978.jpg', 'caption': 'An airplane taking off over a field next to a forest. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368978.jpg', 'caption': 'A jumbo jet plane in flight with a city in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077123.jpg', 'caption': 'The side of an airplane that is parked, and an Air China sign on the side of the plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077123.jpg', 'caption': 'An Air China airplane sitting on the runway ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077123.jpg', 'caption': 'This is the jet engine and side of an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077123.jpg', 'caption': 'a parked air plane sit at a airfield ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077123.jpg', 'caption': 'A view of the airplane looking down from the head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513681.jpg', 'caption': 'A man in a safety vest holds him arms up as he stands in front of an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513681.jpg', 'caption': 'an airport employee giving directions to an airplane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513681.jpg', 'caption': 'An air traffic controller directing an airplane on a busy runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513681.jpg', 'caption': 'A person reflective gear directing an airplane ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513681.jpg', 'caption': 'A person directing a white jet airliner with orange sticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437370.jpg', 'caption': 'a large air plane is parked out on a grass field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437370.jpg', 'caption': 'A vintage propeller plane parked in a grassy area with other older planes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437370.jpg', 'caption': 'Someone sitting in a renovated propellor fighter plane on a tarmac', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437370.jpg', 'caption': 'Pilot sitting inside an old style war plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437370.jpg', 'caption': 'A very nice looking fighter type plane in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078371.jpg', 'caption': 'A small airplane taking off from an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078371.jpg', 'caption': 'A Curtiss P-40 Warhawk taxis along a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078371.jpg', 'caption': 'A small airplane that is getting ready to take off from the runway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078371.jpg', 'caption': 'a small air plane getting ready to take off .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078371.jpg', 'caption': 'An airplane is about to fly into the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560623.jpg', 'caption': 'An airport filled with planes sitting on tarmacs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560623.jpg', 'caption': 'The view of runway from behind the windows of airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560623.jpg', 'caption': 'a truck driving towards some planes parked on the runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560623.jpg', 'caption': 'Planes on a wet tarmac unloading at arrival gates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560623.jpg', 'caption': 'Window view from the inside of airplanes, baggage carrier and tarmac. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289173.jpg', 'caption': 'A plane just outside of a terminal with other planes in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289173.jpg', 'caption': 'Several planes on the tarmac at an airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289173.jpg', 'caption': 'a very large airplane that is on a runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289173.jpg', 'caption': 'there is a white plane that is at this airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289173.jpg', 'caption': 'A small regional jet pulls to a gate at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052759.jpg', 'caption': 'An airplane sits on the tarmac of an airport, with a disconnected boarding gate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052759.jpg', 'caption': 'Plane boarding passengers while at a fancy airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052759.jpg', 'caption': 'A plane sitting on a runway getting ready to be emptied.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052759.jpg', 'caption': 'THIS IS A AIRPLANE ON THE RUNWAY OF THE AIRPORT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052759.jpg', 'caption': 'A plan parked on the cement near a terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568623.jpg', 'caption': 'A man sitting on a large bench talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568623.jpg', 'caption': 'A man sitting on a modern bench talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568623.jpg', 'caption': 'A man sitting on a black and yellow bench on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568623.jpg', 'caption': 'A man is sitting on a public bench on a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568623.jpg', 'caption': 'Man talking on personal cell phone on a yellow and black bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128939.jpg', 'caption': 'a car is stopped in the street for people to cross', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128939.jpg', 'caption': 'a white car is pulled up and stopped at a line', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128939.jpg', 'caption': 'A car at an intersection while a man is crossing the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128939.jpg', 'caption': 'a silver car under a signal light that is green with a man in the crosswalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128939.jpg', 'caption': 'A car that is sitting near a green street light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339974.jpg', 'caption': 'A traffic signal sitting next to a street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339974.jpg', 'caption': 'Traffic light at night, appearing very confusing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339974.jpg', 'caption': 'The electronic stop sign glows brightly at night time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339974.jpg', 'caption': 'A variety of traffic lights and road signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339974.jpg', 'caption': 'There is a street light with two green arrows in different directions', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561100.jpg', 'caption': 'A small blue plane sitting on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561100.jpg', 'caption': 'an E2 airplane painted blue with black and white stripes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561100.jpg', 'caption': 'An old warplane is on display in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561100.jpg', 'caption': 'a blue small plane standing at the airstrip', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561100.jpg', 'caption': 'Model airplane with an American insignia and stripes on wings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150410.jpg', 'caption': 'Man bending down to check out a model plain that is parked in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150410.jpg', 'caption': 'Man behind a radio operated model airplane on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150410.jpg', 'caption': 'The man is crouched down with a small airplane model. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150410.jpg', 'caption': 'a small red and white toy plane in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150410.jpg', 'caption': 'A man smiles while kneeling beside a miniature airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009426.jpg', 'caption': 'A small plane flying through a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009426.jpg', 'caption': 'Red and white small plane on partially cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009426.jpg', 'caption': 'A red and white biplane in a blue, cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009426.jpg', 'caption': 'A plane that is flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009426.jpg', 'caption': 'A small lightweight airplane flying through the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014869.jpg', 'caption': 'A park bench siting next to a tree next to a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014869.jpg', 'caption': 'Green park bench in front of a tree on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014869.jpg', 'caption': 'A lone public bench under a tree surrounded by other trees and grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014869.jpg', 'caption': 'A green slated park bench under a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014869.jpg', 'caption': 'A green painted bench sitting underneath a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281221.jpg', 'caption': 'a giraffe walking through trees on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281221.jpg', 'caption': 'Giraffe grazing on leaves from tree in native area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281221.jpg', 'caption': 'A giraffe is walking slowly on the grass as other giraffes walk ahead in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281221.jpg', 'caption': 'The giraffe is looking for a place to eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281221.jpg', 'caption': 'A tall giraffe eating leaves off a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108169.jpg', 'caption': 'a view of an air plane wing in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108169.jpg', 'caption': 'Is this the inside of a building for skateboarding?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108169.jpg', 'caption': 'A yellow airplane wing pointed toward the ground?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108169.jpg', 'caption': 'An ariel view of a planet in space is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108169.jpg', 'caption': 'landscape photo with plane wing at top and view of sandy hills showing rain gulleys', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440575.jpg', 'caption': 'The snow covered mountain looks over the small city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440575.jpg', 'caption': 'A COMMERCIAL AIRPLANE FLYING ABOVE THE CITY AND MOUNTAIN', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440575.jpg', 'caption': 'The airplane has taken off from the airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440575.jpg', 'caption': 'A plane ascends over a city, with mountains in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440575.jpg', 'caption': 'a passenger jet plane beginning its ascent over a city in the mountains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354533.jpg', 'caption': 'A motorcycle sits parked across from a herd of livestock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354533.jpg', 'caption': 'A motorbike, people and sheep in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354533.jpg', 'caption': 'A motorcycle parked on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354533.jpg', 'caption': 'A motorcycle in the foreground parked in a dirt parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354533.jpg', 'caption': 'A multicolored motorcycle rests outside of a sheep farm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545959.jpg', 'caption': 'A large group of sheep in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545959.jpg', 'caption': 'many different animals in a large field of green grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545959.jpg', 'caption': 'A lot of animals that are in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545959.jpg', 'caption': 'Sheep are grazing on a bright green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545959.jpg', 'caption': 'THERE ARE A LOT OF SHEEPS ON THE GRASS EATING', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511058.jpg', 'caption': 'A giraffe with a mouth full of grass in front of a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511058.jpg', 'caption': 'A close up of a giraffe chewing on some hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511058.jpg', 'caption': 'a close up of a giraffe head eating on grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511058.jpg', 'caption': 'A giraffe is chewing a mouthful of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511058.jpg', 'caption': \"A hungry giraffe is eating it's food in the zoo.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091227.jpg', 'caption': 'A giraffe standing in the grass near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091227.jpg', 'caption': 'a brown and white giraffe in a field of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091227.jpg', 'caption': 'a close up of a giraffe with a blurry background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091227.jpg', 'caption': 'A giraffe stands alone near a rocky hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091227.jpg', 'caption': 'A giraffe standing in a picture with a field in back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242139.jpg', 'caption': 'A building shines in the clear sky as cars drive underneath.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242139.jpg', 'caption': 'A street scene at an intersection with tall skyscrapers in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242139.jpg', 'caption': 'Large glass building shining from sunlight on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242139.jpg', 'caption': 'A CITY WITH SKY SCRAPERS AND CARS ON IT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242139.jpg', 'caption': 'Large modern buildings on a busy street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334321.jpg', 'caption': 'A large white dog is sitting on a bench beside an elderly man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334321.jpg', 'caption': 'A large white dog sits on a bench with people next to a path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334321.jpg', 'caption': 'A large dog sits just his bottom on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334321.jpg', 'caption': 'A dog sitting on a bench next to an old man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334321.jpg', 'caption': 'A couple of people sitting on a bench next to a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381021.jpg', 'caption': 'a woman is on a poster hanging outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381021.jpg', 'caption': 'A sign in a median is displaying an ad of a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381021.jpg', 'caption': 'A city sidewalk billboard featuring a young woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381021.jpg', 'caption': 'A billboard on the median of an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381021.jpg', 'caption': 'City art installation showing a picture of a girl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170629.jpg', 'caption': 'A yellow bus is parked near people on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170629.jpg', 'caption': 'A yellow bus stopping at a bus stop in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170629.jpg', 'caption': 'A bus stopped at a bus stop while passengers get on and off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170629.jpg', 'caption': 'A group of people at a bus stop boarding the bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170629.jpg', 'caption': \"It doesn't appear that anyone is waiting on the bus.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207797.jpg', 'caption': 'A lone giraffe walking in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207797.jpg', 'caption': 'A giraffe stands in the grass in Africa. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207797.jpg', 'caption': 'A giraffe stands in the field as the sun goes down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207797.jpg', 'caption': 'A tall giraffe standing in a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207797.jpg', 'caption': 'A giraffe stands in a vast, green expanse while puffy clouds and blue sky fill in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179558.jpg', 'caption': 'Two giraffes standing together in an open field zoo den', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179558.jpg', 'caption': 'One giraffe licks the tree limb while the other looks at him strangely. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179558.jpg', 'caption': 'Two giraffes lick a branch on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179558.jpg', 'caption': 'There are two giraffes standing next to a tree branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179558.jpg', 'caption': 'Head of two giraffes with one slicking the bark on a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368117.jpg', 'caption': 'A couple of traffic lights sitting under a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368117.jpg', 'caption': 'a street light has the red lights glowing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368117.jpg', 'caption': 'The traffic lights are clearly visible for all of us to see. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368117.jpg', 'caption': 'a pole with a stop lights attached to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368117.jpg', 'caption': 'two sets of street lights attached to a pole ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015085.jpg', 'caption': 'A giraffe drinking water from a river on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015085.jpg', 'caption': 'A lone giraffe that is getting a drink of water from a small pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015085.jpg', 'caption': 'A giraffe awkwardly sips water from a puddle in the dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015085.jpg', 'caption': 'Giraffe is eating or drinking something off of the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015085.jpg', 'caption': 'A giraffe leaning down and bending its knees to drink from a puddle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467522.jpg', 'caption': 'A group of giraffes standing near each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467522.jpg', 'caption': 'a small herd of giraffe in an open field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467522.jpg', 'caption': 'All of the tall giraffes are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467522.jpg', 'caption': 'A bunch of giraffes that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467522.jpg', 'caption': 'Several giraffes standing near rocks in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040102.jpg', 'caption': 'Two giraffe standing next to each other on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040102.jpg', 'caption': 'Two giraffes stroll past each other near a bush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040102.jpg', 'caption': 'Two giraffes standing near trees in a grassy area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040102.jpg', 'caption': 'Two giraffes rub their necks together as they stand by the trees in the sunlight. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040102.jpg', 'caption': 'Two giraffes crossing paths on a green and grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403020.jpg', 'caption': 'A giraffe lying on the ground in a zoo pin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403020.jpg', 'caption': 'A giraffe laying down on the dirt ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403020.jpg', 'caption': 'Lone giraffe lying in dirt area of enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403020.jpg', 'caption': 'Small giraffe sitting on the ground while the sun hits its body.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403020.jpg', 'caption': 'A giraffe laying down on top of a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006005.jpg', 'caption': 'a couple of giraffes that are walking around', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006005.jpg', 'caption': 'A herd of giraffe standing on top of a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006005.jpg', 'caption': 'Several smaller giraffes that are in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006005.jpg', 'caption': 'The giraffes are walking in different directions outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006005.jpg', 'caption': 'A giraffe standing next to three baby giraffes in a zoo exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219514.jpg', 'caption': 'some street signs sitting on a pole next to a street light ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219514.jpg', 'caption': 'A traffic light and road signs are posted near buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219514.jpg', 'caption': 'A traffic light and a sign for the entrance of highway 527 South.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219514.jpg', 'caption': 'A streetlight next to a street sign and a directional sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219514.jpg', 'caption': 'a green light is next to a couple of street signs on a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521634.jpg', 'caption': 'A street light with many signs on it stands to the foreground of a large building standing beside a naked tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521634.jpg', 'caption': 'A stoplight with street signs on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521634.jpg', 'caption': 'A pole has street signs and traffic lights on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521634.jpg', 'caption': 'The traffic and walk signals are at C and 3 Streets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521634.jpg', 'caption': 'There is an image of an outdoor area. \\n\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125476.jpg', 'caption': 'A bench with potted plants sitting on top of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125476.jpg', 'caption': 'A bench surrounded by different plants on ground and potted plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125476.jpg', 'caption': 'An empty red bench in an overgrown garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125476.jpg', 'caption': 'A bench is in an overgrown yard by a hose.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125476.jpg', 'caption': 'There is a metal and wood chair in a garden', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402559.jpg', 'caption': 'A large giraffe is standing in the wilderness.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402559.jpg', 'caption': 'A giraffe stands in an area with many tall trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402559.jpg', 'caption': 'A giraffe standing in a field full of trees and plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402559.jpg', 'caption': 'A large giraffe is standing outdoors near some trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402559.jpg', 'caption': 'A large tall giraffe standing by a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484816.jpg', 'caption': 'A yellow school bus with a creepy eye shaped rear view mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484816.jpg', 'caption': 'The mirrors of a yellow school bus below a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484816.jpg', 'caption': 'The school bus features a safety mirror on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484816.jpg', 'caption': 'a close up of the front end of a school bus ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484816.jpg', 'caption': 'A school bus with a front mirror next to a light pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165547.jpg', 'caption': 'An eating area with a table and a few chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165547.jpg', 'caption': 'Table situated in corner of room with a vase for a center piece', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165547.jpg', 'caption': 'A wooden table sitting below a bunch of windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165547.jpg', 'caption': 'A dining room table next to windows overlooking woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165547.jpg', 'caption': 'A wooden dining table is surrounded by windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081561.jpg', 'caption': 'A large point tower towering over a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081561.jpg', 'caption': 'a stop light that is out on a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081561.jpg', 'caption': 'Street signal light near church at dusk near streetlight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081561.jpg', 'caption': 'A view of a stop light, with a cathedral, in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081561.jpg', 'caption': 'Traffic signals direct traffic while a tower is in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227125.jpg', 'caption': 'Close up of a traffic light with three lights, the top illuminated red with a person image, the second down not illuminated, and the bottom on hanging down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227125.jpg', 'caption': 'there are three different lights that show if u can walk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227125.jpg', 'caption': \"A traffic light with it's green light busted.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227125.jpg', 'caption': 'A traffic signal has a pedestrian walk symbol alight. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227125.jpg', 'caption': 'A stoplight on a pole near a large building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189550.jpg', 'caption': 'A woman in sunglasses is in a picture with a giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189550.jpg', 'caption': 'A woman wearing sun glasses standing next to a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189550.jpg', 'caption': 'a woman smiles as a giraffe walks in the back ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189550.jpg', 'caption': 'a lady with glasses with a giraffe behind her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189550.jpg', 'caption': 'The woman is taking a picture of herself and the giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212663.jpg', 'caption': 'A bus parked next to another bus at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212663.jpg', 'caption': 'People getting on a bus at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212663.jpg', 'caption': 'People boarding a commuter bus on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212663.jpg', 'caption': 'A busy city bus stop with people boarding the buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212663.jpg', 'caption': 'A white bus is parked at a station where people are waiting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476005.jpg', 'caption': 'A line of multiple buses parked along a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476005.jpg', 'caption': 'A long line of buses pass on an urban street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476005.jpg', 'caption': 'A caravan of buses are parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476005.jpg', 'caption': 'A very long row of buses on the street in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476005.jpg', 'caption': 'Several city buses lined up in a large city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505440.jpg', 'caption': 'A couple of giraffes that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505440.jpg', 'caption': 'two giraffes in a field near many trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505440.jpg', 'caption': 'Two giraffes are grazing side by side, but in opposite directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505440.jpg', 'caption': 'Two giraffes are facing in opposite directions with their necks bent down. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505440.jpg', 'caption': 'A couple of giraffe standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067868.jpg', 'caption': 'A park bench submerged in water in a flood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067868.jpg', 'caption': 'An orange bench surrounded by flood waters near a small metal grill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067868.jpg', 'caption': 'A bench under water in a park that has been flooded ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067868.jpg', 'caption': 'The water of the river is muddy brown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067868.jpg', 'caption': 'A red park bench sitting in the middle of a flooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450263.jpg', 'caption': 'A woman sitting on a bench reading a paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450263.jpg', 'caption': 'A man and a women sitting on a bench, the women is reading a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450263.jpg', 'caption': 'A young woman sitting on the bench of a pier reading the newspaper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450263.jpg', 'caption': 'A lady reading a newspaper on a public bench outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450263.jpg', 'caption': 'two people sitting on a bench with a boat in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241691.jpg', 'caption': 'A giraffe standing next to a covered structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241691.jpg', 'caption': 'A giraffe reaching up to greet someone with food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241691.jpg', 'caption': 'A giraffe extends his neck near an onlooker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241691.jpg', 'caption': 'People are feeding a giraffe at the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241691.jpg', 'caption': 'Giraffe approaches a person and almost touches person hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450500.jpg', 'caption': 'People are waiting on a corner to cross a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450500.jpg', 'caption': 'A man speaking to a crowd of people waiting to cross the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450500.jpg', 'caption': 'A large group of people on a corner waiting to cross the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450500.jpg', 'caption': 'A group of people are at an intersection to cross the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450500.jpg', 'caption': 'A group of people standing at a corner looking across the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545293.jpg', 'caption': 'A single park bench is by small trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545293.jpg', 'caption': 'an image of a park bench that is sitting in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545293.jpg', 'caption': 'a bench in a field near some small trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545293.jpg', 'caption': 'A bench sitting in the grass in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545293.jpg', 'caption': 'A park bench with a broken board on one end.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232894.jpg', 'caption': 'A girl and boy sitting at a wooden table with the boy looking at the girl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232894.jpg', 'caption': 'Two kids sitting at a wooden table eating chips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232894.jpg', 'caption': 'A young boy standing next to a young girl and a bag of chips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232894.jpg', 'caption': 'The two young children are sitting at the table together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232894.jpg', 'caption': 'A little girl has a bag of chips and a boy is smiling at her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439969.jpg', 'caption': 'A rusted pink fire hydrant in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439969.jpg', 'caption': 'Close up of slightly rusted fire hydrant on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439969.jpg', 'caption': 'A faded and rusty fire hydrant in grass next to the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439969.jpg', 'caption': 'old and faded fire hydrant surrounded by some green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439969.jpg', 'caption': 'An old fire hydrant sitting outside in the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029913.jpg', 'caption': 'A bicycle is lying on the sidewalk beside a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029913.jpg', 'caption': 'Two eyes painted on a fire hydrant make it look more festive.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029913.jpg', 'caption': 'A fire hydrant with a pair of eye stickers making a face on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029913.jpg', 'caption': 'The fire hydrant on the side of the road has eyes painted on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029913.jpg', 'caption': 'A fire hydrant in which someone put two eyes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410437.jpg', 'caption': 'A red fire hydrant sitting next to a sandwich sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410437.jpg', 'caption': 'A fire hydrant and sign covered in snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410437.jpg', 'caption': 'A fire hydrant near a sign that is covered with sticky snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410437.jpg', 'caption': 'A fire hydrant outside on a street covered in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410437.jpg', 'caption': 'A snow covered city street featuring a red fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455859.jpg', 'caption': 'A little girl in a pink shirt standing near a blue metal sculpture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455859.jpg', 'caption': 'People are standing outside in a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455859.jpg', 'caption': 'Woman taking a picture of someone standing behind a sculpture and a child pushing another woman towards the sculpture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455859.jpg', 'caption': 'People in a inner city courtyard watching a performance. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455859.jpg', 'caption': 'A woman snaps a photo of people having fun in the courtyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235302.jpg', 'caption': 'A newly married emo hipster couple sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235302.jpg', 'caption': 'a woman and man sits on a wooden bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235302.jpg', 'caption': 'A smiling couple in wedding attire on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235302.jpg', 'caption': 'A bride and groom pose for wedding pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235302.jpg', 'caption': 'A bride with blue hair and a groom sitting on a bench together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431573.jpg', 'caption': 'A red fire hydrant is leaking onto a side walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431573.jpg', 'caption': 'A red fire hydrant gushing water onto a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431573.jpg', 'caption': 'A red fire hydrant pouring water onto a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431573.jpg', 'caption': 'A red fire hydrant opened and spilling water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431573.jpg', 'caption': 'A red fire hydrant spouting water onto sidewalk with trees in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290570.jpg', 'caption': 'A herd of sheep standing on top of snow covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290570.jpg', 'caption': 'Several sheep grazing in a field of tall grass in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290570.jpg', 'caption': 'Group of sheep and mountain out front of old house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290570.jpg', 'caption': 'A flock of sheep standing around in the middle of a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290570.jpg', 'caption': 'Sheep are grazing in a snow dusted field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127474.jpg', 'caption': 'A couple of kids standing around a red fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127474.jpg', 'caption': 'Two girls are wearing plastic firefighter hats and standing next to a fire hydrant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127474.jpg', 'caption': 'Two little girls are wearing fireman hats and poking a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127474.jpg', 'caption': 'Two young girls in toy fire helmets looking at a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127474.jpg', 'caption': 'two small children playing next to a fired hydrant and holding a balloon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028758.jpg', 'caption': 'A giraffe and a zebra are in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028758.jpg', 'caption': 'A giraffe and zebra in field next to a fence and building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028758.jpg', 'caption': 'A giraffe and a zebra are in their pen at the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028758.jpg', 'caption': 'Giraffe walking near zebra lying in grass in enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028758.jpg', 'caption': 'A giraffe and a zebra are on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163020.jpg', 'caption': 'A ducks is flying over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163020.jpg', 'caption': 'A duck is in the air flying over water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163020.jpg', 'caption': 'A duck is flying low above the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163020.jpg', 'caption': 'A duck flying above a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163020.jpg', 'caption': 'a white brown and green duck is flying over some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332654.jpg', 'caption': 'A yellow and blue fire hydrant sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332654.jpg', 'caption': 'A yellow and blue fire hydrant on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332654.jpg', 'caption': 'A freeway sign states Las Vegas north in the background behind a yellow and blue fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332654.jpg', 'caption': 'A brightly colored fire hydrant sits beside a brightly colored curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332654.jpg', 'caption': 'A fire hydrant that is painted yellow and blue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281455.jpg', 'caption': 'A flock of small birds flying in the sky over the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281455.jpg', 'caption': 'Several birds that are flying together over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281455.jpg', 'caption': 'A flock of birds flying over a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281455.jpg', 'caption': 'A black and white image showing birds flying over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281455.jpg', 'caption': 'A group of birds flying over the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038029.jpg', 'caption': 'A float in a parade on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038029.jpg', 'caption': 'a large fire hydrant on a truck ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038029.jpg', 'caption': 'Truck towing wheeled hydrant in a parade', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038029.jpg', 'caption': 'A parade has a float with a fire hydrant on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038029.jpg', 'caption': 'The jazz band is taking part in a parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017756.jpg', 'caption': 'A swan is floating down the river by the boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017756.jpg', 'caption': 'A boat with flags and tents is docked next to a grassy bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017756.jpg', 'caption': 'A boat that is decorated with flags on the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017756.jpg', 'caption': 'a parked boat with some items inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017756.jpg', 'caption': 'A large red boat sitting next to a lush green shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380932.jpg', 'caption': 'There are mountains in the background and a lake in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380932.jpg', 'caption': 'a red fire hydrant in a field covered in snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380932.jpg', 'caption': 'A fire hydrant in front of a snow covered field, a lake and mountain backdrop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380932.jpg', 'caption': 'A hydran in a snow covered field overlooking a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380932.jpg', 'caption': 'An expanse of snow in the middle of dry plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155885.jpg', 'caption': 'A flock of white birds flying over small boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155885.jpg', 'caption': 'Many birds flying over some boats in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155885.jpg', 'caption': 'A harbor with boats and lots of birds flying around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155885.jpg', 'caption': 'a black and white picture of seagulls flying over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155885.jpg', 'caption': 'A lot of white birds flying around boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231408.jpg', 'caption': 'there is a cat that is standing near the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231408.jpg', 'caption': 'A cat standing next to a pond with a duck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231408.jpg', 'caption': 'A cat looking intently at something as a duck floats by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231408.jpg', 'caption': 'this is a cat standing near a patch of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231408.jpg', 'caption': 'A cat in the foreground and a duck in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305821.jpg', 'caption': 'A giraffe grazing on a tree in the wilderness with other wildlife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305821.jpg', 'caption': 'Several giraffes eating leaves from the ground and tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305821.jpg', 'caption': 'Two giraffes and another animal in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305821.jpg', 'caption': 'Several giraffe eating the leaves from neighboring trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305821.jpg', 'caption': 'Giraffes are feeding on the trees and grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459374.jpg', 'caption': 'there are blue lights shining threw palm trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459374.jpg', 'caption': 'A fire hydrant pouring water from it with a neon blue glow to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459374.jpg', 'caption': 'Reflections of light streaming thru a building window at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459374.jpg', 'caption': 'a fire hydrant on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459374.jpg', 'caption': 'A yellow fire hydrant that is on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190056.jpg', 'caption': 'Three giraffes grazing from a bush over a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190056.jpg', 'caption': 'A couple of giraffe standing next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190056.jpg', 'caption': 'The giraffes crane their necks over the small fence because the fence is small and their necks are not small.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190056.jpg', 'caption': 'A group of giraffe standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190056.jpg', 'caption': 'Three giraffe stand near each other close to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176649.jpg', 'caption': 'A city street sign warning of a hill in different languages.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176649.jpg', 'caption': 'Closeup of two street signs with various languages on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176649.jpg', 'caption': 'a street sign mounted on a vertical pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176649.jpg', 'caption': 'A triangle sign with an English and foreign warning', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176649.jpg', 'caption': 'Two street signs attached to the same pole in two different languages. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121041.jpg', 'caption': 'A black duck floating in a wavy pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121041.jpg', 'caption': 'A duck swimming in some very gray water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121041.jpg', 'caption': 'Small black and white bird swimming through the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121041.jpg', 'caption': 'A little black bird floats through the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121041.jpg', 'caption': 'A lone duck with a colorful beak swims through the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156397.jpg', 'caption': 'A herd of sheep grazing closely together in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156397.jpg', 'caption': 'A herd of sheep eating, some of them in the food dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156397.jpg', 'caption': 'A herd of sheep gather to be fed on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156397.jpg', 'caption': 'A flock of sheep surrounding two sheep in a raised enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156397.jpg', 'caption': 'A herd of sheep gathered in one area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173574.jpg', 'caption': 'That looks like a wall mural in the background of this photo with a lot of sheet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173574.jpg', 'caption': 'A flock of sheep who are standing a top a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173574.jpg', 'caption': 'A huge heard of sheep are all scattered together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173574.jpg', 'caption': 'There is a gathering of sheep in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173574.jpg', 'caption': 'A group of white sheep in grassy area next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236182.jpg', 'caption': 'a sidewalk with a fence, street signs, and a lot of trees along it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236182.jpg', 'caption': 'The street in the city is quiet this time of day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236182.jpg', 'caption': 'A city street in the suburbs of a city ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236182.jpg', 'caption': 'A couple of trees are growing by a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236182.jpg', 'caption': 'a sidewalk lined with trees and a lamp post', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208589.jpg', 'caption': 'A bird in a pot eating a fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208589.jpg', 'caption': 'a black bird is eating an apple in a pot of dirt', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000208589.jpg', 'caption': 'there is a black bird standing in a flower pot eating an apple', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208589.jpg', 'caption': 'A bird in a flower pot eating an apple', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208589.jpg', 'caption': 'A black bird sits in a flower boy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334405.jpg', 'caption': 'A bus travels on a road near buildings and parked vehicles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334405.jpg', 'caption': 'a bus that is parked next to a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334405.jpg', 'caption': 'An old fashioned brown retro bus riding through town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334405.jpg', 'caption': 'An historical bus makes it way down a street, with palm trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334405.jpg', 'caption': 'A travel bus on a street in a tropical town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267571.jpg', 'caption': 'a giraffe standing on a sandy beach in front of some rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267571.jpg', 'caption': 'A giraffe standing in the dirt near some rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267571.jpg', 'caption': \"Closeup of giraffe's head in front of a stone wall.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267571.jpg', 'caption': 'The giraffe stands looking forward in an enclosure with a dirt floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267571.jpg', 'caption': 'The giraffe with brown spots is standing in the enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073830.jpg', 'caption': 'A herd of giraffe standing next to each other on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073830.jpg', 'caption': 'some giraffes are walking around in some dirt and grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073830.jpg', 'caption': 'A giraffe looks towards the camera in front of other giraffes and zebras. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073830.jpg', 'caption': 'A giraffe turns away from the pack to look at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073830.jpg', 'caption': 'A group of giraffes and zebras in a wildlife exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158952.jpg', 'caption': 'A stop sign is at an intersection on Morgan Rd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158952.jpg', 'caption': 'THERE IS A STREET SIGN MORGAN RD AND STOP SIGN', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158952.jpg', 'caption': 'A close-up of the stop sign and a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158952.jpg', 'caption': 'The Morgan Rd. sign sits on the stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158952.jpg', 'caption': 'a close up of a street sign with trees and a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082258.jpg', 'caption': 'Several books are stacked on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082258.jpg', 'caption': 'A set of books sitting on top of a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082258.jpg', 'caption': 'A few books lined up beside each other on the shelf. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082258.jpg', 'caption': 'The books are stacked on the shelve on the rack ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082258.jpg', 'caption': 'A shelf with many different types of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308599.jpg', 'caption': 'Red wooden door with a stop sign requiring ID', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308599.jpg', 'caption': 'THERE IS A RED STOP SIGN ON THE DOOR ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308599.jpg', 'caption': 'An age restriction sign is posted on the red door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308599.jpg', 'caption': 'A red door has a sign that says stop you must be over 18 to enter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308599.jpg', 'caption': 'a door is closed with a sign on it glass cover ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351053.jpg', 'caption': 'A yellow taxi cab parked next to a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351053.jpg', 'caption': 'Two signs on a street pole indicating the distance and direction of a statue lion', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351053.jpg', 'caption': 'Pictorial directions using the New York City Library lions', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351053.jpg', 'caption': 'A street with taxis in the street and a street post with two signs attached that show statues of lions on the signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351053.jpg', 'caption': 'This appears to be signage for the New York Public Library.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157269.jpg', 'caption': 'several men on a street corner repairing a street sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157269.jpg', 'caption': 'Three men look at a lamp post on a street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157269.jpg', 'caption': 'There are three men standing together by a pole in the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157269.jpg', 'caption': 'a group of people at a street pole attaching a new sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157269.jpg', 'caption': 'three men work on a street light ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495612.jpg', 'caption': 'An orange pedestrian crossing sign next to a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495612.jpg', 'caption': 'In less than a mile, there is a walking trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495612.jpg', 'caption': 'A brown sign hangs on a post in a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495612.jpg', 'caption': 'An orange sign depicting a man with a stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495612.jpg', 'caption': 'a street sign attached to a post with apartment buildings in the background\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095022.jpg', 'caption': 'A bird with red eyes perched on top of a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095022.jpg', 'caption': 'A grey and white bird with red feet and eyes perches on a branch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095022.jpg', 'caption': 'a bird with a pink eye is sitting on a branch in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095022.jpg', 'caption': 'a black and white bird with red eyes sitting on a tree branch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095022.jpg', 'caption': 'A bird with red eyes and claws is perched on a branch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570045.jpg', 'caption': 'An arrow on the sign points the way to the Oil City Restaurant drive thru window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570045.jpg', 'caption': 'two black and white signs some wires and a flag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570045.jpg', 'caption': 'A one way sign is above a sign for the Oil City Restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570045.jpg', 'caption': 'A rusty drive thru sign with arrow has a one way sign attached to it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570045.jpg', 'caption': 'A restaurant sign under a one way sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191501.jpg', 'caption': 'A street sign that reads \"FRIZERIE\" in front of a red building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191501.jpg', 'caption': 'An old rusted street sign in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191501.jpg', 'caption': 'A street sign on a pole in front of a damaged building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191501.jpg', 'caption': 'a close up of a city street sign and a building in the back ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191501.jpg', 'caption': 'A white sign with the word \"frizerie\" in red writing in front of a run down building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216482.jpg', 'caption': 'A giraffe staring at the camera in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216482.jpg', 'caption': 'A giraffe stares directly into the camera lens', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216482.jpg', 'caption': 'A giraffe is standing in a grassy plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216482.jpg', 'caption': 'A giraffe standing in a large grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216482.jpg', 'caption': 'a giraffe sitting in the middle of some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358342.jpg', 'caption': 'A tall massive clock tower towering over a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358342.jpg', 'caption': 'A couple of street signs hanging on a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358342.jpg', 'caption': 'An old black and white photo of Pennsylvania Avenue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358342.jpg', 'caption': 'A large stately building is adorned with steeple and a tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358342.jpg', 'caption': 'The large ornate building with the clock tower and cupolas sits on the Pennsylvania Avenue and 11th St.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008665.jpg', 'caption': 'One bird that looks like two different ones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008665.jpg', 'caption': 'A bird with red and grey feathers on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008665.jpg', 'caption': 'The colorful bird is standing on the table outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008665.jpg', 'caption': 'A gray and red bird sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008665.jpg', 'caption': 'A woodpecker that is sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125997.jpg', 'caption': 'A big billboard is painted onto the side of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125997.jpg', 'caption': 'A large blue sign with white lettering adorns the concrete wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125997.jpg', 'caption': 'A blue sign reminds people to live life.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125997.jpg', 'caption': 'A motivational sign on a brick wall by a yellow door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125997.jpg', 'caption': 'A painting on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069911.jpg', 'caption': 'A pair of sneakers hang in the background at this street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069911.jpg', 'caption': 'A Manila Av sign below a First St. sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069911.jpg', 'caption': 'A view of someones shoes hanging on the power lines in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069911.jpg', 'caption': 'A street sign is placed under power lines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069911.jpg', 'caption': 'A street sign on a pole on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573291.jpg', 'caption': 'Two giraffes standing very close to one another in an enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573291.jpg', 'caption': 'a close up of two giraffes in a field of grass with trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573291.jpg', 'caption': 'Two zebras standing in grassy field next to rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573291.jpg', 'caption': 'A couple of giraffes are standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573291.jpg', 'caption': 'A couple of giraffe sitting in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322226.jpg', 'caption': 'A row of wooden cages with white sheets over them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322226.jpg', 'caption': 'Several wooden cages are lined up beside each other; all have white clothes covering the top of them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322226.jpg', 'caption': 'Several wooden cages with white cloth tops and sides.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322226.jpg', 'caption': 'Cages are covered with white tarps strapped to them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322226.jpg', 'caption': 'A bunch of wooden cages covered with sheets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161470.jpg', 'caption': 'a little bird taking a bath in a bird bath ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161470.jpg', 'caption': 'A bird is taking advantage of the bath.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161470.jpg', 'caption': 'A close up of a birdbath with a bird in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161470.jpg', 'caption': 'A small bird diving into a stone container of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161470.jpg', 'caption': 'A bird splashes furiously in a bird bath.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452224.jpg', 'caption': 'A small yellow bird on a branch of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452224.jpg', 'caption': 'A bird sitting on top of a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452224.jpg', 'caption': 'A bright yellow and orange bird perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452224.jpg', 'caption': 'A brightly colored bird perches on a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452224.jpg', 'caption': 'A yellow bird is sitting on a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322654.jpg', 'caption': 'there are people sitting on the ground painting the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322654.jpg', 'caption': 'A few kids playing with each other on Harlem River Drive.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322654.jpg', 'caption': 'kids sit in the street painting a divider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322654.jpg', 'caption': 'Some people sitting and painting a road divider', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322654.jpg', 'caption': 'Young people painting a mural on a traffic divider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110196.jpg', 'caption': 'a freeway traffic sign writtien in an asian language', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110196.jpg', 'caption': 'Road signs on an interstate-type highway in somewhere in Asia. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110196.jpg', 'caption': 'There are two signs in a different language.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110196.jpg', 'caption': 'A large green freeway over pass sign next to a light poll.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110196.jpg', 'caption': 'A green interstate sign in an asian country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564563.jpg', 'caption': 'A view of birds gliding through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564563.jpg', 'caption': 'Birds flying above a wide snowy mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564563.jpg', 'caption': 'Birds are flying around a photographer with one swooping rather close.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564563.jpg', 'caption': 'A black and white view of birds flying over snowy mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564563.jpg', 'caption': 'A flock of birds flying high above a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375363.jpg', 'caption': 'A pedestrian crossing sign sitting underneath a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375363.jpg', 'caption': 'A pedestrian street sign is displayed as well as a street name.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375363.jpg', 'caption': 'A pole that has a sign that indicates pedestrians cross there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375363.jpg', 'caption': 'A sign for a street above a cross walk sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375363.jpg', 'caption': 'A crosswalk sign on Bainbridge Street during the winter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093201.jpg', 'caption': 'A dog with a hat on top of his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093201.jpg', 'caption': 'A small white dog wearing a black hat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093201.jpg', 'caption': 'a white dog panting wearing a black hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093201.jpg', 'caption': 'a close up of a dog wearing a hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093201.jpg', 'caption': \"A white dog wearing a black hat with it's tongue hanging out.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155877.jpg', 'caption': 'Several goats are resting at the base of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155877.jpg', 'caption': 'Some very cute sheep gathered by a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155877.jpg', 'caption': 'an adult sheep and baby sheep next to a tree in a grass field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155877.jpg', 'caption': 'a number of sheep in a field near a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155877.jpg', 'caption': 'a adult sheep stands by a tree as some baby sheep look on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373591.jpg', 'caption': 'A bird sitting on a branch outside above rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373591.jpg', 'caption': 'A small bird standing on top of a rock near grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373591.jpg', 'caption': 'A very cute little bird standing on some rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373591.jpg', 'caption': 'A bird on a branch on the ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373591.jpg', 'caption': 'A brown bird perched on a sick in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338948.jpg', 'caption': 'A boy is jumping over a hurdle on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338948.jpg', 'caption': 'A man that has a skateboard who is jumping in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338948.jpg', 'caption': 'A person jumps a blockade with his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338948.jpg', 'caption': 'A boy jumps his skateboard over a ramp while a crowd looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338948.jpg', 'caption': 'A man crouching on a skateboard balancing on top of a wooden object with a large amount of people around him watching. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084982.jpg', 'caption': 'A red and white street sign mounted on a red pole with a pedestrian traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084982.jpg', 'caption': 'A street sign is printed in both English and foreign languages', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084982.jpg', 'caption': 'A traffice sign is shown with Asian writing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084982.jpg', 'caption': 'A red road sign, appears to be shut down below a \"Store\" sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084982.jpg', 'caption': 'A stop sign that is very red in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386146.jpg', 'caption': 'A couple of birds perched on poles sticking out of a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386146.jpg', 'caption': 'Two birds sitting on wooden posts in water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386146.jpg', 'caption': 'Two similar, small birds sit on posts in a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386146.jpg', 'caption': 'Two birds sitting on top of wood poles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386146.jpg', 'caption': 'Two birds perched on sticks on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325690.jpg', 'caption': 'A white and red traffic sign on top of a metal pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325690.jpg', 'caption': 'A street sign with an 80 in the middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325690.jpg', 'caption': 'A sign that reads \"80\" is perched on a hilltop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325690.jpg', 'caption': 'A road sign is displaying a number in front of trees and fields.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325690.jpg', 'caption': 'Sign with the number \"eighty\" set against bright blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074711.jpg', 'caption': 'Two ducks floating together on a body of water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074711.jpg', 'caption': 'Two ducks are swimming in the green colored pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074711.jpg', 'caption': 'Two Canadian geese swim in a green pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074711.jpg', 'caption': 'Two ducks swim in a pond with green water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074711.jpg', 'caption': 'Two swam swimming next to each other on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531854.jpg', 'caption': 'Two ducks are swimming outdoors in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531854.jpg', 'caption': 'A couple of ducks floating on top of a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531854.jpg', 'caption': 'Two ducks swimming alongside each other in a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531854.jpg', 'caption': 'A couple of geese wading in some pond water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531854.jpg', 'caption': 'a pond with two ducks laying in the water and looking at each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015113.jpg', 'caption': 'A bird that is on a tree limb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015113.jpg', 'caption': 'A bird with blue feathers in a tree at the zoo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015113.jpg', 'caption': 'A bird in a tree in a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015113.jpg', 'caption': 'BEAUTIFUL UNUSUAL BIRD INSIDE OF A BIRD SANTUARY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015113.jpg', 'caption': 'a white headed bird perched in a tree in an enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388325.jpg', 'caption': 'A tall two story gray house sitting in front of a street sign that readsd Nirvana Dr.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388325.jpg', 'caption': 'A street scene focused on a pole with a street name sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388325.jpg', 'caption': 'A street sign is placed in front of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388325.jpg', 'caption': 'The large grey house sits on Nirvana Road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388325.jpg', 'caption': 'A sign that reads \"Nirvana Drive\" sits atop a sign that reads \"Dead End\". ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197461.jpg', 'caption': 'a ram is looking at the camera and standing on some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197461.jpg', 'caption': 'A large sheep bends his head towards some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197461.jpg', 'caption': 'A very large sheep is standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197461.jpg', 'caption': 'A sheep looks at the camera, by the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197461.jpg', 'caption': 'A woolly sheep stands in the grass looking at the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144053.jpg', 'caption': 'A street sign that reads broadway on a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144053.jpg', 'caption': 'The sign for Broadway Street stands in front of an advertisement board in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144053.jpg', 'caption': 'The street sign at the intersection of Broadway and 7th avenue is the star of this picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144053.jpg', 'caption': 'street signs at a busy intersection with surveillance', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144053.jpg', 'caption': 'An intersection has a NYPD security camera sign on a post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075083.jpg', 'caption': 'a close up of street signs with buildings in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075083.jpg', 'caption': 'A Pole with a bunch of different street signs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075083.jpg', 'caption': 'A street sign for Broadway has several other signs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075083.jpg', 'caption': 'A street sign marking the corner of Broadway and Broome. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075083.jpg', 'caption': 'A traffic light with lots of street signs mounted to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271032.jpg', 'caption': 'A group of birds are sitting at the edge of the river. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271032.jpg', 'caption': 'Birds standing on rocks, overlooking a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271032.jpg', 'caption': 'A huge flock of birds standing on a rocky cliff over looking a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271032.jpg', 'caption': 'There are many birds in and next to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271032.jpg', 'caption': 'Birds are flocked on a rocky area by a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098416.jpg', 'caption': 'Sheep in field by barn with fence and car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098416.jpg', 'caption': 'Numerous sheep graze and interact with one another on a large field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098416.jpg', 'caption': 'some black and white sheep are grazing on green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098416.jpg', 'caption': 'A group of sheep standing on a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098416.jpg', 'caption': 'A bunch of sheep graze in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078522.jpg', 'caption': 'A sheep standing in the middle of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078522.jpg', 'caption': 'A white sheep standing in a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078522.jpg', 'caption': 'a few black face sheep scattered in a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078522.jpg', 'caption': 'A sheep stares as several other sheep graze in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078522.jpg', 'caption': 'Sheep staring, laying and grazing in the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026767.jpg', 'caption': 'A street sign showing they are making improvements', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026767.jpg', 'caption': 'Sign explaining street and landscape improvements on a tree-lined street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026767.jpg', 'caption': 'A street sign above sidewalk with trees and cones around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026767.jpg', 'caption': 'A sign is indicating there is landscaping going on here. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026767.jpg', 'caption': 'Blue and white street sign next to an open park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327807.jpg', 'caption': 'A small group of people standing outside of a train next to small shops selling fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327807.jpg', 'caption': 'A woman in a dress standing next to a blue and white train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327807.jpg', 'caption': 'A woman poses for a picture next to a train and a fruit stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327807.jpg', 'caption': 'Women and men walking along a blue passenger train on a stone walkway. near an outdoor food market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327807.jpg', 'caption': 'A woman posing by a train with several small food stands nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134778.jpg', 'caption': 'Birds with long legs walking in the water near a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134778.jpg', 'caption': 'Flamingos are walking on the shore of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134778.jpg', 'caption': 'a number of birds on a shallow body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134778.jpg', 'caption': 'A group of seagulls foraging for food near the beach\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134778.jpg', 'caption': 'Several flamingos drinking from a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518586.jpg', 'caption': 'A train drives along railroad tracks while a person walks between the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518586.jpg', 'caption': 'a person is walking along a path with trains near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518586.jpg', 'caption': 'A train traveling through a train yard next to a light pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518586.jpg', 'caption': 'An old picture of a train coming down the tracks with a person standing nearby.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518586.jpg', 'caption': 'A black and white photo of a train driving.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065227.jpg', 'caption': 'Girl wearing Girl Scouts uniform holding an object in her hand near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065227.jpg', 'caption': 'A girl in a scout uniform playing with a toy by a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065227.jpg', 'caption': 'Girl dressed in a scouting uniform standing near a fence with her foot on a small cannon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065227.jpg', 'caption': 'A girl dressed in a girl scout uniform next to a white fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065227.jpg', 'caption': 'The girl is wearing a girl scout uniform and firing a tiny cannon between the fenceposts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049633.jpg', 'caption': 'a white bird sitting on a grassy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049633.jpg', 'caption': 'A large bird sitting on top of a green hedge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049633.jpg', 'caption': 'A white bird on a grass hill with park behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049633.jpg', 'caption': 'The bird stands on a hill near a large park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049633.jpg', 'caption': 'An angry bird is standing in front of the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476597.jpg', 'caption': 'Two men are talking to each other near a fish tank. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476597.jpg', 'caption': 'Some people standing together in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476597.jpg', 'caption': 'A group of people standing next to each other in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476597.jpg', 'caption': 'Two guys and a girl standing near the bookshelf having a conversation by the fish tank', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476597.jpg', 'caption': 'These three people are dressed up in costumes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165029.jpg', 'caption': 'A man with a snowboard next to a man with a mask.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165029.jpg', 'caption': 'Man with snowboard standing next to another wearing a mask and crazy hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165029.jpg', 'caption': 'A man holding a snowboard next to a man in scary costume.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165029.jpg', 'caption': 'A man wearing a mask with a sbowboarder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165029.jpg', 'caption': 'Snowboarder holding a pink board being hugged by man in costume. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129699.jpg', 'caption': 'Upward view of street sign and traffic light in front of office building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129699.jpg', 'caption': 'A very tall building next to a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129699.jpg', 'caption': 'An intersection with a One Way sign, traffic lights, a street sign and a large building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129699.jpg', 'caption': 'a sign on a post in a city with a building in the background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129699.jpg', 'caption': 'A city street sign in front of a very big building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117125.jpg', 'caption': 'The train is rounding the bend of a track on the mountain side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117125.jpg', 'caption': 'A train in the snowy wilderness going around a curve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117125.jpg', 'caption': 'A passenger train is moving around a mountain bend.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117125.jpg', 'caption': 'a train on a track near many trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117125.jpg', 'caption': 'A train on the side of a snowy mountain side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007211.jpg', 'caption': 'A train car with blue graffiti on the side of it .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007211.jpg', 'caption': 'an image of a train with graffiti on the side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007211.jpg', 'caption': 'Old weathered red train boxcar with blue spray painted graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007211.jpg', 'caption': 'A red train car that has graffiti on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007211.jpg', 'caption': 'A train has been decorated with colorful, elaborate art work.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356298.jpg', 'caption': 'a train cart is near a white tank', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356298.jpg', 'caption': 'A freight train traveling past a propane tank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356298.jpg', 'caption': 'A graffiti marked train car passes by a gas tank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356298.jpg', 'caption': 'A building with a propane tank out front ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356298.jpg', 'caption': 'A large white tank sitting on top of a green lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129942.jpg', 'caption': 'Blue and orange large birds on tree with metal pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129942.jpg', 'caption': 'There are two tropical birds sitting on a branch with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129942.jpg', 'caption': 'an image of a bird that is perched next to another bird', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129942.jpg', 'caption': 'Two parrots on a tree next to a metal pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129942.jpg', 'caption': 'Two parrots perched on a log near a watering tin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520433.jpg', 'caption': 'A train with graffiti moves along the railroad tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520433.jpg', 'caption': 'A train car with some graffiti on it on the track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520433.jpg', 'caption': 'A freight train with graffiti on the side of a box car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520433.jpg', 'caption': 'A train, the last car of which has been covered with graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520433.jpg', 'caption': 'a very long train on a old train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183666.jpg', 'caption': 'Red and blue train sits along the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183666.jpg', 'caption': 'A grain pulling three passenger cars down tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183666.jpg', 'caption': 'an image of a blue and orange train on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183666.jpg', 'caption': 'A train is making its way past a boarding area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183666.jpg', 'caption': 'A short train speeds past the empty station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426175.jpg', 'caption': 'a man standing next to a red train near a train track ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426175.jpg', 'caption': 'A cute train planter set is seen outside of a real train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426175.jpg', 'caption': 'A man with a backpack next to a train and a flower bed train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426175.jpg', 'caption': 'a man walks in between an old train and 3 planter boxes in the shape of a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426175.jpg', 'caption': 'A man wearing a backpack walking along side of a stopped train with train planters with plants in them ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336777.jpg', 'caption': 'Many different signs cover a post next to a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336777.jpg', 'caption': 'A bus stop with advertising signs attached to a pole nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336777.jpg', 'caption': 'Street signs clutter a pole on an empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336777.jpg', 'caption': 'A street signs and board at a road junction near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336777.jpg', 'caption': 'Many posters are placed on the pole across the street from houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249720.jpg', 'caption': 'Woman out running errands on her bicycle in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249720.jpg', 'caption': 'She is riding on her bike on the street around the stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249720.jpg', 'caption': 'A woman is wearing a pink helmet and riding her bike through the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249720.jpg', 'caption': 'A girl riding on a bike in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249720.jpg', 'caption': 'A person on a bike on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409009.jpg', 'caption': 'High speed train stopped at the train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409009.jpg', 'caption': 'A train is shown next to a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409009.jpg', 'caption': 'A train parked in a building with glass windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409009.jpg', 'caption': 'A passenger train that is pulling into a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409009.jpg', 'caption': 'A train is arriving at the station for passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554348.jpg', 'caption': 'a woman is standing on a set of train tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554348.jpg', 'caption': 'A woman photographs a blue railroad car as it peeks out of a tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554348.jpg', 'caption': 'A woman takes a picture of a train on a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554348.jpg', 'caption': 'A woman on railroad tracks watching a train in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554348.jpg', 'caption': 'A woman takes a picture of a blue train going into a tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329486.jpg', 'caption': 'A passenger train crossing a bridge by the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329486.jpg', 'caption': 'A red and blue train on a bridge during a cloudy day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329486.jpg', 'caption': 'a train crossing a tressle near a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329486.jpg', 'caption': 'A red and blue train driving over a train overpass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329486.jpg', 'caption': 'Red train pulling four blue train cars behind it over a bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231163.jpg', 'caption': 'Train stopped at a depot with people milling about.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231163.jpg', 'caption': 'Passengers boarding a blue train at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231163.jpg', 'caption': 'A train parked at an outdoor train terminal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231163.jpg', 'caption': 'A man taking a photograph of a commuter train at an outdoor station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231163.jpg', 'caption': 'The people are waiting at the train station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463633.jpg', 'caption': 'A red stop sign sitting in the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463633.jpg', 'caption': 'Humorous graffiti is pictured on a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463633.jpg', 'caption': 'A stop sign with graffiti about the Red Sox', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463633.jpg', 'caption': 'Graffiti on a stop sign supporting the red sox', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463633.jpg', 'caption': 'A stop sign with words written on it with a black marker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383470.jpg', 'caption': 'A freshly plowed street is a winter wonderland.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383470.jpg', 'caption': 'a stop sign with lots of snow on the ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383470.jpg', 'caption': 'A red stop sign sits in the snow along suburban streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383470.jpg', 'caption': 'A stop sign stands along a snow filled street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383470.jpg', 'caption': 'A snow covered but recently plowed street in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578292.jpg', 'caption': 'A little boy is holding on to a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578292.jpg', 'caption': 'A little boy standing under a red stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578292.jpg', 'caption': 'A young boy clings to a public stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578292.jpg', 'caption': 'A KID HOLDING A SIGN BOARD IN A STREET.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578292.jpg', 'caption': 'a small kid holding on to a stop sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075748.jpg', 'caption': 'A train on some train tracks near some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075748.jpg', 'caption': 'A blue commuter train traveling through a rural countryside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075748.jpg', 'caption': 'a blue passenger train on a track next to a large bush ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075748.jpg', 'caption': 'Four train carts on a set of tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075748.jpg', 'caption': 'a train on a train track with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522778.jpg', 'caption': 'A woman videos a man cutting the cement around a street pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522778.jpg', 'caption': 'A construction worker using a jack hammer next to a woman holding a camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522778.jpg', 'caption': 'a man is working near a parking meter outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522778.jpg', 'caption': 'A man is operating a jackhammer near a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522778.jpg', 'caption': 'A man with a jack hammer on the sidewalk next to a parking meter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365366.jpg', 'caption': 'A blond woman kneeling in front of a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365366.jpg', 'caption': 'Woman knitting a sweater on to a parking meter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365366.jpg', 'caption': 'A woman that is sitting near a coin meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365366.jpg', 'caption': 'Woman paying at a parking meter next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365366.jpg', 'caption': 'a woman at a parkign meter pays her bil', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046743.jpg', 'caption': 'A woman sitting next to a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046743.jpg', 'caption': 'a person siting on the ground and decorating a parking meter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046743.jpg', 'caption': 'A woman is sitting on the curb with a decorated parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046743.jpg', 'caption': 'a lady sitting on a sidewalk by a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046743.jpg', 'caption': 'a woman sits in front of a parking meter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554114.jpg', 'caption': 'A woman kneeling down in front of a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554114.jpg', 'caption': 'A woman decorating a parking meter with fake flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554114.jpg', 'caption': 'a woman is designing a pole with art', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554114.jpg', 'caption': 'A woman is putting a decoration on a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554114.jpg', 'caption': 'a woman wrapping a parking meter with some designs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052644.jpg', 'caption': 'Parking meters are lined up on an empty lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052644.jpg', 'caption': 'Parking meters in an empty parking lot surrounded by sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052644.jpg', 'caption': 'A close up of a parking meter in an empty parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052644.jpg', 'caption': 'Parking meters sitting on yellow posts by the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052644.jpg', 'caption': 'Rows of black parking meters on street next to sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269394.jpg', 'caption': 'Two parking meter that accept credit and debit cards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269394.jpg', 'caption': 'Two parking meters standing on a sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269394.jpg', 'caption': 'these are two parking meters on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269394.jpg', 'caption': 'Two silver parking meters sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269394.jpg', 'caption': 'Two parking meters on the curb, one with some time remaining.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117407.jpg', 'caption': 'This cat is sitting on a porch near a tire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117407.jpg', 'caption': 'A cat with large eyes sitting on the side of the dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117407.jpg', 'caption': 'A small cat is sitting on the wooden beam.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117407.jpg', 'caption': 'A brown striped cat looks at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117407.jpg', 'caption': 'A brown and white cat standing on wooden ledge ned to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183757.jpg', 'caption': 'A cat sitting on top of a red boat next to two dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183757.jpg', 'caption': 'A white cat sits on a large red object by a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183757.jpg', 'caption': 'A cat and two dogs rest by a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183757.jpg', 'caption': 'Two dogs and a cat on a boat at edge of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183757.jpg', 'caption': 'a cat and some dogs sunbathing by the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437609.jpg', 'caption': 'A woman milks a cow in the grass with another cow and dog nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437609.jpg', 'caption': 'A woman is milking a cow near other animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437609.jpg', 'caption': 'Woman sitting down and eventually milking a brown Cow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437609.jpg', 'caption': 'A black cow standing in the middle of a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437609.jpg', 'caption': 'Authentic old looking photo of a woman milking some cattle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434494.jpg', 'caption': 'A bulldozer and fresh asphalt next to various people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434494.jpg', 'caption': 'Some men working with a machine paving a new street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434494.jpg', 'caption': 'Men in yellow safety vests stand near a yellow truck and a white truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434494.jpg', 'caption': 'There is a dump truck and pay loader and construction workers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434494.jpg', 'caption': 'A couple of men on a road by a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191738.jpg', 'caption': 'a cat lays down on a stuffed animal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191738.jpg', 'caption': 'A cat sitting in a chair that looks like an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191738.jpg', 'caption': 'A cat sitting on top of a stuffed animal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191738.jpg', 'caption': 'A spoiled cat is sitting on his own personal chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191738.jpg', 'caption': 'a fat cat sits on a stuffed animal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542510.jpg', 'caption': 'Hauling items in a wagon is a lot easier than carrying them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542510.jpg', 'caption': 'a man is walking while pulling a wagon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542510.jpg', 'caption': 'A man towing a wooden wagon down a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542510.jpg', 'caption': 'A man in a funny hat pulling a wagon in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542510.jpg', 'caption': 'A man pulling a wagon through a field with cars in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171500.jpg', 'caption': 'Commercial logging transport truck on dirt road near forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171500.jpg', 'caption': 'A truck that is sitting on a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171500.jpg', 'caption': 'A truck traveling down a road with a pile of logs in the back of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171500.jpg', 'caption': 'A large truck travelling on a dirt road near trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171500.jpg', 'caption': 'A semi-truck loaded with logs driving down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146411.jpg', 'caption': 'A cat on the ground with a shoe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146411.jpg', 'caption': 'A kitten plays with the shoe laces on a pair of blue shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146411.jpg', 'caption': 'a kitten playing with a shoelace on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146411.jpg', 'caption': 'A grey tabby kitten playing with navy blue shoe strings on a shoe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146411.jpg', 'caption': 'A gray tiger cat walking across a brick floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205103.jpg', 'caption': 'A cute kitten playing with strings on a shoe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205103.jpg', 'caption': 'A cat sitting on a floor next to a pair of shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205103.jpg', 'caption': 'a cat sitting with shoes on a bed playing with the strings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205103.jpg', 'caption': 'a small kitten on the floor looking up while standing near some stuff', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205103.jpg', 'caption': 'A cat that is looking up while sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472795.jpg', 'caption': 'A cow standing near a curb in front of a store. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472795.jpg', 'caption': 'There is a cow on the sidewalk standing in front of a door. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472795.jpg', 'caption': 'A cow on the sidewalk on a corner in front of a store ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472795.jpg', 'caption': 'Cow standing on sidewalk in city area near shops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472795.jpg', 'caption': 'A cow on a city sidewalk in front of a business.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235006.jpg', 'caption': 'An orange truck driving next to a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235006.jpg', 'caption': 'An old red fire truck is parked on gravel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235006.jpg', 'caption': 'An antique red fire engine is parked on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235006.jpg', 'caption': 'An old fashion fire truck is parked on dirt and grass beside some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235006.jpg', 'caption': 'A rusted, classic fire truck parked in front of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182784.jpg', 'caption': 'The animal is standing by the booth at the event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182784.jpg', 'caption': 'A brown cow standing next to a store with lots of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182784.jpg', 'caption': 'A cow is standing in front of a shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182784.jpg', 'caption': 'A bull standing in front of a street vendor .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182784.jpg', 'caption': 'a brown and white ox a motorcycle and a shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054088.jpg', 'caption': 'a tow truck pulling a white card down the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054088.jpg', 'caption': 'A red and white tow truck tows a white car down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054088.jpg', 'caption': 'A tow truck towing a car down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054088.jpg', 'caption': 'the tow truck is pulling a care down the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054088.jpg', 'caption': 'A white vehicle being towed by a white and orange tow truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324383.jpg', 'caption': 'Cat laying in luggage on bed with white walls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324383.jpg', 'caption': 'A cat laying down in a open suitcase on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324383.jpg', 'caption': 'A cat uses the suitcase as its bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324383.jpg', 'caption': 'A cat is all set to travel with their owner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324383.jpg', 'caption': 'An orange and white cat sits inside a black suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224861.jpg', 'caption': 'A orange and white cat sitting inside of a piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224861.jpg', 'caption': 'A cat sitting amongst books and clothing in a suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224861.jpg', 'caption': 'The cat is laying on the clothes in the suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224861.jpg', 'caption': 'A cat is laying on top of a small suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224861.jpg', 'caption': 'A cat sitting on items inside of an open suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319865.jpg', 'caption': 'A brown and white cat is in a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319865.jpg', 'caption': 'A cat is sleeping in a suitcase with folded clothing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319865.jpg', 'caption': 'A cat sitting inside a small, packed suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319865.jpg', 'caption': 'A furry cat sleeping inside a packed suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319865.jpg', 'caption': 'The cat is laying in the packed suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353968.jpg', 'caption': 'A girl on a couch with a laptop, and a cat beside her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353968.jpg', 'caption': 'A large cat sits on the sofa arm next to a girl using a computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353968.jpg', 'caption': 'A young girl is sitting on a brown couch with a black laptop in her lap and a black and white cat by her side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353968.jpg', 'caption': 'a woman sits on her computer with a sad expression ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353968.jpg', 'caption': 'Young woman sitting with laptop computer with cat right next to her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458052.jpg', 'caption': 'a cat that is eating some kind of banana', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458052.jpg', 'caption': 'A person feeding a cat with a banana', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458052.jpg', 'caption': 'A house cat is taking a bite from a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458052.jpg', 'caption': \"A cat eating a banana from someone's hand \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458052.jpg', 'caption': 'A cat feeding on a banana with a person feeding it to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309852.jpg', 'caption': 'A cat is looking at the camera while lying down on the chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309852.jpg', 'caption': 'A cat sits on red chair and looks under a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309852.jpg', 'caption': 'a gray cat with yellow eyes stares at the camera from her perch on a chair under a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309852.jpg', 'caption': 'A cat lying on a chair underneath a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309852.jpg', 'caption': 'A cat sitting on top of a wooden chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480076.jpg', 'caption': 'A gray chair and a black chair sit in a room near a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480076.jpg', 'caption': 'A cat peek from between two sofa chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480076.jpg', 'caption': 'Cat sitting on a maroon couch behind a coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480076.jpg', 'caption': 'A large recliner sitting next to a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480076.jpg', 'caption': 'A cat is sitting in a recliner chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026942.jpg', 'caption': 'A gray tiger cat sitting at a wooden table on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026942.jpg', 'caption': 'A grey cat sitting in chair next to a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026942.jpg', 'caption': 'A cat sitting in a chair pulled up to a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026942.jpg', 'caption': 'A cat sitting in a chair at a table with a book on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026942.jpg', 'caption': 'A cat sitting in a chair by a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346207.jpg', 'caption': 'A cat is laying on a desk full of computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346207.jpg', 'caption': 'An open laptop and a computer on a table with a cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346207.jpg', 'caption': 'A cat laying on top of a wooden desk under computer monitors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346207.jpg', 'caption': 'A cat that is laying down in front of a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346207.jpg', 'caption': 'Cat sitting on a computer desk with two computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190767.jpg', 'caption': 'There are four cows eating grass in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190767.jpg', 'caption': 'A field with three cows grazing in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190767.jpg', 'caption': 'a group of cows grazing along a grassy horizon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190767.jpg', 'caption': 'Cows are eating the grass from the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190767.jpg', 'caption': 'A herd of cows grazes in the grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490081.jpg', 'caption': 'Two white horses pulling a man on a wagon down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490081.jpg', 'caption': 'Man rides on the back of a wooden cart being pulled by two cows. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490081.jpg', 'caption': 'Two ox are pulling a man on a cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490081.jpg', 'caption': 'A man in a wooden ox cart is being pulled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490081.jpg', 'caption': 'a person riding a carriage being pulled by bulls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571034.jpg', 'caption': 'A herd of cattle sitting next to each other on a pile of dry grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571034.jpg', 'caption': 'Four cows are sitting calmly in a lot of hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571034.jpg', 'caption': 'Cows lying in hay, inside a building at a fair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571034.jpg', 'caption': 'Three cows sitting in piles of hay at a stable.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571034.jpg', 'caption': 'Cows lie in hay near stalls at a fair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372979.jpg', 'caption': 'A cat sitting on top of a window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372979.jpg', 'caption': 'A cat is sitting in a window looking in the house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372979.jpg', 'caption': 'The cat is curious about the people in the room,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372979.jpg', 'caption': 'A brown and white cat sitting on a window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372979.jpg', 'caption': 'A cat sitting on a window sill near a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384204.jpg', 'caption': 'A cat sitting on top of a window sill near a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384204.jpg', 'caption': 'A cat that is lying on a window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384204.jpg', 'caption': 'A cat is sitting on the window ledge in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384204.jpg', 'caption': 'There is a large adult cat sitting on a window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384204.jpg', 'caption': 'A very cute cat sitting in a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089668.jpg', 'caption': 'A bunch of cows grazing in a dry field together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089668.jpg', 'caption': 'Cows wandering in a dry grass filled meadow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089668.jpg', 'caption': 'Brown and black cows in grassy field with trees in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089668.jpg', 'caption': 'Black and brown cows are grazing in tall grass.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000247285.jpg', 'caption': 'A woman holds her baby while a man covers them with an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247285.jpg', 'caption': 'A byoung couple holds a baby under a striped umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247285.jpg', 'caption': 'Man and woman carrying an infant under a large sun umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247285.jpg', 'caption': 'A family is standing under and umbrella with their small child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314154.jpg', 'caption': 'A young girl is smiling while holding a luggage bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314154.jpg', 'caption': \"The jacket doesn't really need to match the luggage.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314154.jpg', 'caption': 'A small Asian girl holding a rolling suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314154.jpg', 'caption': 'A little girl carrying a piece of blue and green luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314154.jpg', 'caption': 'A young girl smiling as she holds the handle of her suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579815.jpg', 'caption': 'A man with glasses holding up a broken umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579815.jpg', 'caption': 'A man holding an open umbrella near tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579815.jpg', 'caption': 'A man holding a black umbrella outside of a hotel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579815.jpg', 'caption': 'an image of a man that is holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579815.jpg', 'caption': 'A person is standing in front of a hotel holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042069.jpg', 'caption': 'A person wrestles with an inside-out umbrella on a roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042069.jpg', 'caption': 'A man sitting on top of a roof with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042069.jpg', 'caption': 'an umbrella is put on the roof of a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042069.jpg', 'caption': 'a person sitting on the roof of their house holding onto an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042069.jpg', 'caption': 'A man sits on a roof above his deck adjusting an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511136.jpg', 'caption': 'A man placing a beach umbrella on top of his roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511136.jpg', 'caption': 'A man is on his roof with a large umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511136.jpg', 'caption': 'This picture is too dark to see anything', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511136.jpg', 'caption': 'man on a house setting up an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511136.jpg', 'caption': 'A person is sitting on a house roof with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341393.jpg', 'caption': 'A golden retriever laying down on the side of a pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341393.jpg', 'caption': 'A large brown dog laying next to a blue pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341393.jpg', 'caption': 'A golden retriever sleeps at the edge of the pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341393.jpg', 'caption': 'A swimming pool in a yard that has a cinderblock wall all the way around it and a dog sitting at the edge of the pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341393.jpg', 'caption': 'A dog laying down next to a pool in a backyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299319.jpg', 'caption': 'Two women walking side by side holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299319.jpg', 'caption': 'an image of two girls walking with umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299319.jpg', 'caption': 'Two girls are each carrying an umbrella walking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299319.jpg', 'caption': 'Two young girls walking in front of a building, holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299319.jpg', 'caption': 'A couple of kids walking with umbrellas in their hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185768.jpg', 'caption': 'A Daily Mirror featuring stories on celebrity stuffed animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185768.jpg', 'caption': 'A man in a safety jacket stands next to a large stuffed bear like creature.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185768.jpg', 'caption': 'A tabloid magazine with a stuffed bear in handcuffs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185768.jpg', 'caption': 'You can always rely on this newspaper to print the latest gossip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185768.jpg', 'caption': 'A newspaper with cartoon characters on the cover. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139530.jpg', 'caption': 'A group of men standing around a pile of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139530.jpg', 'caption': 'Multiple men looking at a stack of luggage at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139530.jpg', 'caption': 'Three men claiming their baggage at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139530.jpg', 'caption': 'Men look at airline baggage at airport terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139530.jpg', 'caption': 'Men stare at suitcases in the floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504142.jpg', 'caption': 'Black and white puppy snuggled between a blanket and a pillow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504142.jpg', 'caption': 'A black and white dog sleeping under a brown pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504142.jpg', 'caption': 'A dog laying on a bed with a pillow on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504142.jpg', 'caption': 'A dog laying on top of a bed with large brown cushions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504142.jpg', 'caption': 'A small dog laying in a bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288955.jpg', 'caption': 'Shaggy dog gets dinner served on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288955.jpg', 'caption': 'A small black dog standing over a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288955.jpg', 'caption': 'A small dog eating a plate of broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288955.jpg', 'caption': 'A black dog being given broccoli to eat.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288955.jpg', 'caption': 'There is a dog staring at a plate of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407368.jpg', 'caption': 'A picture of a polar bear resting on a rock in his exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407368.jpg', 'caption': 'Polar bear in a styled enclosure at a city zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407368.jpg', 'caption': 'Polar bear on rock near water in city zoo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407368.jpg', 'caption': 'A polar bear lays on a rock in the distance. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407368.jpg', 'caption': 'The bear is sitting in an enclosure area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553162.jpg', 'caption': 'Brown bear walking on a path in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553162.jpg', 'caption': 'The brown bear is standing on a trail in the woods. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553162.jpg', 'caption': 'A brown bear walking through a forest near bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553162.jpg', 'caption': 'A bear walking on all fours in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553162.jpg', 'caption': 'A small brown colored bear on a path in a wooded area with trees and grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515779.jpg', 'caption': 'A child smiles while holding a luggage rack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515779.jpg', 'caption': 'A little boy stands by a stack of suit cases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515779.jpg', 'caption': 'A boy with several backpacks and some luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515779.jpg', 'caption': 'A boy behind a large stack of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515779.jpg', 'caption': 'A young man with a shopping cart filled with backpacks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262986.jpg', 'caption': 'a bear sitting on a rock with a river running through it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262986.jpg', 'caption': 'A large black bear walking on top of a rock covered river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262986.jpg', 'caption': 'the bear is hunting for salmon in the river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262986.jpg', 'caption': 'A black bear looking back while on some stream rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262986.jpg', 'caption': 'The wet black bear is standing on rocks in the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077187.jpg', 'caption': 'A brown bear standing next to a tall brown tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077187.jpg', 'caption': 'A brown bear standing next to a large tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077187.jpg', 'caption': 'There is a brown bear walking through the woods alone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077187.jpg', 'caption': 'a bear is walking by a branch in some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077187.jpg', 'caption': 'Three bears in the forest near redwoods and fallen trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156416.jpg', 'caption': 'Three people wade waist-deep in the ocean while playing Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156416.jpg', 'caption': 'Three people in a crystal blue ocean during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156416.jpg', 'caption': 'Two men and a women are in the water at the beach while playing Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156416.jpg', 'caption': 'Three people in the ocean throwing a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156416.jpg', 'caption': 'A group of people toss a disc around in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479057.jpg', 'caption': 'A largge polar bear smelling the grass looking for food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479057.jpg', 'caption': 'A polar bear grazing in a vibrant green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479057.jpg', 'caption': 'a big bear stands on some green grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479057.jpg', 'caption': 'a light colored bear in a grassy field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479057.jpg', 'caption': 'An animal is standing in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563964.jpg', 'caption': 'A man throwing a frisbee in front of a sign point in the direction of the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563964.jpg', 'caption': 'A man holding a frisbee near a toilet sign while looking back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563964.jpg', 'caption': 'A man in the middle of throwing a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563964.jpg', 'caption': 'A man in blue shirt holding a frisbee in front of various direction signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563964.jpg', 'caption': 'A man in blue has a white frisbee by signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103579.jpg', 'caption': 'A woman throwing a frisbee as a child looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103579.jpg', 'caption': 'A woman and girl in park playing with frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103579.jpg', 'caption': 'A woman and child playing frisbee in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103579.jpg', 'caption': 'A person on a field throwing a Frisbee by a kid.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103579.jpg', 'caption': 'A woman and a little girl playing with a Frisbee in the sun on a green lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236189.jpg', 'caption': 'An adult woman playing a game of frisbee with a little girl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236189.jpg', 'caption': 'A young child holding a frisbee and posing in a throwing motion with a woman across from her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236189.jpg', 'caption': 'A child getting ready to throw a frisbee to an adult.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236189.jpg', 'caption': 'There is a picture of an outside area.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236189.jpg', 'caption': 'There is a little girl throwing a frisbee with a woman', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240028.jpg', 'caption': 'A guy wearing a white shirt holds up a white frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240028.jpg', 'caption': 'there is a man not wearing shoes playing frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240028.jpg', 'caption': 'A man holding a white frisbee on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240028.jpg', 'caption': 'A guy playing with a disc in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240028.jpg', 'caption': 'A man with no shoes on catching a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062060.jpg', 'caption': 'Some people stand together near a lake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062060.jpg', 'caption': 'A picture of some people playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062060.jpg', 'caption': 'Five people stand on a shoreline, with woods in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062060.jpg', 'caption': 'A group of kids are standing in a circular fashion to play catch beside a waterfront.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062060.jpg', 'caption': 'The friends are on the beach at an early hour.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438723.jpg', 'caption': 'A woman laying in a bunch of purses and shoes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438723.jpg', 'caption': 'A young woman lays on a pile of clothes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438723.jpg', 'caption': 'A woman lying down on a pile of clothes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438723.jpg', 'caption': 'A woman in a black dress lies among purses and shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438723.jpg', 'caption': 'A woman with red hair and a black dress sprawls on cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386500.jpg', 'caption': 'A dog that is laying down on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386500.jpg', 'caption': 'A dog lying on a couch under a white blanket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386500.jpg', 'caption': 'The white dog is sleeping peacefully on the sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386500.jpg', 'caption': 'A dog is sleeping on pillows on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386500.jpg', 'caption': 'a dog lays down on some pillows with a blanket ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324937.jpg', 'caption': 'A dog is laying down on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324937.jpg', 'caption': 'A dog that was asleep on a couch is being bothered by the photographer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324937.jpg', 'caption': 'A dog laying on top of a couch looking sleepy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324937.jpg', 'caption': 'A dog that is laying down on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324937.jpg', 'caption': 'Brown and white dog laying down on a brown couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557556.jpg', 'caption': 'A woman catching a frisbee on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557556.jpg', 'caption': 'a person is holding a flying disk outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557556.jpg', 'caption': 'a female in a white top a frisbee and a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557556.jpg', 'caption': 'A woman catches a Frisbee while getting some sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557556.jpg', 'caption': 'The woman with the white towel on her head head is holding a frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426578.jpg', 'caption': 'A person on the beach next to the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426578.jpg', 'caption': 'there is a man that is running in the sand on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426578.jpg', 'caption': 'A man in a wetsuit running on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426578.jpg', 'caption': 'A person is running on a clear, flat beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426578.jpg', 'caption': 'A person running a long a beach when it is almost empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278506.jpg', 'caption': 'A crowded beach with people playing frisbee ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278506.jpg', 'caption': 'A group of people standing on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278506.jpg', 'caption': 'Two guys are jumping to catch a frisbee on a crowded beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278506.jpg', 'caption': 'People playing on a beach with dozens of others around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278506.jpg', 'caption': 'A group of people at the beach playing frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501762.jpg', 'caption': 'A man on a beach holding a frisbee at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501762.jpg', 'caption': 'A guy playing frisbee at the beach at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501762.jpg', 'caption': 'A person standing in the sand holding a Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501762.jpg', 'caption': 'a man on a beach holding a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501762.jpg', 'caption': 'A young man standing on a beach holding an orange Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370423.jpg', 'caption': 'A white and gray dog sits on a bed near a pile of rumpled sheets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370423.jpg', 'caption': 'A gray and white dog sitting on a white mattress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370423.jpg', 'caption': 'A terrier sits on a messy bed in front of the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370423.jpg', 'caption': 'A dog is sitting on a white sheeted bed while blankets lay frumpled alongside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370423.jpg', 'caption': 'A dog that is sitting on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406932.jpg', 'caption': 'A dog hanging out of a side window on a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406932.jpg', 'caption': 'Dog looking out car window as reflected in side view mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406932.jpg', 'caption': 'A dog with his head out of the window and tongue hanging as seen in a car mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406932.jpg', 'caption': 'a dog look through a cars window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406932.jpg', 'caption': \"A dog's reflection in a car door mirror.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293554.jpg', 'caption': 'Woman outside playing a game of frisbee with a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293554.jpg', 'caption': 'a woman is playing frisbee with her dog ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293554.jpg', 'caption': 'A female plays frisbee with a dog near a campstove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293554.jpg', 'caption': 'A woman and her dog play Frisbee at a campsite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293554.jpg', 'caption': 'A woman going to get an orange frisbee from a gray dog at a barbecue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018149.jpg', 'caption': 'A dog in a cage looking out of the cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018149.jpg', 'caption': 'A dog sitting looking through a grate out a window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018149.jpg', 'caption': 'a dog standing behind a fenced off window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018149.jpg', 'caption': 'A dog that is looking out a window with bars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018149.jpg', 'caption': 'a black and brown dog sitting in a window sill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289423.jpg', 'caption': 'Two younger people playing a game of frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289423.jpg', 'caption': 'A couple of people on a beach with a flying Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289423.jpg', 'caption': 'A boy and a girl are running to catch a Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289423.jpg', 'caption': 'A man and a women who are running toward a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289423.jpg', 'caption': 'The two teens are on the sand dune, racing to catch the frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155743.jpg', 'caption': 'A zebra in captivity grazing in its exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155743.jpg', 'caption': 'The zebra is eating grass in his habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155743.jpg', 'caption': 'A zebra grazing in an enclosure with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155743.jpg', 'caption': 'A zebra brazing on green grass next to a pile of rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155743.jpg', 'caption': 'A zebra eating grass inside a fenced in area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064710.jpg', 'caption': 'a person and a dog are standing near some cliffs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064710.jpg', 'caption': 'A person walks with a backpack being followed by a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064710.jpg', 'caption': 'A hiker and dogs are walking in a canyon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064710.jpg', 'caption': 'A person walks along on a patch of sand near some rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064710.jpg', 'caption': 'A person walking across a desert filled surrounded by mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180447.jpg', 'caption': 'A close up of a zebra foraging on some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180447.jpg', 'caption': 'A zebra grazing on long dry grass in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180447.jpg', 'caption': 'THERE IS A BLACK AND WHITE IMAGE OF A ZEBRA EATING GRASS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180447.jpg', 'caption': 'A zebra grazes on grass in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180447.jpg', 'caption': 'A black and white photograph of a zebra grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318171.jpg', 'caption': 'A dog sitting on a grassy hillside by a path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318171.jpg', 'caption': 'A dog laying in the grass next to the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318171.jpg', 'caption': 'A brown and white dog on grass next to a path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318171.jpg', 'caption': 'A brown and white dog sitting on the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318171.jpg', 'caption': 'a dog laying in the shady grass at the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216273.jpg', 'caption': 'A small white dog sitting on the floor on top of a rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216273.jpg', 'caption': 'A wooly, white dog sitting on the carpet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216273.jpg', 'caption': \"A white dog has curly matted hair in it's eyes.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216273.jpg', 'caption': 'A small beige dog with short curly hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216273.jpg', 'caption': 'A shaggy dog sit atop a blue and pink carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075162.jpg', 'caption': 'A zebra is standing outside in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075162.jpg', 'caption': 'One zebra standing in snow near a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075162.jpg', 'caption': 'A zebra is standing in a snowy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075162.jpg', 'caption': 'A zebra stands in snow in front of a wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075162.jpg', 'caption': 'A zebra standing alone in the snow with a stone block wall and wooden fence behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283210.jpg', 'caption': 'Two brown dogs in grassy area biting each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283210.jpg', 'caption': 'Two dogs playing, jumping on each other and biting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283210.jpg', 'caption': 'Two similar sized dogs fighting near an empty chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283210.jpg', 'caption': 'Two brown dogs involved in fight against each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283210.jpg', 'caption': 'Two brown dogs are playing on the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252213.jpg', 'caption': 'two dogs that look to be fighting one another', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252213.jpg', 'caption': 'Two dogs fighting with one on his back on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252213.jpg', 'caption': 'Two dogs have a playful fight with one another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252213.jpg', 'caption': 'Two dogs that are fighting in the yard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252213.jpg', 'caption': 'A dog shows aggression by baring his teeth to another dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082680.jpg', 'caption': 'two dogs brown white and black and some people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082680.jpg', 'caption': 'A couple of dogs running together being playful.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082680.jpg', 'caption': 'Two dogs are running together and playing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082680.jpg', 'caption': 'Two dogs running on top of the dry terrain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082680.jpg', 'caption': 'A close up of two small dogs running.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469088.jpg', 'caption': 'Two dogs that are standing up holding each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469088.jpg', 'caption': 'Two dogs on their hind legs playing with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469088.jpg', 'caption': 'Two dogs standing on their back legs wrestling with one another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469088.jpg', 'caption': 'Two little, well groomed dogs hugging each other energetically', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469088.jpg', 'caption': 'A couple of dogs standing each other up being playful.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496768.jpg', 'caption': 'A young man flying a kite over a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496768.jpg', 'caption': 'A boy with a frisbee standing in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496768.jpg', 'caption': 'a boy is on the beach tying to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496768.jpg', 'caption': 'A boy throws a Frisbee to himself on an empty beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496768.jpg', 'caption': 'A young boy playing frisbee on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562261.jpg', 'caption': 'A man stretching out yelling while catching a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562261.jpg', 'caption': 'A man in a grassy area with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562261.jpg', 'caption': 'A man holding a white frisbee in his right hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562261.jpg', 'caption': 'A smiling young man leans over with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562261.jpg', 'caption': 'Man in a blue shirt holding up a white frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016716.jpg', 'caption': 'A herd of zebra standing next to each other in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016716.jpg', 'caption': 'A group of zebras standing on dry land', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016716.jpg', 'caption': 'three zebras walking in a grassy plains area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016716.jpg', 'caption': 'There 3 Zebras standing together in the wild. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016716.jpg', 'caption': 'Three zebras are standing together in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517822.jpg', 'caption': 'A kid playing with a frisbee in the yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517822.jpg', 'caption': 'A young bow throwing a frisbee on a lush green grass covered park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517822.jpg', 'caption': 'A toddler with a frisbee in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517822.jpg', 'caption': 'A young toddler walks across the grass in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517822.jpg', 'caption': 'a small child standing in a field of green grass playing with a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443591.jpg', 'caption': 'A small herd of zebra walking on a lush green landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443591.jpg', 'caption': 'Three zebras walking through a grassland area together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443591.jpg', 'caption': 'One zebra rests its head on the back of another zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443591.jpg', 'caption': 'A zebra resting its head on another zebra', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443591.jpg', 'caption': 'A zebra resting its head on another zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344860.jpg', 'caption': 'A small herd of giraffe standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344860.jpg', 'caption': 'We are looking at a herd of zebras.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344860.jpg', 'caption': 'Several zebras milling around a grassy area with a shrub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344860.jpg', 'caption': 'Zebras are knee high in grass on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344860.jpg', 'caption': 'A zebra looks over another zebra in the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235914.jpg', 'caption': 'Two zebras playing together on a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235914.jpg', 'caption': 'some zebras dirt brown grass bushes and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235914.jpg', 'caption': 'Two zebras are fighting in the sahara. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235914.jpg', 'caption': 'A couple of zebra standing on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235914.jpg', 'caption': 'A zebra standing up and putting one leg over the shoulder of another zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148358.jpg', 'caption': 'Some very cute zebras in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148358.jpg', 'caption': 'Three zebras graze grass within a wire enclosement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148358.jpg', 'caption': 'Three zebras eating grass in a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148358.jpg', 'caption': 'Two zebras that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148358.jpg', 'caption': 'Three zebras grazing in an enclosed area that is a wooded area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104025.jpg', 'caption': 'Person riding on the back of a horse on a gravel road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104025.jpg', 'caption': 'a person riding a horse down a trail with rocks around it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104025.jpg', 'caption': 'A person riding a donkey travels between two mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104025.jpg', 'caption': 'A man travels down a path in the mountains. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104025.jpg', 'caption': 'a person in a black top riding a horse and some hills and rocks ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062790.jpg', 'caption': 'six different shots of horses and people standing on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062790.jpg', 'caption': 'A series of pictures shows horses and people on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062790.jpg', 'caption': 'A collage showing people at an event and horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062790.jpg', 'caption': 'A collage of six photos of people, places and animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062790.jpg', 'caption': 'A frame has six pictures, two with a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129637.jpg', 'caption': 'Horse figurines next to walk on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129637.jpg', 'caption': 'A set of three different plastic horse figurines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129637.jpg', 'caption': 'Three different horse figurines are placed beside each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129637.jpg', 'caption': 'Three plastic horse figurines standing next to each other on a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129637.jpg', 'caption': 'Three model horses on a table in front of a pegboard backdrop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427438.jpg', 'caption': 'A herd of zebras are in a dirt area near scrub brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427438.jpg', 'caption': 'A bunch of zebras are together in an open area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427438.jpg', 'caption': 'A group of zebras standing beside each other in the desert. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427438.jpg', 'caption': 'a herd of zebra standing around in front of some shrubs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427438.jpg', 'caption': 'A bunch of zebras standing around in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002684.jpg', 'caption': 'A lot of zebras standing in the sand on a hot summer day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002684.jpg', 'caption': 'Group of zebras standing on a dirt field together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002684.jpg', 'caption': 'A pack of zebras standing around a dry pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002684.jpg', 'caption': 'A herd of zebra in a grassy are with bushes in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002684.jpg', 'caption': 'A herd of zebras grazing on the savannah.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256091.jpg', 'caption': 'A group of zebras standing around in the desert. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256091.jpg', 'caption': 'A group of zebras are standing in a desert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256091.jpg', 'caption': 'A herd of zebra standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256091.jpg', 'caption': 'A herd of zebras are standing in dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256091.jpg', 'caption': 'Four zebras standing in the savanna surrounded by scrub brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433460.jpg', 'caption': 'A herd of zebras standing around on the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433460.jpg', 'caption': 'On a sunny afternoon, the herd of zebra are romping in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433460.jpg', 'caption': 'A herd of zebra walking around a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433460.jpg', 'caption': 'a group of zebras in a dirt field next to green shrubbery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433460.jpg', 'caption': 'A group of zebras are on the brown ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307569.jpg', 'caption': 'Many jockies are riding horses down a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307569.jpg', 'caption': 'A group of people riding horses along a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307569.jpg', 'caption': 'A group of people with helmets are riding horses alongside a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307569.jpg', 'caption': 'A group of horses and their riders riding down the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307569.jpg', 'caption': 'A group of jockeys on horses in a race on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181962.jpg', 'caption': 'Several people are riding horses on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181962.jpg', 'caption': 'A group of cowboys walk through the desert. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181962.jpg', 'caption': 'People with hats and uniforms are riding horses along a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181962.jpg', 'caption': '6 horses on a beach with riders on them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181962.jpg', 'caption': 'These people are riding horses along the shore', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120935.jpg', 'caption': 'A herd of zebra standing near some bushes and rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120935.jpg', 'caption': 'A herd of zebra standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120935.jpg', 'caption': \"Several zebra's standing at attention as a group of deer look on.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120935.jpg', 'caption': 'Four zebras and gazelles in a rocky area near some brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120935.jpg', 'caption': 'Four zebra are standing and looking into the same direction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405778.jpg', 'caption': 'A herd of zebras is grazing in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405778.jpg', 'caption': 'A herd of zebra standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405778.jpg', 'caption': 'Two zebras are grazing in an open field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405778.jpg', 'caption': 'a number of animals on a field of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405778.jpg', 'caption': 'Zebras standing in a field on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520727.jpg', 'caption': 'A zebra and a giraffe foraging together by some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520727.jpg', 'caption': 'A zebra and a giraffe eating from the grass and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520727.jpg', 'caption': 'A giraffe grazes in a field as a giraffe eats leaves nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520727.jpg', 'caption': 'A zebra grazing and a giraffe walking in a green field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520727.jpg', 'caption': 'A zebra and giraffe eating food near each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062151.jpg', 'caption': 'Horses stand and drink from pond water near the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062151.jpg', 'caption': 'horses near a body of water with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062151.jpg', 'caption': 'Horses behind a fence near a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062151.jpg', 'caption': 'Horses grazing in a muddy portion of a flooded field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062151.jpg', 'caption': 'Five horses next to a body of water behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353807.jpg', 'caption': 'A horse is attached to a carriage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353807.jpg', 'caption': 'A horse drawn carriage moving down the street, people walking to the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353807.jpg', 'caption': 'People standing around near a horse drawn buggy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353807.jpg', 'caption': 'A horse pulling a carriage next to a crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353807.jpg', 'caption': \"A close-up of the horse that's pulling a carriage.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440329.jpg', 'caption': 'a man riding a bull through part of a parking lot ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440329.jpg', 'caption': 'A bunch of people standing around cars in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440329.jpg', 'caption': 'People watch a man riding a cow through a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440329.jpg', 'caption': 'A group of people standing in a parking lot as a man rides a bull.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440329.jpg', 'caption': 'A man rides a cow through a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248468.jpg', 'caption': 'A group of horses that are standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248468.jpg', 'caption': 'An old-style picture of horses near a train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248468.jpg', 'caption': 'A team of horses pulls a wagon near an old water tower. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248468.jpg', 'caption': 'A group of horses pulling a wagon down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248468.jpg', 'caption': 'There is a horse drawn carriage in front of the water tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112085.jpg', 'caption': 'A man riding on the back of a wagon being pulled by two horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112085.jpg', 'caption': 'A farmer plowing using field horses for propulsion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112085.jpg', 'caption': 'A farmer is plowing the land with his horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112085.jpg', 'caption': 'A farmer on a plow being pulled by two horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112085.jpg', 'caption': 'Two horses pushing a carriage with a man sitting on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379977.jpg', 'caption': 'A brown horse is walking around in the grassy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379977.jpg', 'caption': 'A horse running in a green field next to a black and white pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379977.jpg', 'caption': 'A horse in a green meadow along hills with a cloudy grey sky in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379977.jpg', 'caption': 'A horse is trotting along a hilly area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379977.jpg', 'caption': 'A horse majestically standing in a hilly field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444444.jpg', 'caption': 'A woman standing in front of a brown horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444444.jpg', 'caption': 'A young woman in a leather coat about to pet a horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444444.jpg', 'caption': 'A woman is standing next to a black and white horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444444.jpg', 'caption': 'A woman is feeding a horse at a ranch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444444.jpg', 'caption': 'a woman going to touch a horse in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345998.jpg', 'caption': 'A trainer leads a girl on horseback to a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345998.jpg', 'caption': 'A little girl riding a horse next to another girl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345998.jpg', 'caption': 'Two girls walking down a pathway with a large horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345998.jpg', 'caption': 'A woman walks beside a horse while a girl rides.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345998.jpg', 'caption': 'Child on a horse being led by a trainer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497312.jpg', 'caption': 'A little girl sitting on top of a brown horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497312.jpg', 'caption': 'A young girl sitting on a saddle that is on a black horse, with other people standing next to the horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497312.jpg', 'caption': 'A young girl is sitting on a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497312.jpg', 'caption': 'a child riding on a horse in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497312.jpg', 'caption': 'A woman is watching a girl ride a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143769.jpg', 'caption': 'A brown miniature pony next to a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143769.jpg', 'caption': 'The small, hairy horse has a very long tail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143769.jpg', 'caption': 'Short brown horses have long black bushy tails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143769.jpg', 'caption': 'A small horse with a head of hair during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143769.jpg', 'caption': 'Ponies have long manes and tails and stand beside a fence in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311913.jpg', 'caption': 'A pair of horses running through a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311913.jpg', 'caption': 'Two horses running inside a grassy fenced pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311913.jpg', 'caption': 'Brown and white horses running through a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311913.jpg', 'caption': 'an image of two horses that are running thru the fields', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311913.jpg', 'caption': 'two horses in a field of tall grass with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461885.jpg', 'caption': 'A woman riding on the back of a brown horse through a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461885.jpg', 'caption': 'A dressage rider riding a place horse in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461885.jpg', 'caption': 'The person is riding the horse on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461885.jpg', 'caption': 'Man on horse in open field practicing for certain sport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461885.jpg', 'caption': 'Person with a helmet riding on a black horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328289.jpg', 'caption': 'People walking around the park with a few horses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328289.jpg', 'caption': 'A group of people walking horses through a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328289.jpg', 'caption': 'Group of people and horses in a grassy area next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328289.jpg', 'caption': 'Women are walking through a field with horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328289.jpg', 'caption': 'A group of people tending to horses on a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318671.jpg', 'caption': 'A horse drawn trolly on a track, the trolly is full of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318671.jpg', 'caption': 'A horse stops for a rest before it continues to pull a street car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318671.jpg', 'caption': 'A horse drawn trolley sitting in the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318671.jpg', 'caption': 'A horse is pulling a troller full of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318671.jpg', 'caption': 'People riding on a horse trolley in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031255.jpg', 'caption': 'Three horses are standing outside in the show.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031255.jpg', 'caption': 'three horses in the snow and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031255.jpg', 'caption': 'Three horses are standing outside in the winter staring from different angles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031255.jpg', 'caption': 'three horses in a snowy field with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031255.jpg', 'caption': 'Three horses with white markings on their faces standing in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244575.jpg', 'caption': 'Two horses in a wooded area amongst bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244575.jpg', 'caption': 'Two horses are looking towards the camera while standing in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244575.jpg', 'caption': 'Two animals walking through high grass in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244575.jpg', 'caption': 'Two horses gaze out from among the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244575.jpg', 'caption': 'Two horses walking through the woods together .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079380.jpg', 'caption': 'A man riding on the back of a brown horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079380.jpg', 'caption': 'A horse racing track at the Saratoga Race Course, with a horse and jockey running on the track, as another horse and jockey wait on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079380.jpg', 'caption': 'a couple of horses on the race track with only one running on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079380.jpg', 'caption': 'A person on a horse on a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079380.jpg', 'caption': 'A jockey and his horse waiting on the side line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175417.jpg', 'caption': 'Two men riding horses at a horse racing track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175417.jpg', 'caption': 'Two race horses running on a dirt track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175417.jpg', 'caption': 'One horse trails behind another during a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175417.jpg', 'caption': 'Two horses are racing on a track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175417.jpg', 'caption': 'Two horses and their riders on the race track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503005.jpg', 'caption': 'A man riding a horse with trees and buildings in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503005.jpg', 'caption': 'A rider gallops on his horse in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503005.jpg', 'caption': 'A horseback rider is somewhat in the background of the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503005.jpg', 'caption': 'A man riding a horse during a jumping competition. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503005.jpg', 'caption': 'A person on a horse on a field with a building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016574.jpg', 'caption': 'Several people dressed as knights on horses in a courtyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016574.jpg', 'caption': 'The performers at Medieval Times are dressed as knights in different colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016574.jpg', 'caption': 'A group of knights are gathered around to perform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016574.jpg', 'caption': 'A LARGE CROWD OF OBSERVERS WATCHING A GROUP OF KNIGHTS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016574.jpg', 'caption': 'A group of people in costumes and most on horses carrying flags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300814.jpg', 'caption': 'Two adults playing a game in a arena.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300814.jpg', 'caption': 'two men on horses jousting each other in an arena', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300814.jpg', 'caption': 'Two people jousting on horseback with a watching crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300814.jpg', 'caption': 'A couple of people dressed in knight outfits jousting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300814.jpg', 'caption': 'some knights horses flags sand and people ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316795.jpg', 'caption': 'A man in black leading an all white horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316795.jpg', 'caption': 'Mythical character with white horse standing on grooved surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316795.jpg', 'caption': 'A white horse with blue haunches stands next to an elegantly dressed, black-haired man holding a sword.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316795.jpg', 'caption': 'A person with a horse and a sword.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316795.jpg', 'caption': 'a couple of small figures of a man and a horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263136.jpg', 'caption': 'A woman in a wedding dress standing in a field near a corn farm and holding the bridle of a cream colored horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263136.jpg', 'caption': \"A woman wearing a wedding dress holding a horse's bridle.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263136.jpg', 'caption': 'A woman in a wedding dress in a field, holding a lead rope with a white horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263136.jpg', 'caption': 'A women in a wedding dress holding a white horse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263136.jpg', 'caption': 'The bride is impressed by the grace of the horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084235.jpg', 'caption': 'a hot dog on a bun with ketsup and lettuce on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084235.jpg', 'caption': 'there is a hot dog and lettuce on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084235.jpg', 'caption': 'A hot dog on a plate with lettuce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084235.jpg', 'caption': 'A hotdog on a bed of lettuce on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084235.jpg', 'caption': 'A hotdog with ketchup in a bun on a bed of lettuce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310177.jpg', 'caption': 'A white plate topped with different types of foods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310177.jpg', 'caption': 'A plate with cheese and a hotdog is sitting next to a cup of milk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310177.jpg', 'caption': 'A glass of milk sits next to a plate with meat, cheese and fruit on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310177.jpg', 'caption': 'A plate with a variety of cheeses, sausages and fruits with a glass of milk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310177.jpg', 'caption': 'A glass of milk next to a plate with several different types of meats and cheeses on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227879.jpg', 'caption': 'The baseball player is up to bat and ready to hit a homerun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227879.jpg', 'caption': 'a man is holding a baseball bat at a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227879.jpg', 'caption': 'A base ball player holding a bat next to a base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227879.jpg', 'caption': 'A Red Sox player stands at the ready at the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227879.jpg', 'caption': 'There is a man playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321079.jpg', 'caption': 'A plate that has food on top of it with powdered sugar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321079.jpg', 'caption': 'A breakfast item on a plate is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321079.jpg', 'caption': 'different kinds of food on a glass plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321079.jpg', 'caption': 'a bowl with some pancakes and toppings on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321079.jpg', 'caption': 'Pancakes on a plate with banana, sauce and whipped cream toppings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535668.jpg', 'caption': 'A baseball player bending over to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535668.jpg', 'caption': 'A man swinging a bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535668.jpg', 'caption': 'some baseball players are playing baseball on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535668.jpg', 'caption': 'A baseball player swinging a bat at a pitch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535668.jpg', 'caption': 'a baseball player hitting a baseball at home base', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375840.jpg', 'caption': 'A try with a banana and two oranges visible on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375840.jpg', 'caption': 'Banana and oranges on a lunch try next to bowls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375840.jpg', 'caption': 'a white tray with a banana and two tangerines and a plate and bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375840.jpg', 'caption': 'A banana sits by two oranges, a bowl and a white plate on a white tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375840.jpg', 'caption': 'a banana and two oranges sit on a tray next to a bowl and a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466787.jpg', 'caption': \"A stack of banana's sitting next to a pear and a pile of apples.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466787.jpg', 'caption': 'A plate of fruit that includes bananas, pears and apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466787.jpg', 'caption': 'Plate on the table covered with bananas, apples and a pear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466787.jpg', 'caption': 'A wooden table with a white plate of fresh fruit sitting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466787.jpg', 'caption': 'An array of apples and bananas lay on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288403.jpg', 'caption': 'A group of boys playing a little league baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288403.jpg', 'caption': 'Kids standing around with baseball gloves on the field as one kid walks to base with a helmet on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288403.jpg', 'caption': 'Several young boys are playing a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288403.jpg', 'caption': 'five boys standing out in a baseball field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288403.jpg', 'caption': 'Small boys playing baseball on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147980.jpg', 'caption': 'A group of children playing baseball out side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147980.jpg', 'caption': 'Group of children with baseball gloves throwing balls back and forth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147980.jpg', 'caption': 'Some children are playing softball on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147980.jpg', 'caption': 'this is a group of children playing baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147980.jpg', 'caption': 'A group of kids that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313789.jpg', 'caption': 'Many calendars and bunches of bananas hanging on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313789.jpg', 'caption': 'Clusters of bananas and pictures hanging on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313789.jpg', 'caption': 'A large group of bananas hanging in front of posters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313789.jpg', 'caption': 'Bunches of bananas hung on display at a market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313789.jpg', 'caption': 'Bunches of bananas stacked on top of magazines. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121745.jpg', 'caption': 'a plate that has a orange slice on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121745.jpg', 'caption': 'Orange slice sitting on a white plate with ornament around. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121745.jpg', 'caption': 'A plate with a orange on it and designs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121745.jpg', 'caption': 'An orange slice with a scoop of sherbert ice cream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121745.jpg', 'caption': 'Some food sitting on a white plate with orange lines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497006.jpg', 'caption': 'A display in a store filled with lots of ripe bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497006.jpg', 'caption': 'Many bunches of bananas sit atop this grocery store display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497006.jpg', 'caption': 'A large display of ripe bananas in a supermarket produce section.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497006.jpg', 'caption': 'A banana display at an indoor grocery store. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497006.jpg', 'caption': 'A lot of bananas on a shelf in a grocery store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136501.jpg', 'caption': 'A baseball player with one leg kicked up preparing to throw a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136501.jpg', 'caption': 'A baseball player winding up for a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136501.jpg', 'caption': 'A baseball player prepares to throw the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136501.jpg', 'caption': 'A man is leaning back to throw a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136501.jpg', 'caption': 'A male baseball player is preparing to throw the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295589.jpg', 'caption': 'A man standing on a baseball field holding a catchers mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295589.jpg', 'caption': 'A baseball player is crouched and waiting attentively.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295589.jpg', 'caption': 'A third basemen engages in a defensive position.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295589.jpg', 'caption': 'A baseball player prepares to catch a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295589.jpg', 'caption': 'A man in a white baseball uniform and a black cap stands on a baseball field as the stands are full of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037038.jpg', 'caption': 'A man on water skis prepares to jump the pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037038.jpg', 'caption': 'A man is participating in a water sport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037038.jpg', 'caption': 'A man prepares to go surfing in the water.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000089668.jpg', 'caption': 'Cows are walking through tall grass near many trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383406.jpg', 'caption': 'cats laying on a desk near a couple monitors and a keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383406.jpg', 'caption': 'Four cats lay on a desk near two computer monitors and a keyboard while near them a bowl holds medicine bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383406.jpg', 'caption': 'Several cats fast asleep on a desk in front of computer monitors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383406.jpg', 'caption': 'Several kitties are lounging around together in front of the computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383406.jpg', 'caption': 'A couple of cats that are sleeping together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013383.jpg', 'caption': 'Cats lie on a desk next to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013383.jpg', 'caption': 'Two cats laying next to a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013383.jpg', 'caption': 'Black and white cats lying on desk with keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013383.jpg', 'caption': 'Two cats sleeping on a table by a coffee cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013383.jpg', 'caption': 'a cat on a desk laying next to a keyboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209692.jpg', 'caption': 'Old fashioned red fire truck parked by itself on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209692.jpg', 'caption': 'An old picture of a red fire truck with snow on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209692.jpg', 'caption': 'A fire truck parked on a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209692.jpg', 'caption': 'A large red fire truck on snowy ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209692.jpg', 'caption': 'A red firetruck sitting in a parking spot on a snowy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205378.jpg', 'caption': 'A cat sitting behind storage containers and a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205378.jpg', 'caption': 'A black and white cat hides behind a laptop screen and some drawers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205378.jpg', 'caption': 'A cat is peaking around from behind a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205378.jpg', 'caption': 'A black and white cat is staring out some storage containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205378.jpg', 'caption': 'A cat hiding behind a bunch of boxes next to a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551952.jpg', 'caption': \"A white truck filled with motorcycle on it's flatbed.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551952.jpg', 'caption': 'A vehicle is shown transporting a shipment of bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551952.jpg', 'caption': 'The truck is hauling a load of bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551952.jpg', 'caption': 'A white vehicle with a flatbed designed to carry multiple bicycles on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551952.jpg', 'caption': 'A white bike carrier sits with several bikes on the back. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535292.jpg', 'caption': 'Two cows grazing on grass in a field by a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535292.jpg', 'caption': 'A white faced cow stands in the tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535292.jpg', 'caption': 'Cows standing in a grassy meadow in front of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535292.jpg', 'caption': 'a cow in a field near trees and bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535292.jpg', 'caption': 'a cow stands in the grassy area of a yard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010694.jpg', 'caption': 'A cat stares from behind a large TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010694.jpg', 'caption': 'A cat with glowing eyes sits on top of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010694.jpg', 'caption': 'A black cat peeps up behind an old television set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010694.jpg', 'caption': 'a cat behind a tv near doors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010694.jpg', 'caption': 'A cat sitting on top of a TV in front of a closet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143824.jpg', 'caption': 'A cat looking at a dog on a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143824.jpg', 'caption': 'A cat is standing on a table next to the television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143824.jpg', 'caption': 'Cat looking around television with dog on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143824.jpg', 'caption': 'a cat very lose to a tv with a dog on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143824.jpg', 'caption': 'The cat is looking at the television with the dog on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037907.jpg', 'caption': 'a cat on top of different kinds of electronics', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037907.jpg', 'caption': 'A white and brown cat sits on electronics near a television set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037907.jpg', 'caption': 'A cat sitting on a stack of electronics next to a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037907.jpg', 'caption': 'Cat sitting on stereo equipment next to monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037907.jpg', 'caption': 'A cat sitting on top of some electronics, next to a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168706.jpg', 'caption': 'Two cows stand in a field near one young cow laying down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168706.jpg', 'caption': 'Some cows are standing in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168706.jpg', 'caption': 'three brown cows in some brown grass and one is laying down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168706.jpg', 'caption': 'A cow looking back as it and others graze in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168706.jpg', 'caption': 'Two cows and a calf are grazing on dry grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414679.jpg', 'caption': 'Two cows overlooking a mountain range and one is looking in the opposite direction of the other one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414679.jpg', 'caption': 'Two cows that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414679.jpg', 'caption': 'Two marked cows stand upon mud and grass with tree filled hills in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414679.jpg', 'caption': 'A couple of brown and white cows standing on top of a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414679.jpg', 'caption': 'Two cows are standing in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486203.jpg', 'caption': 'Two cows are in an open field in front of a mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486203.jpg', 'caption': 'these cows are laying down on the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486203.jpg', 'caption': 'a couple of cows are in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486203.jpg', 'caption': 'A couple of cows standing on a grass covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486203.jpg', 'caption': 'Two cows are on a hill; one eating grass, the other lying down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060687.jpg', 'caption': 'A brown cow lays down in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060687.jpg', 'caption': 'A cow with halo hair is laying in a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060687.jpg', 'caption': 'A cow sitting down in a field of green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060687.jpg', 'caption': 'A large brown cow laying in a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060687.jpg', 'caption': 'A brown cow sits in the middle of a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122203.jpg', 'caption': 'Lots of cows eating grass on a large field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122203.jpg', 'caption': 'Two cows are grazing with their heads down together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122203.jpg', 'caption': 'Two black and white cows graze on green grass while many more cows and a silo are featured in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122203.jpg', 'caption': 'Cows graze in a green pasture under blue skies. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122203.jpg', 'caption': 'Cows grazing in a pasture of green grass with a silo in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181449.jpg', 'caption': 'A black kitten lays on her side beside remote controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181449.jpg', 'caption': 'A black kitten laying down next to two remote controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181449.jpg', 'caption': 'A black cat is lying next to a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181449.jpg', 'caption': 'A couple of phones are on a blanket next to a black kitten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181449.jpg', 'caption': 'a kitten laying on a bed next to some phones ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171062.jpg', 'caption': 'A cat sits on a table and watches television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171062.jpg', 'caption': 'A cat standing on a table in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171062.jpg', 'caption': 'A cat is on a coffee table with a television in front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171062.jpg', 'caption': 'Small cat sitting on top of a table looking at a television. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171062.jpg', 'caption': 'a brown and black cat is sitting in front of a monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142667.jpg', 'caption': 'People look at various food trucks in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142667.jpg', 'caption': 'People stand in line at food trucks in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142667.jpg', 'caption': 'A group of people are standing together in the street near a food truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142667.jpg', 'caption': 'A crowd of people are waiting in line for food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142667.jpg', 'caption': 'People standing in line by several food trucks parked on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574184.jpg', 'caption': 'A cat laying on a bed next to an opened laptop.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574184.jpg', 'caption': 'A cat sitting on a blanket next to a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574184.jpg', 'caption': 'a cat lays down next to a laptop on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574184.jpg', 'caption': 'A cat lying on a bed next to a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574184.jpg', 'caption': 'a black and white cat and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122390.jpg', 'caption': 'a cat laying down stretched out near a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122390.jpg', 'caption': 'A grey and white cat laying next to a laptop on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122390.jpg', 'caption': 'A cat laying on a bed with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122390.jpg', 'caption': 'A black, white, and gray cat lays near a laptop keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122390.jpg', 'caption': 'a close up of a cat on a bed next to a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099734.jpg', 'caption': 'Men standing in their boats that are in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099734.jpg', 'caption': 'fishermen on a boat with nets ready to fish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099734.jpg', 'caption': 'The men are fishing with nets from their small boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099734.jpg', 'caption': 'A group of people standing on various boats with large nets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099734.jpg', 'caption': 'A group of people standing in some small boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000400.jpg', 'caption': 'A dog sitting on the inside of a white boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000400.jpg', 'caption': 'a dog sits on a boat floating in water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000400.jpg', 'caption': 'Dog forlornly looking out the back of a twin-hulled boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000400.jpg', 'caption': 'The dog is riding on the boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000400.jpg', 'caption': 'a white boat is out on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245201.jpg', 'caption': 'A dog that is standing on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245201.jpg', 'caption': 'A brown dog sitting on the inside of a white boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245201.jpg', 'caption': 'A yellow dog putting their head out the front gate of a pontoon boat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245201.jpg', 'caption': 'a dog on a boat in the middle of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245201.jpg', 'caption': 'there is a dog that is sticking his head out of a boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350694.jpg', 'caption': 'The surrounding of an outside town in the image.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350694.jpg', 'caption': 'A large crowded town with a body of water and many boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350694.jpg', 'caption': 'A body of water filled with a lot of wrecked boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350694.jpg', 'caption': 'Many boats are traveling in the water outside the city area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350694.jpg', 'caption': 'People using umbrellas and wooden boats in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419048.jpg', 'caption': 'Some very cute cows in a nice shaded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419048.jpg', 'caption': 'A couple cows and bulls are lying on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419048.jpg', 'caption': 'A white steer is lying in a field of grass while three other cows are in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419048.jpg', 'caption': 'Three bulls of various poses in a green field with trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419048.jpg', 'caption': 'A group of cows with an alert look sitting in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414560.jpg', 'caption': 'there are many cows that are laying in this barn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414560.jpg', 'caption': 'Three cows are tied up in a barn and standing in the hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414560.jpg', 'caption': 'three black and white cows are resting in hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414560.jpg', 'caption': 'Small group of cows laying on hay inside of a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414560.jpg', 'caption': 'Black and white cows sit in a pile of hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232383.jpg', 'caption': 'A cat laying on top of a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232383.jpg', 'caption': 'A cat sitting behind a computer screen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232383.jpg', 'caption': 'A grey and white cat sitting behind a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232383.jpg', 'caption': 'Looking over the monitor of a computer at a cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232383.jpg', 'caption': \"open laptop screen with a cat's head peeking over it\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241453.jpg', 'caption': 'A number of cattle outside some houses ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241453.jpg', 'caption': 'A small herd of cows are walking away from a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241453.jpg', 'caption': 'Many cows near more than one structure with windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241453.jpg', 'caption': 'Several cows standing together in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241453.jpg', 'caption': 'A herd of cattle walking across a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178592.jpg', 'caption': 'An elephant leading a baby through a Savannah plain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178592.jpg', 'caption': 'A couple of elephants standing in a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178592.jpg', 'caption': 'A mother elephant and calf walking with a herd of zebras in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178592.jpg', 'caption': 'Mama and baby elephant eating grass with zebras in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178592.jpg', 'caption': 'A grown elephant and a young elephant roam freely together in an open field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328421.jpg', 'caption': 'an elephant standing next to some other smaller animals in a field of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328421.jpg', 'caption': 'An elephant is standing next to a herd wildebeests.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328421.jpg', 'caption': 'An elephant is walking around on a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328421.jpg', 'caption': 'Variety of wildlife in field with tall golden grasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328421.jpg', 'caption': 'A group of animals that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530212.jpg', 'caption': 'A rack of assorted colorful neck ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530212.jpg', 'caption': 'a wall with many different colored ties on racks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530212.jpg', 'caption': 'an assortment of ties neatly arrange for sale ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530212.jpg', 'caption': \"A rack of several multicolored men's neck ties.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530212.jpg', 'caption': 'A display of dozens of neck ties in many colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278166.jpg', 'caption': 'A glass elephant figurines sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278166.jpg', 'caption': 'A lit candle in the shape of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278166.jpg', 'caption': 'An ceramic elephant figurine on top of a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278166.jpg', 'caption': 'The lit candle is shaped like a small elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278166.jpg', 'caption': 'A candle shaped as an elephant is on a china plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457754.jpg', 'caption': 'Four men are photographed signing important documents at work.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457754.jpg', 'caption': 'Two men are standing behind two other men who are signing papers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457754.jpg', 'caption': 'Four men in a suit are posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457754.jpg', 'caption': 'A group of men in suits sitting in a room preparing to sign some documents.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457754.jpg', 'caption': 'The men sit at the table with books in front of them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109819.jpg', 'caption': 'An elephant walks next to a bus down a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109819.jpg', 'caption': 'The elephant is walking down the busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109819.jpg', 'caption': 'As a bus and motorcycles carry passengers an elephant is also seated to carry a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109819.jpg', 'caption': 'A medium-sized elephant walks by a bus on the busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109819.jpg', 'caption': 'A road with motorcycle riders, a bus, a person riding an elephant and people walking on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260141.jpg', 'caption': 'a group of boats resting in the water next to a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260141.jpg', 'caption': 'a bunch of boats all lined up on a dock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260141.jpg', 'caption': 'Boats docked in a marina near a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260141.jpg', 'caption': 'Row of moored boats of different sizes at marina.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260141.jpg', 'caption': 'A marina filled with lots of small sized boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007682.jpg', 'caption': 'A man in a tie and a fake moustache', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007682.jpg', 'caption': 'a woman with glasses in a shirt and tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007682.jpg', 'caption': 'The woman is wearing glasses and a fake moustache.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007682.jpg', 'caption': 'An individual wearing a comical mustache with a serious facial expression. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007682.jpg', 'caption': 'a man in blue shirt and tie wearing a fake mustache ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540264.jpg', 'caption': 'a person tying another persons neck tie wearing a suit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540264.jpg', 'caption': 'A woman helping a man to do his tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540264.jpg', 'caption': 'A woman helping along man put on a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540264.jpg', 'caption': 'A woman helping a man tie his bow tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540264.jpg', 'caption': 'A man being assisted with a tie by a lady.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246809.jpg', 'caption': 'A small boat traveling past a red light house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246809.jpg', 'caption': 'A sailboat near a pier with a lighthouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246809.jpg', 'caption': 'a big red tower on a landing by the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246809.jpg', 'caption': 'A ship is in the water near a light house. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246809.jpg', 'caption': 'this red light house sits at the end of a pier', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102843.jpg', 'caption': 'A boat in the ocean near a red light house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102843.jpg', 'caption': 'A group of people stand by a red lighthouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102843.jpg', 'caption': 'Large red light house on the side of the ocean next to a speed boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102843.jpg', 'caption': 'A small boat is seen approaching a red lighthouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102843.jpg', 'caption': 'a boat riding in the water by a light tower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412914.jpg', 'caption': 'a upside down boat is on top of a big hil', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412914.jpg', 'caption': 'A boat turned over on a snowy bank by a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412914.jpg', 'caption': 'A boat turned upside down on a snowy shoreline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412914.jpg', 'caption': 'a flipped boat sits on some snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412914.jpg', 'caption': 'A boat is turned over in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440646.jpg', 'caption': 'A woman putting a tie on a man as he sit at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440646.jpg', 'caption': 'a close up of a person getting a tie put on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440646.jpg', 'caption': 'A man in a suit having his neck tie adjusted.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440646.jpg', 'caption': 'A man having a bow tie put onto his neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440646.jpg', 'caption': 'a woman helping a mani with his bow tie ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242499.jpg', 'caption': 'People ride on elephants to cross the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242499.jpg', 'caption': 'People riding on top of elephants across a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242499.jpg', 'caption': 'Elephants and their passengers are entering the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242499.jpg', 'caption': 'Groups of people sitting on elephants crossing a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242499.jpg', 'caption': 'Men riding on the back of elephants make their way into the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105975.jpg', 'caption': 'an elephant using its trunk to blow the dirt off its face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105975.jpg', 'caption': 'Grey toned elephant head closeup with grass and hill background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105975.jpg', 'caption': 'The elephant is using its trunk with many insects about its head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105975.jpg', 'caption': 'An elephant throwing dirt on itself with its trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105975.jpg', 'caption': 'Older elephant spraying himself with sand from the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066800.jpg', 'caption': 'A elephant that is standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066800.jpg', 'caption': 'A elephant is standing in the grass with zebras behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066800.jpg', 'caption': 'An elephant standing in a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066800.jpg', 'caption': 'an elephant and zebras in afield besides the mountains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066800.jpg', 'caption': 'An elephant is facing forward with zebras in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511204.jpg', 'caption': 'A person riding an elephant and carrying gas cylinders', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511204.jpg', 'caption': 'An elephant walking with two heave pails and and Indian man on the top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511204.jpg', 'caption': 'a nd elephant is carrying some red jugs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511204.jpg', 'caption': 'a man riding on top of an elphant holding a stick with containers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511204.jpg', 'caption': 'An elephant carries two tanks while being ridden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030255.jpg', 'caption': 'A boat traveling on water under a large bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030255.jpg', 'caption': 'A black and white photo of a ship going under a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030255.jpg', 'caption': 'A black and white photo of people on a boat going under a structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030255.jpg', 'caption': 'A filled ferry boat passing underneath an overpass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030255.jpg', 'caption': 'A group of people in a boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557981.jpg', 'caption': 'A young man holding a stuffed teddy bear and a white umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557981.jpg', 'caption': 'A young men is holding a stuffed animal and an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557981.jpg', 'caption': 'A man with a stuffed toy holds an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557981.jpg', 'caption': 'A man holding a teddybear and an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557981.jpg', 'caption': 'A man holding an umbrella in one hand and a stuffed animal in the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453819.jpg', 'caption': 'A couple of boats parked near a dock on the side of a small building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453819.jpg', 'caption': 'A photo looking down at two board on the dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453819.jpg', 'caption': 'a couple of boats docked in a harbor next to a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453819.jpg', 'caption': 'Some boats are tied to the side of the dock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453819.jpg', 'caption': 'A group of tug boats sitting at a dock with a walkway to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260166.jpg', 'caption': 'A group of people sitting on the back of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260166.jpg', 'caption': 'Several people are taking a ride on elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260166.jpg', 'caption': 'some people are riding elephants in the jungle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260166.jpg', 'caption': 'The people are riding on the two elephants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260166.jpg', 'caption': 'People riding on elephants in the jungle ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217005.jpg', 'caption': 'a large amount of plants growing in a forest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217005.jpg', 'caption': 'THERE ARE A LOT OF BUSHES IN THE FIELD ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217005.jpg', 'caption': 'A forest with lots of small green plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217005.jpg', 'caption': 'New plants are sprouting up from the forest floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217005.jpg', 'caption': 'A COUPLE OF DIFFERENT PLANTS IN THE WOODS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207264.jpg', 'caption': 'HERD OF ELEPHANTS IN THE WILD GRAZING AMONG THE TREES', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207264.jpg', 'caption': 'Some animals are outside in the dirt in the daytime.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207264.jpg', 'caption': 'A herd of elephants are grazing in a vast prairie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207264.jpg', 'caption': 'Elephants gathered together on a dusty plane with some trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207264.jpg', 'caption': 'A herd of animals next to a tree and shrubbery', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370043.jpg', 'caption': 'A large gray elephant standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370043.jpg', 'caption': 'A big elephant in the grass in the wild ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370043.jpg', 'caption': 'An elephant walks around in some dry grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370043.jpg', 'caption': 'A LARGE SINGLE MALE ELEPHANT GRAZING BY HIMSELF', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370043.jpg', 'caption': 'An elephant has something stuck in its rear end.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307936.jpg', 'caption': 'A small elephant walking across a dry grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307936.jpg', 'caption': 'The adult elephant with long tusks is walking through tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307936.jpg', 'caption': 'An elephant strides through brown grass and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307936.jpg', 'caption': 'An elephant walks past trees in a dry, grassy area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307936.jpg', 'caption': 'An elephant is walking through dry grass by some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458153.jpg', 'caption': 'A lone elephant is walking through a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458153.jpg', 'caption': 'an elephant is in some brown grass and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458153.jpg', 'caption': 'An elephant reaching for tall grass with its trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458153.jpg', 'caption': 'A very big elephant in a field of tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458153.jpg', 'caption': 'An elephant sticking out its trunk in a grassy area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446751.jpg', 'caption': 'some elephants in some tall brown grass and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446751.jpg', 'caption': 'A bunch of elephants standing around together in a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446751.jpg', 'caption': 'a group of elephants sitting in some dead grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446751.jpg', 'caption': 'a family of elephants standing in the wild with each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446751.jpg', 'caption': 'An adult elephant helping along a baby one in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529917.jpg', 'caption': 'A bunch of people wearing the same things are standing in line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529917.jpg', 'caption': 'a bunch of people in ties are grouped together ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529917.jpg', 'caption': 'a group of people in black are in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529917.jpg', 'caption': 'Group of men and women dressed in black wearing ties. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529917.jpg', 'caption': 'A group of people stand together in a room all dressed formally and all in black.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451872.jpg', 'caption': 'Several elephants are in a habitat as heads are in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451872.jpg', 'caption': 'A small gray elephant standing in an exhibit at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451872.jpg', 'caption': 'People are watching four elephants in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451872.jpg', 'caption': 'Several elephants in zoo enclosure with onlookers watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451872.jpg', 'caption': 'An elephant in a zoo stands in front of the crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031747.jpg', 'caption': 'There is one tug boat in the water by the docks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031747.jpg', 'caption': 'A boat docked with some large equipment in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031747.jpg', 'caption': 'a boat sitting next to a dock and a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031747.jpg', 'caption': 'A boat floating along a shore line with lots of cranes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031747.jpg', 'caption': 'A tug boat floats beside the dock while cranes reach skyward in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410533.jpg', 'caption': 'a cat that is sitting in a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410533.jpg', 'caption': 'A cat is sitting patiently in a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410533.jpg', 'caption': 'A cat sitting in a double sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410533.jpg', 'caption': 'A cat is sitting in a kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410533.jpg', 'caption': 'A grey and white cat sitting in a sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247306.jpg', 'caption': 'A person looking over the water at large boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247306.jpg', 'caption': 'There are many boats together out on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247306.jpg', 'caption': 'A woman leaning over a railing and gazing at boats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247306.jpg', 'caption': 'A view from a railing of a sea port with boats about.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247306.jpg', 'caption': 'The large boats are bring people into the harbor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466774.jpg', 'caption': 'A young elephant walks with two older elephants in a gated area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466774.jpg', 'caption': 'A baby elephant walks in between two adults.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466774.jpg', 'caption': 'A few elephants are together in the wild. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466774.jpg', 'caption': 'Three elephants in dirt area next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466774.jpg', 'caption': 'Two adult elephants with a baby elephant walking with them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420532.jpg', 'caption': 'A group of people standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420532.jpg', 'caption': 'a group of people standing side by side in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420532.jpg', 'caption': 'A man with a gun standing in formal dress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420532.jpg', 'caption': 'A man in a dress shirt is standing next to a couple dressed in formal attire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420532.jpg', 'caption': 'A man dressed up in a red tie and suspenders and standing around at a party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154202.jpg', 'caption': 'Several different types of electronics sprawled out on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154202.jpg', 'caption': 'a bed with a laptop a backpack a book a mouse and red case and other items', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154202.jpg', 'caption': 'Various Apple products are displayed with bags on a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154202.jpg', 'caption': 'a bunch of electronics and other accessories spread out on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154202.jpg', 'caption': 'A group of various electronics and planners laid out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421478.jpg', 'caption': 'A man in a tie with a shirt jacket thrown over his shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421478.jpg', 'caption': 'A man holds his suit over his shoulder', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421478.jpg', 'caption': 'A man wearing a suit and tie poses for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421478.jpg', 'caption': 'A man wearing a tie holding his suit jacket over his shoulder ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421478.jpg', 'caption': 'a man is posing in this photo wearing a suit and tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387173.jpg', 'caption': 'A person riding on the water in a red row boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387173.jpg', 'caption': 'A boater smiles as he paddles his canoe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387173.jpg', 'caption': 'A man at a boat dock in a canoe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387173.jpg', 'caption': 'A person in a kayak passing by a harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387173.jpg', 'caption': 'A person rowing in a red kayak glides through the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516750.jpg', 'caption': 'Two kayaks, one pink the other yellow, on bank of water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516750.jpg', 'caption': 'Two kayaks rest on the shore of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516750.jpg', 'caption': 'Two kayaks sitting on the shore of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516750.jpg', 'caption': 'Two kayaks are shown on the shore. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516750.jpg', 'caption': 'Two kayaks are sitting on a river bank empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289899.jpg', 'caption': 'A group of people ride in a canal past buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289899.jpg', 'caption': 'A group of people on a canal boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289899.jpg', 'caption': 'Four people that are in a boat that is on the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289899.jpg', 'caption': 'A group of people riding on top of a boat on a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289899.jpg', 'caption': 'People standing in a canoe in a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419281.jpg', 'caption': 'A congested boat stop with lots of boats parked within', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419281.jpg', 'caption': 'A group of ships are parked in the harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419281.jpg', 'caption': 'There is a lot of boats docked at a docking station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419281.jpg', 'caption': 'Yachts of different sizes sit in a crowded marina. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419281.jpg', 'caption': 'Many boats of various sizes all lined up at the harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069946.jpg', 'caption': 'A blue boat docked on a green lush shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069946.jpg', 'caption': 'A small marina with boats docked there', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069946.jpg', 'caption': 'a group of boats sitting together with no one around', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069946.jpg', 'caption': 'Some boats parked in the water at a dock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069946.jpg', 'caption': 'boats sitting around the side of a lake by a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109005.jpg', 'caption': 'An elephant and a rhinoceros stand not far from each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109005.jpg', 'caption': 'A rhino is near an elephant near a water hold in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109005.jpg', 'caption': 'An elephant and a rhinoceros share a field with a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109005.jpg', 'caption': 'An elephant and a rhino are grazing in an open wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109005.jpg', 'caption': 'An elephant walking not to far from a rhino in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216841.jpg', 'caption': 'Lots and lots and lots of very colorful ties', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216841.jpg', 'caption': 'a rack of very many different colored ties', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216841.jpg', 'caption': \"A group of tie racks with men's ties on them .\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216841.jpg', 'caption': 'An assortment of neckties, all with various colors and patterns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216841.jpg', 'caption': 'Large group of different color ties sitting on display together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338327.jpg', 'caption': \"A shelf filled with men's ties stacked six levels high.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338327.jpg', 'caption': 'Various ties are displayed in a rolled fashion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338327.jpg', 'caption': 'Rack with a variety of different kinds of ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338327.jpg', 'caption': 'Various ties are on display in boxes on shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338327.jpg', 'caption': 'Several racks of different pattern types of ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077184.jpg', 'caption': 'A two story boat sailing on a crystal blue body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077184.jpg', 'caption': 'A double decker boat sailing along the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077184.jpg', 'caption': 'Tour boat out on the water with flags waving. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077184.jpg', 'caption': 'A white boat with flags on it is in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077184.jpg', 'caption': 'A white ship sails in the blue ocean water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291712.jpg', 'caption': 'a small boat in a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291712.jpg', 'caption': 'There is a row boat on very still waters with a ball in the water in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291712.jpg', 'caption': 'a picture of a boat and many waters of an ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291712.jpg', 'caption': 'The boat is near a floating ball in extremely calm water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291712.jpg', 'caption': 'An empty row boat in the water near a floater', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024430.jpg', 'caption': \"A boat sitting on someone's lawn near an abandoned brick house. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024430.jpg', 'caption': 'a small boat in the front yard of a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024430.jpg', 'caption': 'A canoe on some grass near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024430.jpg', 'caption': 'a boat resting in the grass outside a home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024430.jpg', 'caption': 'THERE IS A BOAT ON THE GRASS IN FRONT OF THE YARD ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014990.jpg', 'caption': 'A man leading two elephants down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014990.jpg', 'caption': 'A man leads two elephants down a trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014990.jpg', 'caption': 'Two elephants are walking together behind the man', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014990.jpg', 'caption': 'A guy is walking in between two elephants. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014990.jpg', 'caption': 'Two elephants following an individual on a dirt path', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167854.jpg', 'caption': 'The Asian woman is standing on the beach holding an opened parasol in each hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167854.jpg', 'caption': 'Woman poses on beach with two umbrellas in front of a floating boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167854.jpg', 'caption': 'The woman is standing on the beach by the water with two umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167854.jpg', 'caption': 'The lady holds two umbrellas by the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167854.jpg', 'caption': 'A woman on the waters edge with two umbrellas, and a boat in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032965.jpg', 'caption': 'A woman staniding on the shore holding two umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032965.jpg', 'caption': 'An Asian woman in front of a body of water with two umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032965.jpg', 'caption': 'A woman is holding two umbrellas with a boat in the water behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032965.jpg', 'caption': 'A lady is holding two umbrellas on a gloomy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032965.jpg', 'caption': 'A woman holds a blue and a pink umbrella on a foggy day at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553442.jpg', 'caption': 'A woman embracing a child carrying a bag of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553442.jpg', 'caption': 'Woman hugging a small girl with green and blue luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553442.jpg', 'caption': 'A woman hugging a girl who is holding a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553442.jpg', 'caption': \"A woman with her arms around a girl who's holding a suitcase.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553442.jpg', 'caption': 'An adult and child standing with a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240903.jpg', 'caption': 'A elephant that is standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240903.jpg', 'caption': 'A zoo keeper looking at the back of a caged elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240903.jpg', 'caption': 'Elephant standing in an exhibit behind a fence with a park keeper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240903.jpg', 'caption': 'a elephant that is in side of a big fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240903.jpg', 'caption': 'a large elephant is standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207056.jpg', 'caption': 'A group of elephants bathing and playing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207056.jpg', 'caption': 'A large group of elephants standing in some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207056.jpg', 'caption': 'Elephants swimming in a shallow lake on a hot day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207056.jpg', 'caption': 'several elephants taking a bath in the river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207056.jpg', 'caption': 'A couple of elephants are standing in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476975.jpg', 'caption': 'A zebra standing next to an elephant next to some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476975.jpg', 'caption': \"The elephant with the herd is stretching it's trunk upwards near a tree. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476975.jpg', 'caption': 'A group of elephants feed in some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476975.jpg', 'caption': 'Several elephants eating leaves on trees at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476975.jpg', 'caption': 'A herd of elephants eating from a grove of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323682.jpg', 'caption': 'A man stands next to a few pieces of luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323682.jpg', 'caption': 'Man pushing a car with luggage at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323682.jpg', 'caption': 'A man stands in a breezeway with his luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323682.jpg', 'caption': 'A man holding a luggage cart in front of an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323682.jpg', 'caption': 'An older man is holding luggage outside a transport center', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304305.jpg', 'caption': 'A mother and son elephant walking through a green grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304305.jpg', 'caption': 'A pair of elephants traveling on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304305.jpg', 'caption': 'An adult elephant and a baby elephant walking together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304305.jpg', 'caption': 'A adult elephant with a baby elephant walking besides.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304305.jpg', 'caption': 'A mother elephant guiding her child across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076460.jpg', 'caption': 'A baby and adult elephant walk around their pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076460.jpg', 'caption': 'Elephants in the grass on a sunny day ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076460.jpg', 'caption': 'Several adult elephants and a young elephant in a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076460.jpg', 'caption': 'Two adult elephants and one child elephant grazing on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076460.jpg', 'caption': 'The adult elephant is standing behind a young one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468604.jpg', 'caption': 'Large elephant rubbing itself up against a large tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468604.jpg', 'caption': 'An elephant stands in the grass near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468604.jpg', 'caption': 'The large adult elephant is standing beside a large tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468604.jpg', 'caption': 'A captive elephant stands amid the branches of a tree in his park-like enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468604.jpg', 'caption': 'A elephant that is standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035474.jpg', 'caption': 'An elephant raises its trunk to grab some twigs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035474.jpg', 'caption': 'An elephant grabbing a branch with his trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035474.jpg', 'caption': 'An elephant with an open mouth lifts his trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035474.jpg', 'caption': 'An elephant using trunk to eat leaves on a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035474.jpg', 'caption': 'An elephant rubbing up against a tree and pulling on branches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041945.jpg', 'caption': 'a small boat in a body of water near building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041945.jpg', 'caption': 'A weathered ship parked beside a building on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041945.jpg', 'caption': 'An old fishing boat in the waterways of a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041945.jpg', 'caption': 'a large red boat is in water near buildings ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041945.jpg', 'caption': 'a big boats sits on some water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015690.jpg', 'caption': 'A couple of elephants standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015690.jpg', 'caption': 'Two elephants with tusks wade in the shallow water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015690.jpg', 'caption': 'A couple of large elephants in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015690.jpg', 'caption': 'Two elephants that are walking in some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015690.jpg', 'caption': 'Two elephants drink water out of a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102912.jpg', 'caption': 'A couple of gray elephants standing next to each other in a wire cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102912.jpg', 'caption': 'A couple of elephants touch their trunks together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102912.jpg', 'caption': 'Two elephants at a zoo with their trunks touching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102912.jpg', 'caption': 'Some elephants are touching each other in the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102912.jpg', 'caption': 'Two elephants facing each other touching trunks in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261779.jpg', 'caption': 'A pinup-style photo of a woman sitting on a luggage trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261779.jpg', 'caption': 'A women is waiting while sitting on a large trunk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261779.jpg', 'caption': 'a woman shades her eyes while sitting on a chest ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261779.jpg', 'caption': 'A woman sits on a luggage case on a sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261779.jpg', 'caption': 'A woman sitting on a trunk wearing a polka dot dress with a red belt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227227.jpg', 'caption': 'A woman sitting in a car holding a small white dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227227.jpg', 'caption': 'A woman in a car and her dog out the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227227.jpg', 'caption': 'A small dog looks out of a car window, the driver looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227227.jpg', 'caption': 'A person is sitting in a car with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227227.jpg', 'caption': 'A woman sitting in a car while her dog hangs out the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198448.jpg', 'caption': 'A woman sitting on a piece of luggage in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198448.jpg', 'caption': 'a woman sits on a brief case in the woods ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198448.jpg', 'caption': 'A girl with a lot of tattoos sitting on a a piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198448.jpg', 'caption': 'A woman with lots of tattoos sits on a suitcase in a forest. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198448.jpg', 'caption': 'Lady with arm full of tattoos sitting on her suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122934.jpg', 'caption': 'Three people and a dog are riding on a horse drawn carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122934.jpg', 'caption': \"A horse drawn cart with a dog, it's driver, and two passangers.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122934.jpg', 'caption': 'The tourists take a leasurely ride in the horse-drawn carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122934.jpg', 'caption': 'A group of people driving a horse drawn carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122934.jpg', 'caption': 'a horse pulling an open stagecoach on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421681.jpg', 'caption': 'A couple of suit cases sitting on top of a wooden block.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421681.jpg', 'caption': 'A few pieces of luggage sitting on top of a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421681.jpg', 'caption': 'Two vintage suitcases stacked on a box. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421681.jpg', 'caption': 'A vintage Louis Vuitton trunk suitcase stacked on another vintage suitcase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421681.jpg', 'caption': 'There are two suitcases stacked up on a box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181714.jpg', 'caption': 'An animation of a girl holding an umbrella is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181714.jpg', 'caption': 'A woman carrying a pink umbrella wearing a blue scarf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181714.jpg', 'caption': 'Two three dimensional images of a woman with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181714.jpg', 'caption': 'A stylish young woman holds an umbrella in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181714.jpg', 'caption': ' Two drawings of a lady in glasses holding an umbrella in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449981.jpg', 'caption': 'A crowd of people taking pictures of baby elephants ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449981.jpg', 'caption': 'A crowd of people standing around baby elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449981.jpg', 'caption': 'A picture is a image of an zoo animals.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449981.jpg', 'caption': 'Young elephants being fed while people take pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449981.jpg', 'caption': 'A man that is standing around elephants in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573349.jpg', 'caption': 'There are several people walking in a street parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573349.jpg', 'caption': 'A couple of people walking during a parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573349.jpg', 'caption': 'Several older adults walk down the street in a parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573349.jpg', 'caption': 'people are lined in the streets watching a parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573349.jpg', 'caption': 'An assortment of people walking in a line down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247984.jpg', 'caption': 'Several pieces of luggage with extendable handles deployed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247984.jpg', 'caption': 'A black suitcase with handles to help when rolling it around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247984.jpg', 'caption': 'a close up of a black travel bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247984.jpg', 'caption': 'A black bag with a combination lock sits near some yellow luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247984.jpg', 'caption': 'A suitcase with the rolling handle pulled up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429580.jpg', 'caption': 'People playing Frisbee with a drown and white dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429580.jpg', 'caption': 'A dog jumping to catch a frisbee in a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429580.jpg', 'caption': 'a dog jumping in the air trying to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429580.jpg', 'caption': 'A dog jumps in the air towards a frisbee while people look on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429580.jpg', 'caption': 'Playing catch with the family dog in the back yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450247.jpg', 'caption': 'A cat laying on top of a plastic container next to a bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450247.jpg', 'caption': 'A cat stretching out in a blue briefcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450247.jpg', 'caption': 'A brown and white cat sitting in a blue suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450247.jpg', 'caption': 'A cat is sitting in his suitcase on top of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450247.jpg', 'caption': 'A cat stretched out in a suitcase with his eyes close. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329717.jpg', 'caption': 'Young boy sitting on top of a briefcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329717.jpg', 'caption': 'A young baby sits on top of a briefcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329717.jpg', 'caption': 'A little boy sitting on a suitcase on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329717.jpg', 'caption': 'A small child sitting on top of a briefcase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329717.jpg', 'caption': 'A toddler boy is sitting on a brief case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393258.jpg', 'caption': 'A bunch of luggage laying on an area rug. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393258.jpg', 'caption': 'Several pieces of luggage on a floor with an area rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393258.jpg', 'caption': 'The luggage is sitting on top of the persian rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393258.jpg', 'caption': 'a bunch of travel bags sit on a carpet floor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393258.jpg', 'caption': 'Several pieces of luggage that are laying on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247285.jpg', 'caption': 'A couple protecting their young baby with a sun umbrella and cloth', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000089355.jpg', 'caption': 'Two girls are walking on a beach, carrying surfboards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435037.jpg', 'caption': 'A donut covered in chocolate sitting next to a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435037.jpg', 'caption': 'A cup of coffee and a doughnut are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435037.jpg', 'caption': 'The large donut is next to a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435037.jpg', 'caption': 'A chocolate doughnut with sprinkles in a basket next to a cup of coffee on a saucer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435037.jpg', 'caption': 'A cup of coffee with cream and a doughnut covered with chocolate and berries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198223.jpg', 'caption': 'A family playing at the beach with their baby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198223.jpg', 'caption': 'The parents have their little boy on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198223.jpg', 'caption': 'A couple is on the beach with a small child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198223.jpg', 'caption': 'A mother and father walking with their son on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198223.jpg', 'caption': 'A couple and their baby are walking on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473208.jpg', 'caption': 'Donuts and pies sit in a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473208.jpg', 'caption': 'Glazed donuts, regular donuts, pies and other desserts in a show case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473208.jpg', 'caption': 'This is a case of various colored doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473208.jpg', 'caption': 'frosted donuts in a display case to feast upon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473208.jpg', 'caption': 'Dozens of donuts sitting in a display case on metal racks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121381.jpg', 'caption': 'A young child wearing a jacket and eating a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121381.jpg', 'caption': 'A child in a sweater eating a doughnut with cereal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121381.jpg', 'caption': 'A young girl holds a decorative pastry treat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121381.jpg', 'caption': 'A young boy eating a doughnut topped with cereal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121381.jpg', 'caption': 'A child eating a doughnut with cereal topping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546500.jpg', 'caption': 'A knife with red crumbs on it next to a cup on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546500.jpg', 'caption': 'A black object beside a gray and white bowl on a wood surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546500.jpg', 'caption': 'the table has a bowl as well as knife on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546500.jpg', 'caption': 'Raw red meat on a large knife blade on a wooden cutting board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546500.jpg', 'caption': 'A knife covered in guts next to a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480210.jpg', 'caption': 'two surfers are carrying two long surfboards at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480210.jpg', 'caption': 'Two surf boarders carry their surf boards down the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480210.jpg', 'caption': 'Two men walking with their surf boards on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480210.jpg', 'caption': 'two people are carrying surf boards at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480210.jpg', 'caption': 'Two men are carrying surf boards down the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468784.jpg', 'caption': 'A bride and groom holding a knife to a three tier wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468784.jpg', 'caption': 'A couple cutting their wedding cake at their reception. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468784.jpg', 'caption': 'A man and a women are cutting their wedding cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468784.jpg', 'caption': 'a black and white photo of two people cutting cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468784.jpg', 'caption': 'A man and woman cutting into a wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528496.jpg', 'caption': 'A plate filled with a cut in half sandwich on top of a black table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528496.jpg', 'caption': 'A partially eaten sandwich on a brown and white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528496.jpg', 'caption': 'A few slices of a sandwich on a dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528496.jpg', 'caption': 'a sandwich is cut in half on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528496.jpg', 'caption': 'A sandwich lays on a white plate with dark colored stripes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405261.jpg', 'caption': 'Two people eating biscuits on a brown table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405261.jpg', 'caption': 'Two people eating rolls and food in a black bowl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405261.jpg', 'caption': 'a tray of food that someone has their hand in', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405261.jpg', 'caption': 'this is a table with a plate of take out food with rolls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405261.jpg', 'caption': 'a wooden table with trays of food on top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043693.jpg', 'caption': 'a vintage photo of man standing in the middle of some waves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043693.jpg', 'caption': 'a man riding a small wave on his surfboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043693.jpg', 'caption': 'A man surf on his surfboard in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043693.jpg', 'caption': 'A black and white photograph of a person that is in rushing waters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043693.jpg', 'caption': 'a man that is surfing in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405216.jpg', 'caption': 'A young woman riding a surfboard on a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405216.jpg', 'caption': 'A woman in a wetsuit surfing on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405216.jpg', 'caption': 'A surfer rides a wave in a gushing stream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405216.jpg', 'caption': 'Surfer riding on the front of a river wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405216.jpg', 'caption': 'A young person riding waves as onlookers watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382603.jpg', 'caption': 'A bakery counter has many different kinds of pastries and pies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382603.jpg', 'caption': 'Many various donuts are displayed in a shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382603.jpg', 'caption': 'A bakery section filled with pies and various other bakery items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382603.jpg', 'caption': 'A bakery with pies, donuts, cookies and rolls on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382603.jpg', 'caption': 'a doughnut shop with a different variety of flavors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489745.jpg', 'caption': 'a hand opening up half a sandwich with green sauce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489745.jpg', 'caption': 'This sandwich is made on a French roll and has Pepper Jack cheese, turkey, guacamole, and lettuce. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489745.jpg', 'caption': 'A sub is filled with meat, lettuce, and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489745.jpg', 'caption': 'a person holding up the bread part of a sandwich with their hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489745.jpg', 'caption': 'A person checking out what kind of cheese is on the sub sandwich. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401429.jpg', 'caption': 'A man standing over a surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401429.jpg', 'caption': 'A boy walking in the ocean with a surf board under his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401429.jpg', 'caption': 'A man who is in the water next to a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401429.jpg', 'caption': 'A young man stands in the ocean water beside a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401429.jpg', 'caption': 'The man is ready to surf the waves on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259422.jpg', 'caption': 'A plate with pizza slices, chips, and cole slaw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259422.jpg', 'caption': 'Sliced of pizza sitting on a plate with chips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259422.jpg', 'caption': 'Plate of food with sandwich, chips and cole slaw', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259422.jpg', 'caption': 'A plate has some pasta and chips on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259422.jpg', 'caption': 'A plate of pasta with meat and chips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211420.jpg', 'caption': 'A girl is using her cell phone to take a picture of a fancy cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211420.jpg', 'caption': 'a couple of people are standing near a table with food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211420.jpg', 'caption': 'A girl takes a picture of a cake with a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211420.jpg', 'caption': 'There is a kit using a cell phone and her parents also with her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211420.jpg', 'caption': 'a few family members stand in a nice room ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545385.jpg', 'caption': 'A plate with a small square piece of cake with white frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545385.jpg', 'caption': 'A bowl with a piece of cake in it next to a spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545385.jpg', 'caption': 'A white pastry sitting in a beige ball next to a spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545385.jpg', 'caption': \"Just a small dessert shouldn't be too fattening, should it?\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545385.jpg', 'caption': 'A spoon next to a dessert inside of a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262200.jpg', 'caption': 'A group of kids at table around a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262200.jpg', 'caption': 'A group of kids around a table with a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262200.jpg', 'caption': 'A group of kids watching a woman light a candle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262200.jpg', 'caption': 'A group of young children standing around a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262200.jpg', 'caption': 'little kids sitting around a table that has a birthday cake on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023320.jpg', 'caption': 'A large cake shaped like a cup covered in coco powder sitting on a white cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023320.jpg', 'caption': 'A cake that has been made to look like a cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023320.jpg', 'caption': 'A white plate with a cake on top of it and one slice cut out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023320.jpg', 'caption': 'A cake sits on a plate with a knife behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023320.jpg', 'caption': 'A slice has been cut from the large cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012085.jpg', 'caption': 'A man that is laying down underneath a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012085.jpg', 'caption': 'The man is sleeping in a bed near two cats. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012085.jpg', 'caption': 'A bearded man sleeping with a cat on top of his head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012085.jpg', 'caption': 'a man is sleeping next to a couple of cats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012085.jpg', 'caption': ' A man sleeping in a bed with two cats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008775.jpg', 'caption': 'A bedroom has many posters on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008775.jpg', 'caption': 'A bedroom has gold paint and posters on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008775.jpg', 'caption': 'A bed is in a room with posters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008775.jpg', 'caption': 'A bed sitting up against a window under a wall covered in posters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008775.jpg', 'caption': 'a bedroom with some posters a blue and white bed and some pillows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384981.jpg', 'caption': 'A group of people gathered to celebrate a birthday.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384981.jpg', 'caption': 'The cake is decorated for the family celebration.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384981.jpg', 'caption': 'people gather around and sit at a table around a birthday cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384981.jpg', 'caption': 'a kid is sitting ion front of a cake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384981.jpg', 'caption': 'A woman sitting in front of a cake on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159736.jpg', 'caption': 'A woman grabbing a piece of cake off the top of a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159736.jpg', 'caption': 'Hand reaching for another piece of freshly made cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159736.jpg', 'caption': 'Small group of pastries being picked up off a grey plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159736.jpg', 'caption': 'Someone is munching off pieces of cake making a mess.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159736.jpg', 'caption': 'A woman breaking off a piece of bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253485.jpg', 'caption': 'A man and a women who are cutting a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253485.jpg', 'caption': 'Adult couple cutting small cake at indoor ceremony.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253485.jpg', 'caption': 'Man and woman jointly cutting a cake at an event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253485.jpg', 'caption': 'A bride and groom cut into their cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253485.jpg', 'caption': 'A couple cutting a piece of pizza, in a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138871.jpg', 'caption': 'a room with a bed and multiple items in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138871.jpg', 'caption': 'A bedroom filled with furniture and a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138871.jpg', 'caption': 'a room with a small bed well made', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138871.jpg', 'caption': 'An empty college dorm room with two beds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138871.jpg', 'caption': 'A view through a camera of a room with two bed, two desks, two chairs and a rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542960.jpg', 'caption': 'A man is water skiing on a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542960.jpg', 'caption': 'A man who is riding some sort of wooden object in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542960.jpg', 'caption': 'A man in a swimsuit rides on a board in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542960.jpg', 'caption': 'the man is holding on to a small boat craft in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542960.jpg', 'caption': 'A man that is on a board in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314112.jpg', 'caption': 'A beautiful woman in a white dress kissing a man while cutting a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314112.jpg', 'caption': 'A couple cutting into a brown wedding cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314112.jpg', 'caption': 'two people kissing while standing cutting a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314112.jpg', 'caption': 'A bride and groom cut into their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314112.jpg', 'caption': 'A man in a vest and tie kissing a woman in a white dress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469203.jpg', 'caption': 'A bride and a groom cut into a wedding cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469203.jpg', 'caption': 'A newlywed couple is cutting a wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469203.jpg', 'caption': 'A couple cutting their wedding cake together with one knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469203.jpg', 'caption': 'A bride and groom cutting their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469203.jpg', 'caption': 'A husband and wife jointly cutting their wedding cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143132.jpg', 'caption': 'A boy is standing in an inflatable pool on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143132.jpg', 'caption': ' A park where people in groups are enjoying.A boy is balancing on a board and playing on an air filled matress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143132.jpg', 'caption': 'a person standing on a robotic surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143132.jpg', 'caption': 'A young boy stands on a surf board inside of a pool', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143132.jpg', 'caption': 'A young child on a surfboard in a pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475398.jpg', 'caption': 'A woman standing next to a table holding a sheet cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475398.jpg', 'caption': 'A woman holding a rectangular shaped iced cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475398.jpg', 'caption': 'A young woman holding a large decorated cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475398.jpg', 'caption': 'A smiling woman holding a birthday cake for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475398.jpg', 'caption': 'A woman proudly presents a delicious cake with special frosting designs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095132.jpg', 'caption': 'A bed covered in pillows and a comforter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095132.jpg', 'caption': 'An unkempt bed, with a pillow, a blanket, and a book on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095132.jpg', 'caption': 'M messy bed with a pillow and a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095132.jpg', 'caption': 'A messy unmade bed with a pillow and a book on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095132.jpg', 'caption': 'On an unmade bed sits a blue book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479213.jpg', 'caption': 'A couple of women holding up a cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479213.jpg', 'caption': 'A couple of women holding a cake in their hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479213.jpg', 'caption': 'Two women in wigs are holding a birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479213.jpg', 'caption': 'Two smiling women holding a big cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479213.jpg', 'caption': 'two women hold a cake with a picture on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030549.jpg', 'caption': 'a few drag queens make some cake and eat it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030549.jpg', 'caption': 'two people wearing wigs holding a cake that has their picture on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030549.jpg', 'caption': 'Cake with a picture of two girls holding it in the picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030549.jpg', 'caption': 'Two women wearing wigs holding a cake with their picture on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030549.jpg', 'caption': 'a couple of people are holding up a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442031.jpg', 'caption': 'A bed sitting between two tables next to a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442031.jpg', 'caption': 'Very modern bedroom with a bed that looks like it floats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442031.jpg', 'caption': 'A bedroom with side tables, lights, and a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442031.jpg', 'caption': 'A large bed with a attached tables with hanging lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442031.jpg', 'caption': 'A bedroom that has a king sized bed in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047055.jpg', 'caption': 'A bed sitting inside of a room next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047055.jpg', 'caption': 'A very modern bedroom has lighting behind the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047055.jpg', 'caption': 'A modern bedroom with a large platform bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047055.jpg', 'caption': 'a gray bed sitting in side a bay window with a white dresser and two bedside tables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047055.jpg', 'caption': 'a large bed in a very large bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047781.jpg', 'caption': 'A bedroom with a full size bed and wooden headboard with matching drawers on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047781.jpg', 'caption': 'The hotel bed is designed for the business traveler.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047781.jpg', 'caption': 'A bedroom with a bed, checkerboard wallpaper above it, and some dressers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047781.jpg', 'caption': 'A very simple bedroom with a large bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047781.jpg', 'caption': 'The bed has lamps on the night stands next to the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281582.jpg', 'caption': 'Fed ex boxes are stacked up on each other on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281582.jpg', 'caption': 'A bed and table made entirely from shipping boxes and envelopes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281582.jpg', 'caption': 'A pile of fed ex boxes sitting on the floor near each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281582.jpg', 'caption': 'A large stack of Fedex boxes on a carpeted floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281582.jpg', 'caption': 'Fed Ex boxes are stacked in a room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453328.jpg', 'caption': 'Modern bed placed next to clear glass night stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453328.jpg', 'caption': 'A modern furnished bedroom with glass table and yellow bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453328.jpg', 'caption': 'A bed with a glass end table next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453328.jpg', 'caption': 'A modernized bed and nightstand with a see through design.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453328.jpg', 'caption': 'The arm of a bed rests on top of a glass drawer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066072.jpg', 'caption': 'A surfer surfing on the surfboard with an oar in the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066072.jpg', 'caption': 'A man surfing a small wave with a paddle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066072.jpg', 'caption': 'A man with an oar on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066072.jpg', 'caption': 'A surfer with a paddle catches a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066072.jpg', 'caption': 'A person wake boarding on a small wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442824.jpg', 'caption': 'A posh bed in a hotel room under a glass candle filled chandelier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442824.jpg', 'caption': 'Canopy bed surrounded by a lot of gold.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442824.jpg', 'caption': 'Very ornate bedroom with a chandelier over the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442824.jpg', 'caption': 'A bedroom with a chandelier and golden curtains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442824.jpg', 'caption': 'a bedroom with a chandalier and a canopy for the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271864.jpg', 'caption': 'An extravagant bedroom with focus on the chandelier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271864.jpg', 'caption': 'A large elaborate chandelier hanging over a fancy bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271864.jpg', 'caption': 'a fancy bed room with a canopy and a chandelier ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271864.jpg', 'caption': 'A room with extremely detailed golden wallpaper ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271864.jpg', 'caption': 'A chandelier is hanging over a bed in an ornately decorated room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272968.jpg', 'caption': 'Bedroom with a king size bed with wooden furniture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272968.jpg', 'caption': 'A large wooden bed filled with blankets and pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272968.jpg', 'caption': 'A bed made out of large slabs of wood, with end tables on both sides.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272968.jpg', 'caption': 'Unusual bed made from large wooden tree trunks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272968.jpg', 'caption': 'A bedroom has green carpeting and a bed with decorative wooden boards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532408.jpg', 'caption': 'a white bed in a large hotel room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532408.jpg', 'caption': 'A view of a modern day style bedroom with a desk and lounging area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532408.jpg', 'caption': 'A nice hotel room with a bed with a white cover and a nice work desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532408.jpg', 'caption': 'A living area with a bed, two chairs and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532408.jpg', 'caption': 'A neatly arranged hotel room with a bed, chair, and desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560332.jpg', 'caption': 'A suitcase sitting on a bench in front of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560332.jpg', 'caption': 'A suitcase next to a large bed in a nicely furnished room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560332.jpg', 'caption': 'A clean bedroom with a large bed and dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560332.jpg', 'caption': 'A large bed sitting up against a wooden dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560332.jpg', 'caption': 'The guest room is decorated in colonial style.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266160.jpg', 'caption': 'A boy in pool on a yellow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266160.jpg', 'caption': 'A boy riding a boogie board on a man made wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266160.jpg', 'caption': 'A boy laying on a boogie board in an artificial wave machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266160.jpg', 'caption': 'A little boy lying on a wakeboard riding a current.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266160.jpg', 'caption': 'A young boy rides a boogie board in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284379.jpg', 'caption': 'A young person riding a body board on a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284379.jpg', 'caption': 'A child rides a body board through a wave pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284379.jpg', 'caption': 'A boy is riding a boogie board through a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284379.jpg', 'caption': 'A kid on a boogie board in a pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284379.jpg', 'caption': 'A young boy is enjoy the water on his raft. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007867.jpg', 'caption': 'This pizza is laying inside of a steel pizza pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007867.jpg', 'caption': 'a close up of a pizza in a pan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007867.jpg', 'caption': 'A pizza pan with a pizza sitting on top of it covered in cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007867.jpg', 'caption': 'Pizza with cheese and toppings on a pizza pan on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007867.jpg', 'caption': 'A pizza of some sort on a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428105.jpg', 'caption': 'Two homemade pizzas on pans in an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428105.jpg', 'caption': 'a black oven with silver racks and two pizzas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428105.jpg', 'caption': 'Pans of pizza cook on wire racks inside an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428105.jpg', 'caption': 'Two trays of pizza are on the racks of an oven. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428105.jpg', 'caption': 'Two pizzas on trays cook in an oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155317.jpg', 'caption': 'A cake sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155317.jpg', 'caption': 'a square cake with frosting sitting on a round plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155317.jpg', 'caption': 'Baked and iced dessert item displayed on serving dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155317.jpg', 'caption': 'A large chocolate cake is sitting on a cake pedestal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155317.jpg', 'caption': 'A cake that is sitting on a glass platter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462466.jpg', 'caption': 'a lady lighting candles on a birthday cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462466.jpg', 'caption': 'A woman getting ready to light candles on a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462466.jpg', 'caption': 'A group of women standing around a sheet cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462466.jpg', 'caption': 'A lady lights candles on a birthday cake at a party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462466.jpg', 'caption': 'a woman cutting a cake in front of some people ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280363.jpg', 'caption': 'A living area with a bed and a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280363.jpg', 'caption': 'An empty bed being overlooked by a sunny window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280363.jpg', 'caption': 'A view of a bedroom as seen from the outside with the reflection of bushes on the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280363.jpg', 'caption': 'a large bed in a room with a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280363.jpg', 'caption': 'an old fashioned iron frame bed sitting in a rundown room with vegetation growing inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416739.jpg', 'caption': 'a white framed bed with no mattress in a small room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416739.jpg', 'caption': 'there is a bed with a metal frame and no mattress', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416739.jpg', 'caption': 'A bedroom area with a metal framed bed and picture on wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416739.jpg', 'caption': 'A bedroom that has a bed frame but no mattress. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416739.jpg', 'caption': 'a bed frame that is set up in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547079.jpg', 'caption': 'A group of people standing in a kitchen making pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547079.jpg', 'caption': 'A large kitchen is behind a brick and glass display table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547079.jpg', 'caption': 'Three restaurant employees behind a counter preparing food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547079.jpg', 'caption': 'A group of cooks work in a small kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547079.jpg', 'caption': 'an image of a group of workers making pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513699.jpg', 'caption': 'A group of people that are at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513699.jpg', 'caption': 'LOTS OF MEN, WOMEN, AND CHILDREN ON THE BEACH WITH SURF BOARDS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513699.jpg', 'caption': 'Parents and their children surfing at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513699.jpg', 'caption': 'Group of adults and children at beach playing with various types of surfboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513699.jpg', 'caption': 'A beach full of people with surf and bogey boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330531.jpg', 'caption': 'A pizza with various toppings is pictured uncooked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330531.jpg', 'caption': 'A pizza has toppings consisting of sauce, olives, and meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330531.jpg', 'caption': 'A black surface with a pizza covered in cheese and olives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330531.jpg', 'caption': 'a close up of uncooked pizza on a surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330531.jpg', 'caption': 'A pizza that is sitting on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132067.jpg', 'caption': 'A person laying in bed in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132067.jpg', 'caption': 'Someone has a small monitor in their room near their bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132067.jpg', 'caption': 'A person lying on a a couch under a red blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132067.jpg', 'caption': 'A person is laying upside down on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132067.jpg', 'caption': 'A dorm or apartment bedroom is pictured with posters and a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045057.jpg', 'caption': 'This messy pizza is covered in cheese and mushrooms', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045057.jpg', 'caption': 'A small pizza being served on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045057.jpg', 'caption': 'A large pizza with cheese and mushrooms on a serving tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045057.jpg', 'caption': 'A pizza with sauce, mushrooms,and cheese on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045057.jpg', 'caption': 'A thin crust pizza with cheese and mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145215.jpg', 'caption': 'A surfer carrying his surf board out of the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145215.jpg', 'caption': 'A surfer heads out into the ocean with surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145215.jpg', 'caption': 'A person carrying a surfboard out of the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145215.jpg', 'caption': 'A man holding a surfboard while standing in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145215.jpg', 'caption': 'A surfer exiting the water with board in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068277.jpg', 'caption': 'A father reads a story to a child while lying in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068277.jpg', 'caption': 'a male with a beard a book and a child in bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068277.jpg', 'caption': 'there is a man reading a book to a child while laying in the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068277.jpg', 'caption': 'A man reading a book to a child in a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068277.jpg', 'caption': 'A man laying in bed with w child reading him a story', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195023.jpg', 'caption': 'Man wearing wetsuit walking with a blue surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195023.jpg', 'caption': 'A man walking along a beach in a wet suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195023.jpg', 'caption': 'The man has a wet suit on to go in to the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195023.jpg', 'caption': 'A man walking on the beach carrying a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195023.jpg', 'caption': 'a male in a wet suit is carrying a blue and white board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249246.jpg', 'caption': 'Lots of people are surfing and swimming in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249246.jpg', 'caption': 'A group of people who are swimming in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249246.jpg', 'caption': 'Surfers and swimmers are playing in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249246.jpg', 'caption': 'One man laying on a surfboard whike another man is standing on his surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249246.jpg', 'caption': 'A surfer catches a wave while others wait for it to reach them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463296.jpg', 'caption': 'A living room has modern white furniture and red walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463296.jpg', 'caption': 'The furniture in the large living room looks new.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463296.jpg', 'caption': 'A small living room with furniture, a window and fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463296.jpg', 'caption': 'A living area with white leather furniture and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463296.jpg', 'caption': 'A group of chairs sitting in a living room by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560756.jpg', 'caption': 'White leather sofas with ottoman near lamps in orange living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560756.jpg', 'caption': 'A living room is filled with living furniture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560756.jpg', 'caption': 'A red living room decorated with with a white leather couch, love seat, chair and ottoman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560756.jpg', 'caption': 'a white couch that is in a red room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560756.jpg', 'caption': 'a living room with couches and a lamp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380487.jpg', 'caption': 'A little girl is sitting on her bed that has a flower bed spread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380487.jpg', 'caption': 'The little girl has a brightly colored room decorated with flowers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380487.jpg', 'caption': 'A young girl on her bed in her room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380487.jpg', 'caption': 'a little girl that is sitting on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380487.jpg', 'caption': 'A young girl sitting in her bed smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510254.jpg', 'caption': 'A woman on sitting on top a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510254.jpg', 'caption': 'A woman smiling while sitting on a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510254.jpg', 'caption': 'The young woman smiles as she sits on the bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510254.jpg', 'caption': 'A young woman sitting on a bed near a wallpapered wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510254.jpg', 'caption': 'A young lady wearing a yellow dress setting on a large bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298726.jpg', 'caption': 'A group of men play a game of tennis together on a grass tennis court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298726.jpg', 'caption': 'People are playing tennis on a grass court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298726.jpg', 'caption': 'some tennis players on a court with balls and rackets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298726.jpg', 'caption': 'Several people on a tennis court that has several tennis balls on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298726.jpg', 'caption': 'Guys on thegrass court playing a game of tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080865.jpg', 'caption': 'A man stands on a tennis court while holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080865.jpg', 'caption': 'The man has a tennis racket in his hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080865.jpg', 'caption': 'this is a man standing on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080865.jpg', 'caption': 'A male tennis player engaged in practice on asphalt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080865.jpg', 'caption': 'a man is holding a tennis racket on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389595.jpg', 'caption': 'A person aiming the remote at the tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389595.jpg', 'caption': 'A hand holding a remote control pointed at a television. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389595.jpg', 'caption': 'A hand holding a remote control aimed at a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389595.jpg', 'caption': 'A hand holding a remote aimed at the television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389595.jpg', 'caption': 'A mans hand holding a television remote pointed at the TV', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135976.jpg', 'caption': 'Laptop and mouse sits on desk in front of computer monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135976.jpg', 'caption': 'A desk with a laptop, computer monitor and phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135976.jpg', 'caption': 'A computer and laptop side by side with programs open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135976.jpg', 'caption': 'A laptop computer sits in front of a monitor with an email account open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135976.jpg', 'caption': 'A few computers and wires are on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432035.jpg', 'caption': 'a small pizza that is on a red plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432035.jpg', 'caption': 'A tomato and cheese pizza is sitting on a red plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432035.jpg', 'caption': 'a close up of a plate of sliced pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432035.jpg', 'caption': 'A whole pizza is on a red serving platter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432035.jpg', 'caption': 'A pizza on a red plate a ith to be served', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227359.jpg', 'caption': 'Picture of a person that is reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227359.jpg', 'caption': 'A boy sitting on a chair with his laptop ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227359.jpg', 'caption': 'A student using both a book and computer to study.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227359.jpg', 'caption': 'A man is typing on his laptop in a large chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227359.jpg', 'caption': 'A man sitting on a chair with a laptop on his lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278742.jpg', 'caption': 'Students in a study hall working on computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278742.jpg', 'caption': 'a public library full of students and young adults.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278742.jpg', 'caption': 'People working on computers in a crowded library.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278742.jpg', 'caption': 'Clemson library with people seated at computers and desks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278742.jpg', 'caption': 'An office of workers, laptop computers, and chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316438.jpg', 'caption': 'A very pretty wooden board with a pizza on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316438.jpg', 'caption': 'A pizza with spinach on top of the sauce and cheese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316438.jpg', 'caption': 'Square pizza on wood paddle with green leaves on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316438.jpg', 'caption': 'The pizza is next to a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316438.jpg', 'caption': 'Heavily topped cut up pizza sitting on a peel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556478.jpg', 'caption': 'A picture of two different types of pizzas on separate pans. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556478.jpg', 'caption': 'Two handmade pizzas sit on cookie sheets on top of the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556478.jpg', 'caption': 'There are two pans with pizzas on them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556478.jpg', 'caption': 'Two pizzas sitting on top of metal pans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556478.jpg', 'caption': 'two uncooked pizzas covered in toppings sit in baking trays ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116413.jpg', 'caption': 'An oven filled with three pizzas covered in cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116413.jpg', 'caption': 'A home made pizza sitting on an oven rack ready to be cooked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116413.jpg', 'caption': 'A pizza being put into an oven where several pizzas already are.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116413.jpg', 'caption': 'The uncooked pizza is sitting on the oven rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116413.jpg', 'caption': 'a couple of pizzas are inside of a oven ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275202.jpg', 'caption': 'A blurry image of pizza with a fork, knife and drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275202.jpg', 'caption': 'A margarita pizza in a restaurant with a soda on the side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275202.jpg', 'caption': 'a small pizza that is on a brown table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275202.jpg', 'caption': 'a delicious lookign pizza has been cut and quarteered', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275202.jpg', 'caption': 'A pizza is sitting on a table, along with a drink and silverware.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156100.jpg', 'caption': 'Two pizzas are sitting in boxes with only one slice missing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156100.jpg', 'caption': 'a couple of pizzas that are sitting next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156100.jpg', 'caption': 'Slices have been taken from each of the two pizzas in boxes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156100.jpg', 'caption': 'These are two pizzas in pizza boxes with a slice out of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156100.jpg', 'caption': 'Two pizzas are sitting in boxes each with a slice taken out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156100.jpg', 'caption': 'Two pizzas are sitting in boxes each with a slice missing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545390.jpg', 'caption': 'A woman holding a pizza up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545390.jpg', 'caption': 'A beautiful woman holding a cheese pizza in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545390.jpg', 'caption': 'A woman is diplaying a pizza that fits in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545390.jpg', 'caption': 'a lady that is holding up a large pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545390.jpg', 'caption': ' A woman holding a large pizza in a dark room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094299.jpg', 'caption': 'Child wearing a helmet and holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094299.jpg', 'caption': 'a close up of a young child wearing a helmet and holding a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094299.jpg', 'caption': 'A small child is holding a tennis racquet on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094299.jpg', 'caption': 'A small child with a helmet on holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094299.jpg', 'caption': 'A child wearing a helmet is holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264017.jpg', 'caption': 'a small white plate with a slice of pizza on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264017.jpg', 'caption': 'A slice of pizza on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264017.jpg', 'caption': 'A slice of pizza sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264017.jpg', 'caption': 'One slice of pizza covered in parmesan cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264017.jpg', 'caption': 'an image of a slice of pizza on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508811.jpg', 'caption': 'A man holding a tennis racquet reaching into the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508811.jpg', 'caption': 'there is a man that is playing tennis on the court ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508811.jpg', 'caption': 'A guy tossing the ball in the air getting ready to serve the ball in a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508811.jpg', 'caption': 'A male tennis player in action on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508811.jpg', 'caption': 'The man is getting ready to serve the tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516913.jpg', 'caption': 'Tennis player about to hit the ball back to opponent. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516913.jpg', 'caption': 'A man playing a game of tennis on a blue tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516913.jpg', 'caption': 'The tennis player on a blue court has her racquet raised in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516913.jpg', 'caption': 'A tennis player is preparing to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516913.jpg', 'caption': 'A tennis player in a blue and white outfit preparing to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155125.jpg', 'caption': 'A man holding a slice of pizza at a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155125.jpg', 'caption': 'The young man is preparing to take a bite of his pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155125.jpg', 'caption': 'a boy or young man about to eat a large piece of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155125.jpg', 'caption': 'A man sitting at a table holding a large piece of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155125.jpg', 'caption': 'An Asian man prepares to eat a giant piece of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164330.jpg', 'caption': 'People are sitting at a table and eating some pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164330.jpg', 'caption': 'A group of people sitting around a table filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164330.jpg', 'caption': 'A group of people eating pizza at a restaurant table wit three pizzas on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164330.jpg', 'caption': \"A woman looking down at some pizza's as she waits for others.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164330.jpg', 'caption': 'people sitting around a table filled with a lot of pizzas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466565.jpg', 'caption': 'Four people in a restaurant getting their photo taken at their table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466565.jpg', 'caption': 'A group of asian people eating pizza in a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466565.jpg', 'caption': 'Family at a pizza restaurant posing for a picture before meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466565.jpg', 'caption': 'a group of people pose at a pizza restaraunt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466565.jpg', 'caption': 'Oriental family smiling at camera during a meal at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190291.jpg', 'caption': 'A group of people sitting at a table holding different pizzas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190291.jpg', 'caption': 'A family is having a pizza dinner at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190291.jpg', 'caption': 'A group of people sitting around a table with pizza on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190291.jpg', 'caption': 'Several people that are eating some food together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190291.jpg', 'caption': 'a group of people sitting at a table with different pans of pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186427.jpg', 'caption': 'A man standing on top of a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186427.jpg', 'caption': 'a tennis player on a court with a bucket of balls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186427.jpg', 'caption': 'A man stands on a tennis court with a bucket of balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186427.jpg', 'caption': 'A man on a tennis court with a basket of practice balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186427.jpg', 'caption': 'A man standing by himself on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519683.jpg', 'caption': 'Crust topped with meat and vegetables on a stone pizza board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519683.jpg', 'caption': 'A pizza on a cutting board is topped by vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519683.jpg', 'caption': 'A pizza topped with lots of veggies on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519683.jpg', 'caption': 'A large pizza covered in vegetables and bacon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519683.jpg', 'caption': 'A pizza is covered in greens and some kind of meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155604.jpg', 'caption': 'Pizza with toppings baking in oven with steel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155604.jpg', 'caption': 'A pizza sitting inside of an oven cooking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155604.jpg', 'caption': 'A pizza with lots of toppings in cooking in the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155604.jpg', 'caption': 'A pizza with red peppers and olives bakes in an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155604.jpg', 'caption': 'A pizza is cooking on a board inside an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315810.jpg', 'caption': 'A male tennis player engaged in a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315810.jpg', 'caption': 'The tennis player in the blue shirt is standing on the tip of his toes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315810.jpg', 'caption': 'A tennis player on a tennis court holding a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315810.jpg', 'caption': 'A man in a blue shirt leans back with his tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315810.jpg', 'caption': 'A tennis player winds up for a mighty serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251395.jpg', 'caption': 'A man holding a tennis ball and a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251395.jpg', 'caption': 'A tennis player holds the ball in front of him in preparation of a serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251395.jpg', 'caption': 'a male tennis player on the court about to serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251395.jpg', 'caption': 'A tennis player prepares to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251395.jpg', 'caption': 'A man is posed in mid swing about to serve a ball in tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246649.jpg', 'caption': 'A shirtless man playing tennis on a blue court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246649.jpg', 'caption': 'an image of a shirtless man hitting tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246649.jpg', 'caption': 'A man is standing on a court with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246649.jpg', 'caption': 'A man on a court swinging a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246649.jpg', 'caption': 'This man is playing tennis without a shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407945.jpg', 'caption': 'Someone picks up a slice of fresh pizza with one hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407945.jpg', 'caption': 'A person lifts a slice of gooey pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407945.jpg', 'caption': 'Cheesy pizza with tomatoes, onions and green peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407945.jpg', 'caption': 'a hand holding a slice of vegetable pizza that contains tomatoes and green pepper,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407945.jpg', 'caption': 'A cheesy pizza with tomatoes and other toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123071.jpg', 'caption': 'a person cutting a pizza with a knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123071.jpg', 'caption': 'Pizza with tomato and green olives being cut by a big knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123071.jpg', 'caption': 'A person slicing a tomato and olive pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123071.jpg', 'caption': 'A person slicing pizza in a box with a large knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123071.jpg', 'caption': 'Someone who is cutting a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371910.jpg', 'caption': 'A person is working at a computer with a remote control and camera next to the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371910.jpg', 'caption': 'A woman using a laptop computer on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371910.jpg', 'caption': 'two female hands and a black laptop and a camera and controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371910.jpg', 'caption': \"A person's hands are typing on a laptop keyboard that is sitting next to a remote control. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371910.jpg', 'caption': 'a table with a camera, a remote and a person using a laptop computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385320.jpg', 'caption': 'a baby girl with a tooth brush in her mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385320.jpg', 'caption': 'A small child standing with a toothbrush in her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385320.jpg', 'caption': 'a small child holding a toothbrush in their mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385320.jpg', 'caption': 'A young child looks at the camera while holding a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385320.jpg', 'caption': 'A baby girl standing up and holding a toothbrush in her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226542.jpg', 'caption': 'A man is using a toothbrush to clean his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226542.jpg', 'caption': 'A man holding a toothbrush cleaning his teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226542.jpg', 'caption': 'a male with a beard is brushing his teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226542.jpg', 'caption': 'A close up view of a guy brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226542.jpg', 'caption': 'A man holding a blue toothbrush, brushing his teeth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016098.jpg', 'caption': 'A man is holding a wii controller while a Super Mario Bros book appears in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016098.jpg', 'caption': \"a closeup of a person's hands as it plays with a Wii controller in front of booklet with Mario and Luigi characters\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016098.jpg', 'caption': 'A person sitting and playing with a controller, with Mario in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016098.jpg', 'caption': 'A hand that is holding a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016098.jpg', 'caption': 'hands holding a nintendo wiimote with instruction manuals on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405068.jpg', 'caption': 'A living room area with some couches and a television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405068.jpg', 'caption': 'A living room is shown with couches and a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405068.jpg', 'caption': 'An empty dining room with leather furniture and a turned on TV. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405068.jpg', 'caption': 'A room that has two couches and a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405068.jpg', 'caption': 'Living room with a large window on one side of the room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056701.jpg', 'caption': 'A dog is asleep on the floor next to a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056701.jpg', 'caption': 'a woman with eye glasses laying on a coach next to a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056701.jpg', 'caption': 'A dog sleeps at the foot of a couch where his person is lying', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056701.jpg', 'caption': 'Person reading a magazine on the couch while dog sleeps next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056701.jpg', 'caption': 'a person in a red top is laying on a brown couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188434.jpg', 'caption': 'A view of a living room with an Christmas tree on the left.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188434.jpg', 'caption': 'A living room with a Christmas tree in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188434.jpg', 'caption': 'A living area with a christmas tree in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188434.jpg', 'caption': 'An outdated living room area during Christmas season.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188434.jpg', 'caption': 'A television and a table in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199449.jpg', 'caption': 'A living room with hard wood floors filled with furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199449.jpg', 'caption': 'A couch and chair on a hardwood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199449.jpg', 'caption': 'A dog curls up on a couch to go to sleep. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199449.jpg', 'caption': 'A living room with lamps, a couch and a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199449.jpg', 'caption': 'A living room area has a wooden floor a gray couch and chair and several tables and lamps.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000365289.jpg', 'caption': 'a girl holding a stuffed rabbit on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365289.jpg', 'caption': 'Little girl holding a stuffed bunny rabbit toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365289.jpg', 'caption': 'a little girl sitting in a chair holding a stuffed bunny', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010766.jpg', 'caption': 'a little girl holding onto a teddy bear tight', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010766.jpg', 'caption': 'a little asian girl holding a stuffed rabbit close to her face ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010766.jpg', 'caption': 'The little girl is hugging her toy happily.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010766.jpg', 'caption': 'a little girl that is holding a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010766.jpg', 'caption': 'A little girl hugging her teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209604.jpg', 'caption': 'Shelves are filled with parcels that have red ribbons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209604.jpg', 'caption': 'Shelves in a store full of bottles of alcohol.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209604.jpg', 'caption': 'Shelves filled with Christmas items in a retail shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209604.jpg', 'caption': 'The display at a shop with a stuffed animal wearing a hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209604.jpg', 'caption': 'A large amount of toys are stacked on shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289610.jpg', 'caption': 'A group of teddy bears standing next to each other on a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289610.jpg', 'caption': 'a curio full of stuffed animals and figurines', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289610.jpg', 'caption': 'Teddy bears dressed up are on a display shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289610.jpg', 'caption': 'A display case of teddy bears wearing various clothing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289610.jpg', 'caption': 'A case full of teddy bears are dressed in religious symbols. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521967.jpg', 'caption': 'A teddy bare laying down with tears in his arm pit and leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521967.jpg', 'caption': 'A soft toy teddy bear on the red bedding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521967.jpg', 'caption': 'An operative teddy bear laying on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521967.jpg', 'caption': 'A brown bear with various organs on display laying on red table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521967.jpg', 'caption': 'A sad teddy bear thats is falling apart and wants to be fixed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027235.jpg', 'caption': 'a brown teddy bear is sitting on a green bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027235.jpg', 'caption': 'A large plush bear sits in the corner of a bedroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027235.jpg', 'caption': 'A stuffed teddy bear sitting on a green bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027235.jpg', 'caption': 'a teddy bear on a bed in the corner of a bedroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027235.jpg', 'caption': \"A teddy bear sits on the bed in a colorful children's room.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299716.jpg', 'caption': 'a sign on a wall with a clock in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299716.jpg', 'caption': \"A kitchen with a clock mounted on it's wall.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299716.jpg', 'caption': 'a small clock is hanging above a counter top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299716.jpg', 'caption': 'a yellow and black clock a mirror and a cabinet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299716.jpg', 'caption': 'A clock is seen on a wall above a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294119.jpg', 'caption': 'A smart phone sitting on top of a bean bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294119.jpg', 'caption': 'A smartphone placed in front of a monitor screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294119.jpg', 'caption': 'An iPhone resting on a round black holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294119.jpg', 'caption': 'A cell phone sitting in a cell phone holder. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294119.jpg', 'caption': 'An iPhone resting in a bean bag holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348654.jpg', 'caption': 'A smart device sitting on top of a pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348654.jpg', 'caption': 'a close up of a phone on a dock on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348654.jpg', 'caption': 'The cell phone is in front of a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348654.jpg', 'caption': 'The black ipod is charging in the dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348654.jpg', 'caption': 'A cellphone that is sitting in a black holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189845.jpg', 'caption': 'a women that is walking down a sidwalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189845.jpg', 'caption': 'Young woman walking down the sidewalk with cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189845.jpg', 'caption': 'The woman in high heels is looking at her phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189845.jpg', 'caption': 'A woman walking down the street looking at her phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189845.jpg', 'caption': 'A woman walking down the sidewalk with a cell phone in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534957.jpg', 'caption': 'White room with wood floor and table with appliances', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534957.jpg', 'caption': 'A hallway with wooden floors and a table in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534957.jpg', 'caption': 'A small refrigerator and microwave on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534957.jpg', 'caption': 'A yellow table sitting on top of a hardwood floor with boxes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534957.jpg', 'caption': 'A white break room with a wooden floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101622.jpg', 'caption': 'A man in a cubicle with an Indiana Jones T Shirt talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101622.jpg', 'caption': 'a man standing up in a room on his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101622.jpg', 'caption': 'A man talking on his cell phone in a cubicle ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101622.jpg', 'caption': 'A man who is talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101622.jpg', 'caption': 'Man talks on a cell phone while in his cubicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320039.jpg', 'caption': 'a close up of a child eating food ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320039.jpg', 'caption': 'A girl is sitting and eating some spaghetti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320039.jpg', 'caption': 'A girl eating a plate of spaghetti with a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320039.jpg', 'caption': 'A person wearing a pink, blue and white top, eating spaghetti with a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320039.jpg', 'caption': 'A young girl is enjoying her plate of spaghetti. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421010.jpg', 'caption': 'Two women having lunch together while man stood by them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421010.jpg', 'caption': 'Two women sitting at an outdoor table at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421010.jpg', 'caption': 'Two women sit at a table as a young man looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421010.jpg', 'caption': 'A man standing at a table with two women.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421010.jpg', 'caption': 'A couple of women sitting at a table having drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376959.jpg', 'caption': 'A baby in a high chair with paper on the table in front of her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376959.jpg', 'caption': 'Small girl holding recorder near a table with unfinished drawing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376959.jpg', 'caption': 'A young girl sits, holding a phone, looking aghast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376959.jpg', 'caption': 'A little girl that is sitting in front of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376959.jpg', 'caption': 'Little girl sitting at a table in front of a piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137658.jpg', 'caption': 'A hand holding open a pouch with a cell phone inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137658.jpg', 'caption': 'A closeup of a hand manipulating gadgets in a pocket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137658.jpg', 'caption': 'An electronics device sitting in the pocket of a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137658.jpg', 'caption': 'a guy with his hand on his pocket with his phone in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137658.jpg', 'caption': 'A phone and another device in a small pouch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087199.jpg', 'caption': 'A man in costume talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087199.jpg', 'caption': 'A man stands and talks on his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087199.jpg', 'caption': 'A man in strange attire on a phone in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087199.jpg', 'caption': 'A big man speaks on a cell phone while at a vintage festival.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087199.jpg', 'caption': 'a man standing in a costume talking on a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410337.jpg', 'caption': 'A person on a cell phone in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410337.jpg', 'caption': 'A woman holding a smart phone in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410337.jpg', 'caption': 'A girl standing with a cell phone in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410337.jpg', 'caption': 'The young people are texting on their cel phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410337.jpg', 'caption': 'A group all looking at their cell phones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057545.jpg', 'caption': 'A man walking under a tree while talking on a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057545.jpg', 'caption': 'A man holds a cell phone up to his ear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057545.jpg', 'caption': 'A man is seen talking on his cell phone outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057545.jpg', 'caption': 'A man in uniform with a cell phone up to his ear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057545.jpg', 'caption': 'A man on a phone in front of a tree with an animal in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562870.jpg', 'caption': 'A smart phone sitting on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562870.jpg', 'caption': 'a silver and black mobile phone with small attachments to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562870.jpg', 'caption': 'A small cell phone the top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562870.jpg', 'caption': 'cell phone with accessories attached to it left on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562870.jpg', 'caption': 'Closeup of a white and black cellphone on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162952.jpg', 'caption': 'A young lady is on her phone as a lady in the background looks on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162952.jpg', 'caption': 'A man is messing about with his cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162952.jpg', 'caption': 'A woman looking down at her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162952.jpg', 'caption': 'A woman looks at a bottle of wine as a man uses his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162952.jpg', 'caption': 'A lady standing by a sliding door reading her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573206.jpg', 'caption': 'a pizza with olives sitting on a pizza pan on top of an oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573206.jpg', 'caption': 'A pizza sits on a pan waiting to go in the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573206.jpg', 'caption': 'A pizza on a tray sitting on top of a stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573206.jpg', 'caption': 'A homemade focaccia is ready for the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573206.jpg', 'caption': 'A large home made pizza ready to be cooked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191270.jpg', 'caption': \"A man pointing to a baby's picture on a bulletin board. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191270.jpg', 'caption': 'A man pointing to a baby picture on a refrigerator door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191270.jpg', 'caption': 'A collection of pictures on the refrigerator door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191270.jpg', 'caption': 'A man is pointing to pictures posted on the refridgerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191270.jpg', 'caption': 'A man points to a baby in a collage of family photographs and mementos.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169891.jpg', 'caption': 'A 50s style fridge with a couple magnets on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169891.jpg', 'caption': 'Older white refrigerator near a red countertop and a bed in the other room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169891.jpg', 'caption': 'The white fridge stands alone in its own space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169891.jpg', 'caption': 'A old fashioned fridge in a small studio room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169891.jpg', 'caption': 'A white refrigerator with a bed in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503772.jpg', 'caption': 'A metallic refrigerator freezer sitting inside of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503772.jpg', 'caption': 'A small kitchen with a stove and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503772.jpg', 'caption': \"A stainless steel refrigerator in a home's kitchen.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503772.jpg', 'caption': 'a kitchen with a stove and a refrigerator ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503772.jpg', 'caption': 'A kitchen has a fridge, a stove, and a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180490.jpg', 'caption': 'A room with a refrigerator with a house plant sitting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180490.jpg', 'caption': 'A partial view of a refrigerator with a potted plant on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180490.jpg', 'caption': 'A thin wooden door and a refrigerator with a plant on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180490.jpg', 'caption': 'A room with a door and a small refrigerator ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180490.jpg', 'caption': 'A white fridge placed next to a wooden door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385633.jpg', 'caption': 'A refrigerator that has a plant on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385633.jpg', 'caption': 'A room has a refrigerator with a potted plant on top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385633.jpg', 'caption': 'A refrigerator with a plant on top in an otherwise empty room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385633.jpg', 'caption': 'A plant sits on top of a refrigerator in an empty room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385633.jpg', 'caption': 'A fridge in an empty room with a plant on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310325.jpg', 'caption': 'A refrigerator with an ice machine and two vertical doors stands on a tile floor next to a door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310325.jpg', 'caption': 'A stainless steel refrigerator sitting in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310325.jpg', 'caption': 'A beautiful and black refrigerator in a white kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310325.jpg', 'caption': 'A large silver fridge in a tiled kitchen ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310325.jpg', 'caption': 'A stainless steel double door refrigerator with black accents', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053542.jpg', 'caption': 'People standing around a two story build with a clock on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053542.jpg', 'caption': 'People touring stop to look at a red building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053542.jpg', 'caption': 'A clock sitting next to a pier, with a group of people below it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053542.jpg', 'caption': 'People walking across a bridge near a building with a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053542.jpg', 'caption': 'A red building with a crowd of people outside it near the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058915.jpg', 'caption': 'A large clock and a sign on top of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058915.jpg', 'caption': 'a big sign sits above a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058915.jpg', 'caption': 'Public Market sign with clock near farmer sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058915.jpg', 'caption': 'A sign for a market is displayed on a roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058915.jpg', 'caption': 'a red sign and a clock above a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356302.jpg', 'caption': 'This kitchen has a metal side by side refrigerator/freezer combo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356302.jpg', 'caption': 'View of a stainless steel side by side refrigerator in the corner of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356302.jpg', 'caption': 'A double door refrigerator in the kitchen near the counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356302.jpg', 'caption': 'a dated kitchen with a stainless steel refrigerator inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356302.jpg', 'caption': 'A new stainless steel refrigerator is in an older kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082327.jpg', 'caption': 'A fancy clock hung up on a decorated wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082327.jpg', 'caption': 'a clock on a wall with lights on the ceiling ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082327.jpg', 'caption': 'A large clock is on the colored wall of this building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082327.jpg', 'caption': 'A clock mounted to a wall painted with colorful colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082327.jpg', 'caption': 'a clock that is up by the ceiling on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331807.jpg', 'caption': 'A cutting tray with some lemons and a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331807.jpg', 'caption': 'Sliced lemons and a knife rest on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331807.jpg', 'caption': 'A wood cutting board on a counter with utensils and a knife laying on the board, next to a cut lemon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331807.jpg', 'caption': 'A view of a kitchen full of kitchen utensils on a cutting board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331807.jpg', 'caption': 'A paring knife on top of a cutting board with lemon slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453756.jpg', 'caption': 'a collage of photos with bowl and pots ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453756.jpg', 'caption': 'A stock photo shows different blue decor on shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453756.jpg', 'caption': 'Blue-hued plates, vases and watering pail displayed in four images.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453756.jpg', 'caption': 'The plates, bowls and bottles were all displayed beautifully.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453756.jpg', 'caption': 'An assortment of bright blue glass dishes and bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153607.jpg', 'caption': 'A wide blue vase is holding an orange daisy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153607.jpg', 'caption': 'The bowls have water and a single flower in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153607.jpg', 'caption': 'Three pictures of a blue vase with a flower in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153607.jpg', 'caption': 'A flower sits inside of a blue vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153607.jpg', 'caption': 'a glass vase with an orange flower on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477949.jpg', 'caption': 'An arrangement of brightly colored flowers and greenery awakens a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477949.jpg', 'caption': 'A bunch of flower on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477949.jpg', 'caption': 'Colorful variations of flowers sitting in a vase in front of a brick wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477949.jpg', 'caption': 'a vase of colorful flowers sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477949.jpg', 'caption': 'A vase filled with a red and yellow flower arrangement in front of a brick pillar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300138.jpg', 'caption': 'two white and blue vases and a white vase with a white and yellow flower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300138.jpg', 'caption': 'The dishes are white with blue details and a daisy in the vase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300138.jpg', 'caption': 'a couple of glass vases with a flower growing out of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300138.jpg', 'caption': 'A collection of containers are set on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300138.jpg', 'caption': 'a close up of a pitcher and a vase with a flower inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527025.jpg', 'caption': 'People standing outside doorway with ribbon across it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527025.jpg', 'caption': 'A group of people standing outside of a doorway with a ribbon on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527025.jpg', 'caption': 'A group of people stand outside a building at a ribbon cutting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527025.jpg', 'caption': 'Some people are waiting in an open doorway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527025.jpg', 'caption': 'This is a picture of a house warming party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576939.jpg', 'caption': 'A collection of small scissors labeled and pinned on a board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576939.jpg', 'caption': 'Many different pairs of scissors hanging on a wall with prices on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576939.jpg', 'caption': 'A bunch of surgical scissors are sitting on a table labeled with tags. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576939.jpg', 'caption': 'A view of many different scissors on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576939.jpg', 'caption': 'A pile of various types of scissors on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527248.jpg', 'caption': 'A large crowd is attending a community fair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527248.jpg', 'caption': 'A crowd of people walking in an outdoor fair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527248.jpg', 'caption': 'A crowd of people at a festival type event in front of a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527248.jpg', 'caption': 'The building has a clock displayed on the front of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527248.jpg', 'caption': 'A festival with people and tents outside a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039743.jpg', 'caption': 'Two children who are sitting next to each other naked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039743.jpg', 'caption': 'A pair of twins sitting in the bathroom, one is holding a brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039743.jpg', 'caption': 'A couple of small children sitting next to a whit sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039743.jpg', 'caption': 'Two toddlers each sitting on their own little potties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039743.jpg', 'caption': 'A couple of very small cute kids in the rest room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353136.jpg', 'caption': 'A person brushing a cat with a brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353136.jpg', 'caption': 'A woman brushing her cat that is laying on a radiator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353136.jpg', 'caption': 'A woman is brushing her large gray cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353136.jpg', 'caption': 'Cage sitting atop a heater looking out windowpane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353136.jpg', 'caption': 'A woman that is sitting down near a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083915.jpg', 'caption': 'A concrete building with towers, a steep in the middle and a clock underneath.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083915.jpg', 'caption': 'A large gray building with a clock tower surrounded by some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083915.jpg', 'caption': 'a big tower that is surrounded by trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083915.jpg', 'caption': 'A large gray building with a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083915.jpg', 'caption': 'A stone building that has a clock on the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129159.jpg', 'caption': 'A large clock tower rises up above the surrounding buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129159.jpg', 'caption': 'A clock tower as viewed from a railway station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129159.jpg', 'caption': 'The infamous Big Ben clock tower underneath a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129159.jpg', 'caption': 'a brown clock tower made of stone on a cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129159.jpg', 'caption': 'A large clock tower stands above the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529636.jpg', 'caption': 'a large tower that has a big clock at the top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529636.jpg', 'caption': 'Two clocks are visible on the sides of the large clock tower. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529636.jpg', 'caption': 'A low angle perspective photo of a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529636.jpg', 'caption': 'Big Ben shows the time as 1:20 with a blue sky around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529636.jpg', 'caption': 'A large tower that has a clock on the top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457691.jpg', 'caption': 'A large brick clock tower in the middle of a town. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457691.jpg', 'caption': \"A very tall clock tower with two giant clocks on it's sides.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457691.jpg', 'caption': 'a large tower that has a big clock at top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457691.jpg', 'caption': 'a cloudy day around a tall building with a clock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457691.jpg', 'caption': 'A tall tower structure with a clock built in at the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014941.jpg', 'caption': 'A baby girl sitting in a chair holding a white teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014941.jpg', 'caption': 'A small child is holding a stuffed bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014941.jpg', 'caption': 'A little girl is sitting in a red and white striped chair playing with a teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014941.jpg', 'caption': 'A little girl sits on a striped chair holding a white teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014941.jpg', 'caption': 'a small girl sitting on a chair holding a white bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371999.jpg', 'caption': 'An illuminated clock tower against a nighttime background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371999.jpg', 'caption': 'a black and white clock on a gold and black tower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371999.jpg', 'caption': 'a lit up clock on a tower in front of a night sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371999.jpg', 'caption': 'A tower that has a clock on the top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371999.jpg', 'caption': 'Clock tower in the dim moonlight as stars appear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002240.jpg', 'caption': 'A pile of teddy bears and dolls in a toy box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002240.jpg', 'caption': 'Three teddy bears and a doll like next to each other in a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002240.jpg', 'caption': 'A group of stuffed toys are placed together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002240.jpg', 'caption': 'Teddy bears and dolls laying down on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002240.jpg', 'caption': 'A group of cute stuffed animals in a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003084.jpg', 'caption': 'a blue clock face with gold numbers set in a brick building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003084.jpg', 'caption': 'A large clock at the top of a brick building of which the clock hands indicate twelve thirty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003084.jpg', 'caption': 'A brick building has a clock on the top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003084.jpg', 'caption': 'A clock on the front of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003084.jpg', 'caption': 'A clock is sitting atop a church tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142592.jpg', 'caption': 'A clock sitting in the middle of the city, in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142592.jpg', 'caption': 'Clockpost on the sidewalk in front of a travel agency.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142592.jpg', 'caption': 'a clock on a pole on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142592.jpg', 'caption': 'there is a clock in front of the store ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142592.jpg', 'caption': 'A clock that is on top of a tower in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577821.jpg', 'caption': 'An old clock tower with roman numerals and bells.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577821.jpg', 'caption': 'a little tower with a fancy clock on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577821.jpg', 'caption': 'An old, stained elaborate roman numerical clock on a clear day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577821.jpg', 'caption': 'a large clock is on top a a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577821.jpg', 'caption': 'a large clock tower with three bells up top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028377.jpg', 'caption': 'A street with various buildings on each side and a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028377.jpg', 'caption': 'A narrow lane has buildings on either side and one of the buildings is yellow and another is yellow and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028377.jpg', 'caption': 'There is a church at the end of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028377.jpg', 'caption': 'An alley way of a church and buildings with balconies', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028377.jpg', 'caption': 'A city street surrounded by tall colorful buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239448.jpg', 'caption': 'Two men standing on a very tall clock tower with a white clock and two thermometers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239448.jpg', 'caption': 'Two cowboys statues are at the top of a tower. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239448.jpg', 'caption': 'Tower clock designed with two western shooters for entertainment display', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239448.jpg', 'caption': 'a clock with two gunman from the old west', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239448.jpg', 'caption': 'A clock tower with two statues of cowboys on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558524.jpg', 'caption': 'The large, very old jar is on display behind glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558524.jpg', 'caption': 'An intricately designed vase is shown in a glass case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558524.jpg', 'caption': 'Detailed vase on display on a white pedestal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558524.jpg', 'caption': 'A vase sitting on a small table as a display in a room ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558524.jpg', 'caption': 'A brown and gold antique vase being displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222304.jpg', 'caption': 'A pink pitcher filled with long stemmed flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222304.jpg', 'caption': 'A floral arrangement designed in a water can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222304.jpg', 'caption': 'A pink vase sits on a table with flowers inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222304.jpg', 'caption': 'A large watering can with assorted flowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222304.jpg', 'caption': 'A vase filled with assorted color flowers sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283064.jpg', 'caption': 'A table with a huge glass vase and fake flowers come out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283064.jpg', 'caption': 'A plant in a vase sits at the end of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283064.jpg', 'caption': 'A vase with flowers in it with long stems sitting on a table with candles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283064.jpg', 'caption': 'Flowers in a clear vase sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283064.jpg', 'caption': 'A large centerpiece that is sitting on the edge of a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217183.jpg', 'caption': 'A doll standing next to a vase filled with flowers and plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217183.jpg', 'caption': 'Flowers are placed in a vase with large leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217183.jpg', 'caption': 'A flower arrangement in a clear glass vase next to a doll.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217183.jpg', 'caption': 'white flowers in a vase with arranged leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217183.jpg', 'caption': 'A clear vase contains some white pretty flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366630.jpg', 'caption': 'A vase of light and dark purple flowers in a white vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366630.jpg', 'caption': 'a close up of a vase with many flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366630.jpg', 'caption': 'A bouquet of fresh flowers in a cream colored vase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366630.jpg', 'caption': 'A small white vase of purple flowers on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366630.jpg', 'caption': 'A white vase filled with purple flowers on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501080.jpg', 'caption': 'A purple flowered plant with green leaves in a white vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501080.jpg', 'caption': 'A vase full of purple flowers and green leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501080.jpg', 'caption': 'A white vase filled with pink flowers on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501080.jpg', 'caption': 'Traditional color poinsettia plants in a too crowded container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501080.jpg', 'caption': 'A red poinsettia sits on a table in a white vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254277.jpg', 'caption': 'Some orange flowers in a tall silver vase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254277.jpg', 'caption': 'Orange, red and white flowers in vases on tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254277.jpg', 'caption': 'a small silver vase with some orange flowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254277.jpg', 'caption': 'Orange flowers fill vases in the flower shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254277.jpg', 'caption': 'A metal vase of flowers on top of a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266443.jpg', 'caption': 'A woman is standing next to an artsy sculpture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266443.jpg', 'caption': 'A woman mimicking scissors by a large outdoor sculpture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266443.jpg', 'caption': 'A young woman standing next to a statue representing rock, paper, scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266443.jpg', 'caption': 'A young beautiful woman standing next to a sculpture of a pair of scissors cutting paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266443.jpg', 'caption': 'A girl stands next to a rock paper scissor sculpture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389335.jpg', 'caption': 'A man carrying a basket filled with fruit and clippers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389335.jpg', 'caption': 'A person holds a basket of nuts over their head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389335.jpg', 'caption': 'A person caries a basket full of nuts and a large pair of scissors over the shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389335.jpg', 'caption': 'A man that is carrying a basket with some nuts in it and scissors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389335.jpg', 'caption': 'A man carries a basket full of nuts on his back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157184.jpg', 'caption': 'A man holding a giant pair of black scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157184.jpg', 'caption': 'A man holding a giant scissors about three feet tall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157184.jpg', 'caption': 'A man holding a large pair of scissors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157184.jpg', 'caption': 'A smiling guy holding up a huge pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157184.jpg', 'caption': 'A smiling man is holding a pair of gigantic scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175611.jpg', 'caption': 'A person with a pair of scissors cutting into a cigar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175611.jpg', 'caption': 'A wood working trimming the wood with pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175611.jpg', 'caption': 'An old hand is cutting cigars with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175611.jpg', 'caption': 'A pair of hands with scissors cutting a cigar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175611.jpg', 'caption': 'Hands cutting a piece of paper with wood shavings on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509819.jpg', 'caption': 'A pencil is sitting on a ruler with a pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509819.jpg', 'caption': 'Scissors and string next to a pencil and other tools.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509819.jpg', 'caption': 'Knitting tools sit together including a pencil, scissors, and a spool of thread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509819.jpg', 'caption': 'A ruler board with supplies sitting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509819.jpg', 'caption': 'A pair of scissors and a pencil on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284042.jpg', 'caption': 'Many craft items lay on top of a bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284042.jpg', 'caption': 'a sewing bag with the contents laying on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284042.jpg', 'caption': 'a pair of pink scissors are laying on a piece of paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284042.jpg', 'caption': 'Art project being developed by creative person about the country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284042.jpg', 'caption': 'A view of a bag with a bunch of buttons and attachments on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334007.jpg', 'caption': 'A bear cookie sitting next to a gummy bear ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334007.jpg', 'caption': 'teddy bear like candy on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334007.jpg', 'caption': 'A small cookie in the shape of a bear next to a green gummy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334007.jpg', 'caption': 'A gummy bear and a bear cookie sitting in front of a spiral notebook ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334007.jpg', 'caption': 'A teddy bear graham cracker next to a gummy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150358.jpg', 'caption': 'A man is sitting next to a Christmas teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150358.jpg', 'caption': 'Man sitting next to a teddy bear on a couch with christmas clothes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150358.jpg', 'caption': 'A man sitting next to a holiday themed teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150358.jpg', 'caption': 'A man in black jacket on a couch next to a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150358.jpg', 'caption': 'A man in a Santa hat seated next to a teddy bear on a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127749.jpg', 'caption': 'A cat laying its head against a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127749.jpg', 'caption': 'A cat laying on the ground next to a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127749.jpg', 'caption': 'A kitten lies with his head against a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127749.jpg', 'caption': 'The cat is laying next to a teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127749.jpg', 'caption': 'A cat laying down next to a teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404349.jpg', 'caption': 'A tray with a brown cat sleeping on top of a teddy bear inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404349.jpg', 'caption': 'The kittens are taking a nap in the basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404349.jpg', 'caption': 'A cat asleep on a teddy bear in a laundry basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404349.jpg', 'caption': 'A cat laying inside of a white laundry basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404349.jpg', 'caption': 'A cat sleeps in a laundry basket on top of a stuffed animal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565683.jpg', 'caption': 'White knitted teddy bears and christmas tree decoration', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565683.jpg', 'caption': 'A white teddy bear next to a small potted Christmas tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565683.jpg', 'caption': 'A white stuffed teddy bear siting next to a potted Christmas plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565683.jpg', 'caption': 'A teddy bear sits next to a small Christmas tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565683.jpg', 'caption': 'A teddy bear and a little tree together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168909.jpg', 'caption': 'A couple of people that are standing at a table with various objects.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168909.jpg', 'caption': 'There is a lot of food and dishes on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168909.jpg', 'caption': 'A man and a woman eating dinner at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168909.jpg', 'caption': 'A boy and a girl sitting around a table with plates on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168909.jpg', 'caption': 'A table topped with two bowls filled with fruits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487159.jpg', 'caption': 'This meal consists of salad, water, vegetables and dip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487159.jpg', 'caption': 'A table with various foods ready to eat on plates and bowls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487159.jpg', 'caption': 'A table topped with plates and bowls of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487159.jpg', 'caption': 'A table laden with food features salad and olives and different bowl of foods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487159.jpg', 'caption': 'Fresh and cooked vegetable meal on a cluttered table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510657.jpg', 'caption': 'a bunch of people are sitting around a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510657.jpg', 'caption': 'A group of people posing for a picture around a dinner table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510657.jpg', 'caption': 'A group of young men and women sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510657.jpg', 'caption': 'The group of people are smiling around a restaurant table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510657.jpg', 'caption': 'a group of people sitting around a dinner table who just finished eating', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298443.jpg', 'caption': 'A group of people sitting at a long table having food and drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298443.jpg', 'caption': 'A group of people are posing for a photograph at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298443.jpg', 'caption': 'A group of people are sitting at a table with drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298443.jpg', 'caption': 'A group of people who are sitting around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298443.jpg', 'caption': 'A group of people sitting around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195645.jpg', 'caption': 'People and their children are gathered outside meeting together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195645.jpg', 'caption': 'A group of well dressed adults sitting outside with some children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195645.jpg', 'caption': 'The group of people are gathering together in the yard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195645.jpg', 'caption': 'A group of people and babies next to a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195645.jpg', 'caption': 'A group of people, some seated,others standing and a wine glass on top of a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484145.jpg', 'caption': 'A man standing with a glass in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484145.jpg', 'caption': 'A man that is holding a wine glass in one hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484145.jpg', 'caption': 'a man is holding something in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484145.jpg', 'caption': 'An older man stands in front of store shelves while looking off in the distance and holding a small glass with a stem.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484145.jpg', 'caption': 'a man holding a fragile peice of glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012547.jpg', 'caption': 'Two elderly people are sitting on a city bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012547.jpg', 'caption': 'Elderly couple sitting on black city bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012547.jpg', 'caption': 'A man and woman sitting on a bench next to birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012547.jpg', 'caption': 'A few people sitting on a bench feed the birds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012547.jpg', 'caption': 'Two people sitting on a bench on a sidewalk near stores.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527102.jpg', 'caption': 'A man sitting in a chair holding a yellow umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527102.jpg', 'caption': 'A man and woman selling merchandise on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527102.jpg', 'caption': 'A man under a umbrella and a woman eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527102.jpg', 'caption': 'Two older people eating while sitting next to a table at a flea market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527102.jpg', 'caption': 'An elderly man and woman sitting outside next to a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310553.jpg', 'caption': 'A man riding on the back of a motorcycle with a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310553.jpg', 'caption': 'there is a man and a woman that are riding a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310553.jpg', 'caption': 'A black and white image of two people on a motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310553.jpg', 'caption': 'A man and a woman are riding a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310553.jpg', 'caption': 'two people riding on a motocycle on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479008.jpg', 'caption': 'A group of passengers sitting on an airplane in flight', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479008.jpg', 'caption': 'Looking down the aisle of a plane, where people are seated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479008.jpg', 'caption': 'a group of people sitting on the seats in an aircraft waiting to depart', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479008.jpg', 'caption': 'A row of airplane seats hold people as one man lifts up a book and is reading.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479008.jpg', 'caption': 'Looking down the aisle at a row of airplane seats occupied by travelers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509192.jpg', 'caption': 'A woman is standing on a kitchen floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509192.jpg', 'caption': 'woman in black dress standing in kitchen area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509192.jpg', 'caption': 'Woman standing in the kitchen while wearing a black sleeveless cocktail dress and open-toe high heel pumps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509192.jpg', 'caption': 'The woman is standing in the kitchen posing for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509192.jpg', 'caption': 'a person standing in a kitchen with a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392915.jpg', 'caption': 'A neat and tidy, modern, residential, family kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392915.jpg', 'caption': 'A view of a kitchen with the curtains and cupboards closed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392915.jpg', 'caption': 'A kitchen with pale curtains and a house plant next to the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392915.jpg', 'caption': 'a sink and white cabinets in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392915.jpg', 'caption': 'A kitchen with a sink, dishwasher, crock pot and coffee maker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208517.jpg', 'caption': 'A woman with a suitcase holding a phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208517.jpg', 'caption': 'Woman with cellphone and red suitcase standing in open area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208517.jpg', 'caption': 'A women holding a red suitcase that has wheels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208517.jpg', 'caption': 'A young woman stands waiting with her luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208517.jpg', 'caption': 'a woman standing around with a red suitcase ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103806.jpg', 'caption': 'a cat laying on the floor of a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103806.jpg', 'caption': 'A black cat on a home kitchen floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103806.jpg', 'caption': 'A cat on a kitchen floor peering intently at the refrigerator', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103806.jpg', 'caption': 'A fat black cat is laying in the middle of a kitchen floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103806.jpg', 'caption': 'A black cat is in the middle of a kitchen floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530207.jpg', 'caption': 'A woman holding onto a pink bag of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530207.jpg', 'caption': 'a bunch of people in a busy area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530207.jpg', 'caption': 'A woman holding a travel bag in a crowd of people passing by her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530207.jpg', 'caption': 'A large crowd of travelers at a train platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530207.jpg', 'caption': 'A crowd of people are standing in line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460378.jpg', 'caption': 'The kitchen counters are almost down with the remodel. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460378.jpg', 'caption': 'Tools are on a board on a counter in a kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460378.jpg', 'caption': 'A kitchen that has an island in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460378.jpg', 'caption': 'some lights tools cabinets a sink and a microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460378.jpg', 'caption': 'There is a large window over the kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145199.jpg', 'caption': 'A kitchen area with a dining table and counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145199.jpg', 'caption': 'A table sits in front of the bar area of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145199.jpg', 'caption': 'A dinging area with yellow walls trimmed in brown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145199.jpg', 'caption': 'A dining area has an open window to see into the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145199.jpg', 'caption': 'Cloth covered table in eating area with yellow walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000764.jpg', 'caption': 'an image of people outside playing frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000764.jpg', 'caption': 'a crowded field with a woman throwing a frisbee in the foreground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000764.jpg', 'caption': 'A bunch of people playing with a Frisbee in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000764.jpg', 'caption': 'The large group of people are playing Frisbee in the park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000764.jpg', 'caption': 'A woman in brown jacket throwing a yellow frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158333.jpg', 'caption': 'some peeled oranges sitting in a clear blender', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158333.jpg', 'caption': 'some piled oranges in a glass blender ready to be blended', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158333.jpg', 'caption': 'Top view of a few skinned oranges inside of a blender', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158333.jpg', 'caption': 'A blender filled with three peeled oranges sitting on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158333.jpg', 'caption': 'some cut up fruit is sitting in a blender', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158497.jpg', 'caption': 'A kitchen filled with lots of dogs near a dishwasher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158497.jpg', 'caption': 'Dogs are looking into the open loaded dishwasher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158497.jpg', 'caption': 'A couple of dogs standing in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158497.jpg', 'caption': 'Three large dogs are in the kitchen near the dish washer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158497.jpg', 'caption': 'A dog inspects an open dishwasher in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017953.jpg', 'caption': 'A bunch of groceries are piled onto a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017953.jpg', 'caption': 'Table filled with a bunch of different types of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017953.jpg', 'caption': 'Assortment of packaged vegetable on display on counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017953.jpg', 'caption': 'a counter fiiled with assorted items for a salad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017953.jpg', 'caption': 'A lot of vegetable are on the kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537955.jpg', 'caption': 'A brown dog standing on the kitchen floor looking up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537955.jpg', 'caption': 'A brown dog in a kitchen with hardwood floors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537955.jpg', 'caption': 'A large brown dog stands next to a kitchen counter on a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537955.jpg', 'caption': 'A brown dog standing in front of white cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537955.jpg', 'caption': 'A family pet looking up at the camera while posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210012.jpg', 'caption': 'A woman standing in a kitchen with hard wood floors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210012.jpg', 'caption': 'A woman fixes food in the kitchen while a cat sits behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210012.jpg', 'caption': 'A woman and a little dog in a very large kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210012.jpg', 'caption': 'a person in a kitchen with a stove and cupboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210012.jpg', 'caption': 'a woman and a dog in her kitchen waiting as she prepares a meal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174887.jpg', 'caption': 'close up of a microwave, oven, and a range', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174887.jpg', 'caption': 'a room showing a microwave and a cooker also an oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174887.jpg', 'caption': 'A stove with a microwave above it and pot on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174887.jpg', 'caption': 'A stove has a microwave oven up above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174887.jpg', 'caption': 'A white and black stove with a pot and spoon on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073861.jpg', 'caption': 'Black cat lying on smooth tiled kitchen floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073861.jpg', 'caption': 'A large black cat laying on a tiled floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073861.jpg', 'caption': 'A cat laying in the middle of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073861.jpg', 'caption': 'A kitchen with clutter countertops and a cat lying on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073861.jpg', 'caption': 'A black cat laying down on a tile floor in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090732.jpg', 'caption': 'A little girl is mixing in a kitchen bowl while standing on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090732.jpg', 'caption': 'A young girl dressed in pink standing on a chair stirring a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090732.jpg', 'caption': 'A girl in a kitchen on a booster stool washing dishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090732.jpg', 'caption': 'A young child standing on a chair mixing in a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090732.jpg', 'caption': 'A little girl standing on a chair mixing something in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055375.jpg', 'caption': 'A woman bathing a baby near a kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055375.jpg', 'caption': 'A woman wearing a stripped shirts bathes a baby in the kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055375.jpg', 'caption': 'A young mother bathing a newborn on the kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055375.jpg', 'caption': 'Washing a baby in a purpose made basin on a kitchen countertop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055375.jpg', 'caption': 'A woman bathing a small baby in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031442.jpg', 'caption': 'The man is sitting in the small kitchen on a stool. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031442.jpg', 'caption': 'A man sits in a wooden kitchen at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031442.jpg', 'caption': 'The man is sitting on a bench in his kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031442.jpg', 'caption': 'a man is sitting on a wood stool in a home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031442.jpg', 'caption': 'A man sits on a stool in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283119.jpg', 'caption': 'a dog laying down eating food out of a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283119.jpg', 'caption': 'a white dog lays down near his food bowl and the trash can ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283119.jpg', 'caption': 'A white dog eating out of a food dish in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283119.jpg', 'caption': 'A large white dog lies down as he eats food from a dog dish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283119.jpg', 'caption': 'A large white dog laying next to a bowl of dog food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467314.jpg', 'caption': 'A basic kitchen with wooden cabinets and a bowl of fruit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467314.jpg', 'caption': 'An odd looking kitchen with awful tiles is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467314.jpg', 'caption': 'A kitchen that has wooden cabinets with a sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467314.jpg', 'caption': 'a kitchen that is empty with just a sink and some wine bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467314.jpg', 'caption': 'A kitchen that has a wooden cabinets with a wine holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399851.jpg', 'caption': 'A kitchen shelf holds an assortment of pots, pans, and utensils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399851.jpg', 'caption': 'A wooden table in a kitchen with pots and pans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399851.jpg', 'caption': 'A cutting board , pot rack and dish shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399851.jpg', 'caption': 'A utility table in a kitchen, with pots, pans and utensils hanging nearby.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000399851.jpg', 'caption': 'a table in a kitchen some pots and pans and hanging utensils', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569801.jpg', 'caption': 'A white kitchen counter next to an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569801.jpg', 'caption': 'a kitchen with a bunch of cabinets inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569801.jpg', 'caption': 'A kitchen with white counters and over cabinets with glass doors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569801.jpg', 'caption': 'a black purse a can a refrigerator cabinets and a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569801.jpg', 'caption': 'A kitchen with a rectangle counter top and a box light fixture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233075.jpg', 'caption': 'A group of knives mounted to a kitchen wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233075.jpg', 'caption': 'A set of professional knives attached to a mounted magnet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233075.jpg', 'caption': 'Seven knives of various sizes and sharpness arranged in a row. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233075.jpg', 'caption': 'A set of knives mounted on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233075.jpg', 'caption': 'Seven very sharp knives are mounted on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090255.jpg', 'caption': 'An old lady smiling in a pink kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090255.jpg', 'caption': 'An elderly woman is standing near the kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090255.jpg', 'caption': 'A woman smiling in her kitchen with the sink behind her. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090255.jpg', 'caption': 'An older lady in an apron smiling in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090255.jpg', 'caption': 'An older woman is standing in a pink kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389624.jpg', 'caption': 'a kitchen with white counter tops and cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389624.jpg', 'caption': 'An inside view of a kitchen is seen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389624.jpg', 'caption': 'A kitchen counter with ceiling lights and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389624.jpg', 'caption': 'a small kitchen adjacent to a living room and dining area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389624.jpg', 'caption': 'Lime green walls in a clean home kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539124.jpg', 'caption': 'A young girl riding a skateboard next to two guys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539124.jpg', 'caption': 'two young men standing in front of her while she has her foot on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539124.jpg', 'caption': 'The teenagers are standing together on the sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539124.jpg', 'caption': 'Three young people standing and talking on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539124.jpg', 'caption': 'a group of three people talking to each other on the sidewalk with a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040986.jpg', 'caption': 'Raw cookies in a pan on the counter and baked cookies in a pan on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040986.jpg', 'caption': 'Assorted items on a counter top in a kitchenette.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040986.jpg', 'caption': 'A man points at the wall in his kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040986.jpg', 'caption': 'Two pans with cookies in them sitting on a counter with liquor bottles, a coffee maker and knives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040986.jpg', 'caption': 'A countertop in a kitchen with fresh cookies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137118.jpg', 'caption': 'An empty living room in an apartment with several chairs sitting in the middle of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137118.jpg', 'caption': 'An apartment that does not have much furniture and a messy kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137118.jpg', 'caption': 'A house with no furniture and only a few chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137118.jpg', 'caption': 'A room with threes chairs, a rug, a shoe and a basket in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137118.jpg', 'caption': \"The apartment has some chairs but doesn't appear to be lived in.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142697.jpg', 'caption': 'A man flying through the air while riding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142697.jpg', 'caption': 'A person is on a surf board in the ocean doing a jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142697.jpg', 'caption': 'The surfer remains on the board despite being thrown by the wave into an odd angle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142697.jpg', 'caption': 'The man is showcasing his surfing skills on the wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142697.jpg', 'caption': 'a man on a surfboard riding a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111032.jpg', 'caption': 'A bottle of wine sitting on top of a table next to a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111032.jpg', 'caption': 'A full wine glass means the bottle has less in it for later.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111032.jpg', 'caption': 'A bottle of wine and a wine glass with wine in it sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111032.jpg', 'caption': 'A glass of wine next to a wine bottle and corkscrew on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111032.jpg', 'caption': 'A bottle of wine with a poured glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348140.jpg', 'caption': 'An intracately designed boat on a river bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348140.jpg', 'caption': 'A colorful canoe coasting the lake by many people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348140.jpg', 'caption': 'An elaborate boat reflects against the water below it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348140.jpg', 'caption': 'People walk by a boat sitting on the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348140.jpg', 'caption': 'A canoe that is in a lake during the day,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241844.jpg', 'caption': 'A kitchen with white cabinets has a sink and white refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241844.jpg', 'caption': 'A kitchen filled with lots of cabinet space and a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241844.jpg', 'caption': 'The sun is shining into a country style kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241844.jpg', 'caption': 'An empty kitchen lit by sunlight coming through the window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241844.jpg', 'caption': 'An old style kitchen with many cream colored cabinets and a brightly lit window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461256.jpg', 'caption': 'Woman stirring boiling pan of food on back burner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461256.jpg', 'caption': 'A woman standing over a stove cooking food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461256.jpg', 'caption': 'A woman stirring something in a pot on a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461256.jpg', 'caption': 'the frantic lady is checking her latest concoction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461256.jpg', 'caption': 'A person in a room in front of a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306404.jpg', 'caption': 'An man taking a picture of a sink through a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306404.jpg', 'caption': 'A bathroom sink with a mirror and modern towel holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306404.jpg', 'caption': 'A bathroom with a sink, counter top, and mirror is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306404.jpg', 'caption': 'a white bathroom with a black counter a mirror and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306404.jpg', 'caption': 'A man in a black jacket taking a picture of a sink area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446409.jpg', 'caption': 'A tabby cat laying on a cat scratcher in front of a bicycle wheel. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446409.jpg', 'caption': 'A cat is falling asleep on top of a scratching pad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446409.jpg', 'caption': 'a cat laying down next to a bike tire', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446409.jpg', 'caption': 'A cat is resting underneath a bicycle wheel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446409.jpg', 'caption': 'A cat is laying on a small piece of rough fabric', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018783.jpg', 'caption': 'A man in white shirt on bicycle with a dog riding in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018783.jpg', 'caption': 'A man on a bicycle with a dog sitting in the back of the bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018783.jpg', 'caption': 'an old photo of a person on a bike in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018783.jpg', 'caption': 'A man and his dog riding on a bike. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018783.jpg', 'caption': 'there is a man riding a bike with a dog on the back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265574.jpg', 'caption': 'A bathroom with a white bathtub next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265574.jpg', 'caption': 'A white bathroom has a red towel on the bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265574.jpg', 'caption': 'A bathroom with wooden floors and a red towel. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265574.jpg', 'caption': 'A white bathroom with a wood floor and a red toweling hanging from a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265574.jpg', 'caption': 'A bathroom that is very clean and organized.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012896.jpg', 'caption': 'A man is posing for a great photo shop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012896.jpg', 'caption': 'A guy on a bike looking out from behind a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012896.jpg', 'caption': 'A black and white image of a bicyclist behind a wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012896.jpg', 'caption': 'A guy on a bike is looking out from behind a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012896.jpg', 'caption': 'A man riding on a bicycle on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272863.jpg', 'caption': 'A bathroom area with a tub, sink and wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272863.jpg', 'caption': 'A white bath tub sitting next to a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272863.jpg', 'caption': 'There is a sink and bathtub in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272863.jpg', 'caption': 'the bathtub and sink in a white tiled bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272863.jpg', 'caption': 'A tub and and sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378709.jpg', 'caption': 'The small bathroom has wooden cabinets around the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378709.jpg', 'caption': 'A toilet and sink in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378709.jpg', 'caption': 'A bathroom with a toilet and sink and bathroom accessories. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378709.jpg', 'caption': 'A bathroom with a white toilet sitting under a bright white light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378709.jpg', 'caption': 'A bathroom with a toilet and sink and some wood cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562645.jpg', 'caption': 'A pair of dogs sit on a bathroom rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562645.jpg', 'caption': 'Two dogs are standing on the bathroom rug. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562645.jpg', 'caption': 'Two dogs standing on a rug in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562645.jpg', 'caption': 'Two dogs stand side by side with their back to the camera in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562645.jpg', 'caption': 'Two dogs standing on a bathroom rug in front of the shower while someone is showering.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465692.jpg', 'caption': 'Person in jacket riding a bicycle on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465692.jpg', 'caption': 'a person riding a bike on a road with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465692.jpg', 'caption': 'A little girl riding her bike in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465692.jpg', 'caption': 'A person standing up while riding a bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465692.jpg', 'caption': 'A little girl riding her bike on the pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523297.jpg', 'caption': 'A bathroom with a toilet bowl and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523297.jpg', 'caption': 'A small restroom has a toilet and a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523297.jpg', 'caption': 'There is a small bathroom with a toilet and shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523297.jpg', 'caption': 'a simple bathroom in beige with a toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523297.jpg', 'caption': 'A toilet next to a towel rack and a picture of a flower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391584.jpg', 'caption': 'A very tall brick building with bricked up windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391584.jpg', 'caption': 'a brick building windows and a bicycle and a black post', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391584.jpg', 'caption': 'A bike on a pole in front of a brick building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391584.jpg', 'caption': 'A bicycle chained to a light pole on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391584.jpg', 'caption': 'A bicycle is parked next to a building with bricked up windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241350.jpg', 'caption': 'A ten speed bike is next to a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241350.jpg', 'caption': 'A fish eye view of a bicycle and a wooden desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241350.jpg', 'caption': 'Fisheye photograph of a room with a bicycle and desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241350.jpg', 'caption': 'A bicycle is parked next to a small desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241350.jpg', 'caption': 'A dorm room with posters on the wall, a desk, and a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431197.jpg', 'caption': 'A bathroom with a sink, paper roll, toilet, towel rack and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431197.jpg', 'caption': 'This corner of the bathroom uses space very efficiently, with lighting, vanity, towel hanger, and toilet tissue holder. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431197.jpg', 'caption': 'Sink, mirror, and toilet in compact bathroom in a hotel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431197.jpg', 'caption': 'A bathroom with a toilet, sink and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431197.jpg', 'caption': 'A bathroom with brown cabinets and a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430287.jpg', 'caption': 'That tub is usually one found in a nursing home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430287.jpg', 'caption': 'A bathroom with a large bathtub, toilet, sink, mirror and a large clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430287.jpg', 'caption': 'Inside bathroom with a large clock face on the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430287.jpg', 'caption': 'a bath room with a sink a toilet and a bath tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430287.jpg', 'caption': 'A bathroom with a tub, toilet and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271712.jpg', 'caption': 'A bathroom with a white bath tub under a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271712.jpg', 'caption': 'a white tub a toilet a mirror and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271712.jpg', 'caption': 'A bathtub, sink and toilet are shown in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271712.jpg', 'caption': 'a bathroom over looking a city with a nice view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271712.jpg', 'caption': 'A bathroom that has some words on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304355.jpg', 'caption': 'this clean bathroom has all white fixtures in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304355.jpg', 'caption': 'A white toilet sitting in a bathroom next to a tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304355.jpg', 'caption': 'A white shower curtain, tub, toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304355.jpg', 'caption': 'A clean bathroom with sink, toilet and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304355.jpg', 'caption': 'a bathroom with a sink and a toilet in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419401.jpg', 'caption': 'an image of a train that has a bike sign on the side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419401.jpg', 'caption': 'A red train that along with people will transport bicycles and is wheelchair accessible.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419401.jpg', 'caption': 'A red train with a bike painted on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419401.jpg', 'caption': 'The maroon train has a white bicycle painted on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419401.jpg', 'caption': 'A red vehicle with a bike painted on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393659.jpg', 'caption': 'A bathroom with two sinks and two mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393659.jpg', 'caption': 'A bathroom with a double sink and oval mirrors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393659.jpg', 'caption': 'REFLECTION OF HAND TOWEL IN MIRROR IN A BATHROOM', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393659.jpg', 'caption': 'A bathroom with a double vanity and round mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393659.jpg', 'caption': 'A large black mirror hanging over a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549668.jpg', 'caption': 'A bathroom with a white sink next to a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549668.jpg', 'caption': 'a shower with a leopard print curtain on the pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549668.jpg', 'caption': 'A bathroom with shower curtain opened and sun shining.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549668.jpg', 'caption': 'A bathroom has a tub and sink in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549668.jpg', 'caption': 'A view through a doorway into an empty bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193251.jpg', 'caption': 'A clean bathroom is seen in this image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193251.jpg', 'caption': 'A bathroom with brown ceramic tile around the bathtub near a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193251.jpg', 'caption': 'Shot of bathroom with bath on far side near toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193251.jpg', 'caption': 'A clan bathroom with a toilet and tiled shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193251.jpg', 'caption': 'Here is a remodeled bathroom with tiles, a bathtub, and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058079.jpg', 'caption': 'A person holding a toothbrush under the running water of a faucet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058079.jpg', 'caption': 'A toothbrush being held under a water facet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058079.jpg', 'caption': 'A person holds their toothbrush under a running sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058079.jpg', 'caption': 'A toothbrush is being held under running water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058079.jpg', 'caption': 'Person holding a toothbrush under a faucet with running water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216320.jpg', 'caption': 'A bathroom with black wall tiles and a robe hanging on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216320.jpg', 'caption': 'a bath robe and towels in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216320.jpg', 'caption': 'A modern bathroom with marble walls and floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216320.jpg', 'caption': 'A bathroom, with granite tile wales, marble sinks, and a glass standing shower. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216320.jpg', 'caption': 'a bath room with a sink and a shower ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123289.jpg', 'caption': 'A crowded city street filled with traffic at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123289.jpg', 'caption': 'A traffic light over many different passing cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123289.jpg', 'caption': 'A night time city view with vehicle lights and street lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123289.jpg', 'caption': 'A city street with lights at night with vehicles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123289.jpg', 'caption': 'A busy street with passing traffic at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209322.jpg', 'caption': 'A bathroom with blue and white tiles and a white toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209322.jpg', 'caption': 'A toilet with a water closet in a small blue and white bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209322.jpg', 'caption': 'A white toilet in front of a tiled bathroom wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209322.jpg', 'caption': 'A very small corner of a rest room with a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209322.jpg', 'caption': 'A powder room with toilet, wall-mounted sink, and blue-and-white tiled walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169598.jpg', 'caption': 'A bathroom shower, toilet and mirror that is decorated in tan tile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169598.jpg', 'caption': 'A towel is on the toilet seat beside a bathtub. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169598.jpg', 'caption': 'A ceramic tiled bathroom with a bathtub and toilet and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169598.jpg', 'caption': 'a shower/tub combo sitting next to a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169598.jpg', 'caption': 'a shower with a glass door and a toilet in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463610.jpg', 'caption': 'A white toilet sitting next to a shower in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463610.jpg', 'caption': 'A bathroom, showing the shower, toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463610.jpg', 'caption': 'A bathroom with a toilet, sink and shower stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463610.jpg', 'caption': 'a bathroom view of a stand up shower and toilet with a sink near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463610.jpg', 'caption': 'A PICTURE OF A BATHROOM WITH SLIDING SHOWER ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538589.jpg', 'caption': 'a modern bathroom with blue walls and a clear shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538589.jpg', 'caption': 'The blue bathroom is small, sleek and efficient.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538589.jpg', 'caption': 'a black cabinet in a white home bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538589.jpg', 'caption': 'The interior of a modern bathroom including toilet, shower, and cabinet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538589.jpg', 'caption': 'There is a toilet next to the shelf with towels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488327.jpg', 'caption': 'Posted signs point the way through a parking garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488327.jpg', 'caption': 'Three traffic signs at the entrance of a parking garage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488327.jpg', 'caption': 'Three road signs posted in a parking garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488327.jpg', 'caption': 'This is a parking garage with several signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488327.jpg', 'caption': ' directing signs in front of a parking garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142129.jpg', 'caption': 'A red four door car pulling into a parking space with a meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142129.jpg', 'caption': 'A person is parking his car into aparking space where he will have to pay a parking meter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142129.jpg', 'caption': 'A red car turns into a space in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142129.jpg', 'caption': 'A small red object that was placed on top of a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142129.jpg', 'caption': 'A car is parked near a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071384.jpg', 'caption': 'an over head view of cars parked below', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071384.jpg', 'caption': 'An overheard view of a city street with several cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071384.jpg', 'caption': 'A group of parked cars and people in a parking lot near some houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071384.jpg', 'caption': 'A group of cars parked in a lot behind buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071384.jpg', 'caption': 'An aerial view of several jumbled cars on a narrow road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551517.jpg', 'caption': 'a bird standing close to a parked car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551517.jpg', 'caption': 'Two birds standing next to a black car looking inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551517.jpg', 'caption': 'A PAIR OF VERY LARGE BIRDS ARE STANDING BESIDE A CAR', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551517.jpg', 'caption': 'A bird is looking through a car window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551517.jpg', 'caption': 'Two bird that are looking inside of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384111.jpg', 'caption': 'A blue race car bed sitting next to a fake fuel pump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384111.jpg', 'caption': 'A childs room has a blue car bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384111.jpg', 'caption': 'a car bed and a tool box dresser', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384111.jpg', 'caption': 'A blue race car bed sits in the center of a room decorated with other types of racing decor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384111.jpg', 'caption': 'an image of a bedroom setting with a toy car bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075216.jpg', 'caption': 'A herd of cattle laying in the grass on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075216.jpg', 'caption': 'The cattle are resting on the ground.One of them is grazing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075216.jpg', 'caption': 'A herd of white and brown cows in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075216.jpg', 'caption': 'several cows sitting and resting in an open field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075216.jpg', 'caption': 'A herd of cows laying down in hay and grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555472.jpg', 'caption': 'An elephant is crossing a road while a jeep is parked watching. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555472.jpg', 'caption': 'An elephant crossing the road in front of an SUV.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555472.jpg', 'caption': 'Elephant walking through the middle of the road in front of a car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555472.jpg', 'caption': 'An elephant crossing the road in front of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555472.jpg', 'caption': 'Elephant crossing road in front of SUV vehicle,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235788.jpg', 'caption': 'A vintage VW bus that is red and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235788.jpg', 'caption': 'A VW bus parked at a park picnic ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235788.jpg', 'caption': 'a van parked in a field near other cars ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235788.jpg', 'caption': 'A red Volks Wagon in a car show. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235788.jpg', 'caption': 'THIS IS A AWESOME PHOTO OF A VOLKSWAGON BUS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243031.jpg', 'caption': 'A yellow book bus driving down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243031.jpg', 'caption': 'The big book bus is blue and yellow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243031.jpg', 'caption': 'A blue and yellow \"book bus\" is parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243031.jpg', 'caption': 'The bus is parked and ready to pick up more people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243031.jpg', 'caption': 'There is a blue and yellow bus stopped with the words, Book Bus, on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134649.jpg', 'caption': 'A white toilet sitting under a bathroom window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134649.jpg', 'caption': 'A very small, old, residential bathroom during the day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134649.jpg', 'caption': 'A small bathroom with a sink, toilet, and window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134649.jpg', 'caption': 'a bathroom with a toilet between a sink and a shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134649.jpg', 'caption': 'A white sink and a toilet in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235839.jpg', 'caption': 'A man taking a picture of himself in front of three huge beer bottles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235839.jpg', 'caption': 'A PICTURE OF A MAN WITH BEER BEHIND HIM ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235839.jpg', 'caption': 'A man wearing a hat in front of large bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235839.jpg', 'caption': 'a man standing next to a laptop and bottles of beer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235839.jpg', 'caption': 'A man with a baseball cap and glasses seated in front of three large beer bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279024.jpg', 'caption': 'Putting a used toilet out with the trash is certainly not appropriate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279024.jpg', 'caption': 'A ceramic toilet filled with empty drink cans amongst other rubbish on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279024.jpg', 'caption': 'Recyclable material in garbage bags are left outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279024.jpg', 'caption': 'a bunch of trash and a toilet sitting on a curb ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279024.jpg', 'caption': 'A bundle of trash with a toilet basin, polythenes and bottles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488387.jpg', 'caption': 'A blue motor scooter with a cat sitting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488387.jpg', 'caption': 'A cat sitting on a scooter parked below a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488387.jpg', 'caption': 'A cat is sitting on the seat of a blue motor-bike. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488387.jpg', 'caption': 'A motorcycle with the front wheel locked and a cat sitting on the seat near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488387.jpg', 'caption': 'A cat sits on the seat of a motorized scooter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327436.jpg', 'caption': 'A beautiful woman with red hair sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327436.jpg', 'caption': 'A woman sitting at a table with a clean plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327436.jpg', 'caption': 'A woman at a restaurant sits in front of a finished plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327436.jpg', 'caption': 'A picture of a woman that has just finished a desert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327436.jpg', 'caption': 'A person presses her hands to her face above an empty bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292810.jpg', 'caption': 'Restroom full of many urinals with smell eliminators.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292810.jpg', 'caption': 'Several automatic urinals are on the wall of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292810.jpg', 'caption': 'a row of urinals and hand sanitizers on a bathroom wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292810.jpg', 'caption': 'A line of urinals are attached to a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292810.jpg', 'caption': 'A row of urinals with air freshener boxes on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072843.jpg', 'caption': 'A red double decker bus parked in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072843.jpg', 'caption': 'red buses standing bt a building with a tower ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072843.jpg', 'caption': 'A couple of double decker buses passing by a lit rotunda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072843.jpg', 'caption': 'A building with pointed tower and a red double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072843.jpg', 'caption': 'A vibrant UK city with red double decker buses riding along the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270918.jpg', 'caption': 'A sharp steeple on a building is lit in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270918.jpg', 'caption': 'A long exposure photo of an old city building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270918.jpg', 'caption': 'A building with a steeple and lights all around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270918.jpg', 'caption': 'A building with a spire lights up the night in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270918.jpg', 'caption': 'An old city building with a spire at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096514.jpg', 'caption': 'A small white bird standing on top of a pond of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096514.jpg', 'caption': 'A bird is standing on a shallow body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096514.jpg', 'caption': 'The black and white bird stands in shallow water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096514.jpg', 'caption': 'A black and white bird that is standing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096514.jpg', 'caption': 'A black and white bird stands in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154854.jpg', 'caption': 'A view of a street, with a church in the horizon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154854.jpg', 'caption': 'A street with many cars stopped at a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154854.jpg', 'caption': 'a street a fence people cars and traffic lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154854.jpg', 'caption': 'A building in the distance bathed in sunlight', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154854.jpg', 'caption': 'Several cars driving down the road near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186074.jpg', 'caption': 'a person in a bathroom having a reflection in the mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186074.jpg', 'caption': 'A restroom with a toilet and a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186074.jpg', 'caption': 'a white toilet is in the corner of a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186074.jpg', 'caption': 'A person is taking a picture of a bathroom with a toilet in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186074.jpg', 'caption': 'a man in a room with a camera with a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444672.jpg', 'caption': 'A very dirty looking rest room with two toilets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444672.jpg', 'caption': 'a couple of toilet with a sink and green walled room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444672.jpg', 'caption': 'A couple of white toilets in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444672.jpg', 'caption': 'Two toilets next to each other in a bathroom with green walls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444672.jpg', 'caption': 'A display of bathroom fixtures and a copper holding tank', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540869.jpg', 'caption': 'A man riding on the back of a red motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540869.jpg', 'caption': 'a motorcycle rider on a red silver and black motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540869.jpg', 'caption': 'a man that is riding around on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540869.jpg', 'caption': 'A man is riding a motorcycle on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540869.jpg', 'caption': 'This is a man riding a red crotch rocket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223122.jpg', 'caption': 'A white toilet sitting under a window near a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223122.jpg', 'caption': 'A bathroom with a sink, toilet and shower ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223122.jpg', 'caption': 'Sign on wall in public restroom stall near sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223122.jpg', 'caption': 'A bathroom with a shower, toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223122.jpg', 'caption': 'We are looking at a toiled in a public restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359959.jpg', 'caption': 'a white urinal with its blue and white controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359959.jpg', 'caption': 'White plastic object with tubing mounted above a urinal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359959.jpg', 'caption': 'a close up of a urinal and a device next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359959.jpg', 'caption': 'A urinal in a restroom with a deodorizer hanging above the urinal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359959.jpg', 'caption': 'there is a urinal next to a dispenser', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098054.jpg', 'caption': 'A plate with chicken,carrots and mashed potatoes with silverware.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098054.jpg', 'caption': 'There is a plate with some mashed potatoes and carrots on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098054.jpg', 'caption': 'a plate of food on a place mate next to silverware and a red cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098054.jpg', 'caption': 'A plate of baby carrots, mashed potatoes and tuna set on a table with a cup and utensils. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098054.jpg', 'caption': 'a plate of food with carrots on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425035.jpg', 'caption': 'a toilet seat in a bathroom with the lid down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425035.jpg', 'caption': 'a key hole view of a toilet sitting on a tiled floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425035.jpg', 'caption': 'a very well cleaned toilet and covered with a lid', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425035.jpg', 'caption': 'A white toilet in a bathroom with white ceramic tile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425035.jpg', 'caption': 'A white toilet with white tile in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581402.jpg', 'caption': 'A calico cat curls up inside a bowl to sleep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581402.jpg', 'caption': 'A cat that is laying down in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581402.jpg', 'caption': 'The white and orange kitten is lying inside of a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581402.jpg', 'caption': 'Cat taking a nap in a white bowl on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581402.jpg', 'caption': 'a close up of a cat sleeping in a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245383.jpg', 'caption': 'a motorcycle and a three wheeler both coming same direction on both sides of street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245383.jpg', 'caption': 'A person riding a motorcycle down the middle of street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245383.jpg', 'caption': 'Two people riding on the back of a red motorcycle in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245383.jpg', 'caption': 'How many idiots can you fit on a red motorbike, anyway?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245383.jpg', 'caption': 'Two people riding on a red motorcycle in the middle of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540806.jpg', 'caption': 'A couple riding a motorcycle down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540806.jpg', 'caption': 'A couple is riding a motorcycle that is pulling a cart behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540806.jpg', 'caption': 'two people riding a motorcycle with a car on the back of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540806.jpg', 'caption': 'A couple riding a motorcycle over a bridge at a freeway entrance ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540806.jpg', 'caption': \"Two people on a motorcycle that's got a cooler attached to it.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402330.jpg', 'caption': 'A white toilet on the ground by some junk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402330.jpg', 'caption': 'A white toilet sitting next to trunks of stuff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402330.jpg', 'caption': 'An old toilet sitting next to other debris. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402330.jpg', 'caption': 'a close up of a toilet outdoors on concrete', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402330.jpg', 'caption': 'This is an out of order toilet among a pile of junk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456732.jpg', 'caption': 'A white toilet sitting under a window on an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456732.jpg', 'caption': 'A very close up look at a typical white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456732.jpg', 'caption': 'A toilet in an airplane with the seat open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456732.jpg', 'caption': 'A toilet with the lid open in front of a window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456732.jpg', 'caption': 'There is a toilet with a sign on the lid.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069577.jpg', 'caption': 'A table full of many different types of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069577.jpg', 'caption': 'A table full of food ready for an office party', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069577.jpg', 'caption': 'There is a table filled with foods such as: a vegetable tray, fruit tray, and a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069577.jpg', 'caption': 'A table topped with plastic containers filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069577.jpg', 'caption': 'A table is filled with many snacks and treats. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319345.jpg', 'caption': 'A row of motorcycles parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319345.jpg', 'caption': 'a group of motorcyles placed side by side parked on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319345.jpg', 'caption': 'A group of motorcycles by a street together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319345.jpg', 'caption': 'A line of motorcycles parked next to parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319345.jpg', 'caption': 'A line of motorcycles parked on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451053.jpg', 'caption': 'A computer desk with highlighted papers all over it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451053.jpg', 'caption': 'A desk with paper, a monitor and keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451053.jpg', 'caption': 'A desktop computer sitting on top of an office desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451053.jpg', 'caption': 'A computer on a desk covered in papers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451053.jpg', 'caption': 'A computer on a desk covered with many papers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123511.jpg', 'caption': 'A close up of an orange in a red serving bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123511.jpg', 'caption': 'a orange sliced in half and resting in a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123511.jpg', 'caption': 'A sliced orange half in a red bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123511.jpg', 'caption': 'A slice of orange sitting in a red bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123511.jpg', 'caption': 'the orange is in a bowl on the table\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176271.jpg', 'caption': 'A glass bowl filled with oranges on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176271.jpg', 'caption': 'A glass bowl of oranges on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176271.jpg', 'caption': 'A bowl of oranges sits on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176271.jpg', 'caption': 'a glass bowl with tangerines on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176271.jpg', 'caption': 'A glass bowl full of oranges is on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271795.jpg', 'caption': 'A laptop computer sitting on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271795.jpg', 'caption': 'An office cubicle decorated with action figures and posters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271795.jpg', 'caption': 'this desk is very long and has a lap top in the middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271795.jpg', 'caption': 'A laptop sits on a desk near a phone and toys on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271795.jpg', 'caption': 'a very decorated work cubicle with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229599.jpg', 'caption': 'A crystal bowl filled with oranges on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229599.jpg', 'caption': 'The glass bowl is filled with ripped oranges. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229599.jpg', 'caption': 'Clear glass bowl full of bright orange oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229599.jpg', 'caption': 'There is a glass bowl with oranges in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229599.jpg', 'caption': 'a glass bowl full of tangerines on a wooden chest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261062.jpg', 'caption': 'the door to the room is open to the outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261062.jpg', 'caption': 'A room with wooden cabinets and a brown couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261062.jpg', 'caption': 'a living room with some chairs sitting behind a small couch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261062.jpg', 'caption': 'A mantle over a fire place and in front of a love seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261062.jpg', 'caption': 'A living room is shown with chairs and cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137369.jpg', 'caption': 'A silver motorcycle parked next to a forest filled with lots of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137369.jpg', 'caption': 'A grey motorcycle parked in a tropical setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137369.jpg', 'caption': 'A motorcycle sits parked in palm tree lined driveway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137369.jpg', 'caption': 'There is a motor cycle that is parked next to many plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137369.jpg', 'caption': 'A motorcycle on a dirt road near palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102497.jpg', 'caption': 'The back of a large, blue motorcycle and rider', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102497.jpg', 'caption': 'A person riding a blue motorcycle on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102497.jpg', 'caption': 'A man in a large blue motorcycle is traveling on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102497.jpg', 'caption': 'He has better watch out for police officers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102497.jpg', 'caption': 'A person wearing a helmet rides a large blue motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378657.jpg', 'caption': 'people standing outside a building with clocks built into the side of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378657.jpg', 'caption': 'a group of people underneath a large clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378657.jpg', 'caption': 'Many people gather around a building with clocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378657.jpg', 'caption': 'A building with a bunch of people standing around it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378657.jpg', 'caption': 'An odd looking clock on the side of a building above a large group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559442.jpg', 'caption': 'White clouds float above a big fancy castle on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559442.jpg', 'caption': 'A very large building with a clock on the front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559442.jpg', 'caption': 'An old European cathedral on a lightly cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559442.jpg', 'caption': 'People attend a large old church on a clear blue day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559442.jpg', 'caption': 'The image shows a grand building with high levels of detailed architecture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048044.jpg', 'caption': 'a person sitting at a table with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048044.jpg', 'caption': 'A beautiful woman in a blue dress with white polka dots and lines sitting in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048044.jpg', 'caption': 'A women who is working on a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048044.jpg', 'caption': 'A woman that is sitting down in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048044.jpg', 'caption': 'A barefoot woman sitting at a table with a glass of wine and her computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460266.jpg', 'caption': 'Partially eaten cake on a white plate in a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460266.jpg', 'caption': 'The desert is ready to be eaten on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460266.jpg', 'caption': 'a piece of cake is on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460266.jpg', 'caption': 'a plate that has a piece of cake on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460266.jpg', 'caption': 'A piece of cake, with one slice taken out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012370.jpg', 'caption': 'A man riding on the back of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012370.jpg', 'caption': 'A man is sitting on a black motorcylce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012370.jpg', 'caption': 'A man sitting on a motorcycle in a yellow riding jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012370.jpg', 'caption': 'A man sitting on a motorcycle on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012370.jpg', 'caption': 'There is a man sitting on a motor cycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334941.jpg', 'caption': 'A woman leaning up against an outside wall using her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334941.jpg', 'caption': 'A young lady is smiling while on her cellular phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334941.jpg', 'caption': 'A young girl playing on her cell phone with a cigarette in her hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334941.jpg', 'caption': 'A woman leaning against a stone structure while looking at her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334941.jpg', 'caption': 'A woman standing by a building with a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320249.jpg', 'caption': 'THERE IS A MOTORCYLCE WITH PEOPLE STANDING ON THE SIDE OF THE STREET ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320249.jpg', 'caption': 'a motorcycle being driven down the road with people watching on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320249.jpg', 'caption': 'MOTORCYCLIST CARRYING AMERICAN FLAG OF HIS BIKE, OTHERS LOOKING ON', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320249.jpg', 'caption': 'People watching a motorcycle parade on a cold night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320249.jpg', 'caption': 'a person on motorcycle with a united states flag parked on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436174.jpg', 'caption': 'motorcycle bikes all parked next to each other lined up down the road . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436174.jpg', 'caption': 'Tons of motorcycles are parked close to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436174.jpg', 'caption': 'A row of motorcycles parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436174.jpg', 'caption': 'a row of motorcycles in front of a forest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436174.jpg', 'caption': 'Many motorcycles are lined up next to each other with several people standing among them in front of a lot of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442549.jpg', 'caption': 'A group of motorcyclists riding across the town', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442549.jpg', 'caption': 'A group of people riding motorcycles down a street lined with motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442549.jpg', 'caption': 'A man with a bandanna almost covering his face rides his motorcycle with other motorcyclists. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442549.jpg', 'caption': 'The motorcycle gang is driving threw town today ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442549.jpg', 'caption': 'Several men riding their motorcycles on a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024343.jpg', 'caption': 'two people on motorcycles car and trees and water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024343.jpg', 'caption': 'MOTORCYCLISTS WAITING IN TRAFFIC ON A RAINY DAY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024343.jpg', 'caption': 'Two individuals sit on motorcycles on a busy street in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024343.jpg', 'caption': 'Two motorcyclists next to one another on damp street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024343.jpg', 'caption': 'Two people in helmets sitting on a motorcycle behind a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425404.jpg', 'caption': 'The doors on a subway car are slightly opened.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425404.jpg', 'caption': 'The doors are very close together but not closed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425404.jpg', 'caption': 'a blue and white door that is to a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425404.jpg', 'caption': 'A view of a door that is blue and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425404.jpg', 'caption': 'the door with door handles of a train car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052132.jpg', 'caption': 'A room with an older model television in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052132.jpg', 'caption': 'A living room with a laundry basket on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052132.jpg', 'caption': 'A living room that has a television and a chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052132.jpg', 'caption': 'a television set a gray chair a table lamp and some pictures', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052132.jpg', 'caption': 'A picture of a old fashioned looking living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010643.jpg', 'caption': 'A bathroom sink sitting underneath a mirror in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010643.jpg', 'caption': 'A bathroom area with sink, phone and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010643.jpg', 'caption': 'A bathroom which has a telephone, sink and mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010643.jpg', 'caption': 'I am unable to see the image above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010643.jpg', 'caption': 'a mirror a phone a sink a toilet and a light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253262.jpg', 'caption': 'A large jet sitting on top of an airport tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253262.jpg', 'caption': 'a large airplane that is on a runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253262.jpg', 'caption': 'A plane sitting at the airport, with luggage crew working on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253262.jpg', 'caption': 'a blue and white plane and some people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253262.jpg', 'caption': 'A small passenger plane loading cargo in an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139168.jpg', 'caption': 'A squadron of four fighter jets flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139168.jpg', 'caption': 'Four fighter jets are flying across the clear sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139168.jpg', 'caption': 'Four fighter jets in formation with three having a smoke stream off of the tail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139168.jpg', 'caption': 'Four jet airplanes are flying in formation in a cloudless sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139168.jpg', 'caption': 'Four airplanes are flying up in the air in formation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288002.jpg', 'caption': 'Four jets fly overhead trailing smoke with a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288002.jpg', 'caption': 'Four jets are flying high in the blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288002.jpg', 'caption': 'Fighter jets flying together in close formation leaving vapor trails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288002.jpg', 'caption': 'some fighter jets flying in formation with some smoke trails behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288002.jpg', 'caption': 'a couple of fighter jets flying through the blue sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255633.jpg', 'caption': 'A fighter jet is flying through a clear sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255633.jpg', 'caption': 'A white space shuttle flies in a clear blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255633.jpg', 'caption': 'The jet air craft is up side down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255633.jpg', 'caption': 'A airplane with striped wings is in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255633.jpg', 'caption': 'A USAF jet flying upside down in a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376177.jpg', 'caption': 'A group of people observing two planes at an air show. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376177.jpg', 'caption': 'A family walks on a runway near huge planes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376177.jpg', 'caption': 'People walking towards aircrafts on display outside during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376177.jpg', 'caption': 'People walking around two different Air Force airplanes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376177.jpg', 'caption': 'Large, air force airplanes sit on a runway while tourists look at them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115178.jpg', 'caption': 'An airplane flying in the sky with smoke coming out of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115178.jpg', 'caption': 'A trick plane performing trick moves in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115178.jpg', 'caption': 'A red and black airplane in a clear blue sky upside down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115178.jpg', 'caption': 'A red and black trick plane leaving a smoke trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115178.jpg', 'caption': 'A red plane flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116279.jpg', 'caption': 'A large jetliner flying through a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116279.jpg', 'caption': 'A airplane that is flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116279.jpg', 'caption': 'The jet airplane flies across the blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116279.jpg', 'caption': 'a red and white plane flying under a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116279.jpg', 'caption': 'An orange, red and grey plane flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392670.jpg', 'caption': 'a large air plane on a run way ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392670.jpg', 'caption': 'a plane flies across a big wide run way', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392670.jpg', 'caption': 'A Lufthansa commercial jetliner parked at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392670.jpg', 'caption': 'Lufthansa aircraft carrier on the tarmac of an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392670.jpg', 'caption': 'A large airplane is seen on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539808.jpg', 'caption': 'A humongous jumbo jet is on the airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539808.jpg', 'caption': 'an airplane sitting on an asphalt landing strip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539808.jpg', 'caption': 'An airport parked on an airstrip in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539808.jpg', 'caption': 'A Lufthansa jumbo-jet at some airport during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539808.jpg', 'caption': 'The plane is sitting on the runway at the airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572733.jpg', 'caption': 'A large airliner jet flying through the blue sky.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000361763.jpg', 'caption': 'A man in a baseball uniform stands spread eagle near a man with a red had who has a baseball glove on one hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361763.jpg', 'caption': 'Two boys playing baseball behind a fence on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361763.jpg', 'caption': 'two baseball players on in uniform on a baseball field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486580.jpg', 'caption': 'A man in the snow in the mountains ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486580.jpg', 'caption': 'there is a snowboarder that is going down a snow hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486580.jpg', 'caption': 'Skier tackling steep slope on bright sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486580.jpg', 'caption': 'Snow-dusted evergreens and rolling hills mark the distance, while in the foreground a hunched over skier moves through a dip between two snow-packed slopes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486580.jpg', 'caption': 'a man on a snowboard is going down a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561437.jpg', 'caption': 'A person in white shirt doing a trick on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561437.jpg', 'caption': 'A skier performing a jump on a hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561437.jpg', 'caption': 'A skier flying very high in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561437.jpg', 'caption': 'a man doing a jump in the air on skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561437.jpg', 'caption': 'A person flying through the air on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033958.jpg', 'caption': 'a person on skis doing a backflip high in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033958.jpg', 'caption': 'A person on skis doing a flip in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033958.jpg', 'caption': 'A skier is performing a trick in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033958.jpg', 'caption': 'The skier with skis is upside down on a hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033958.jpg', 'caption': 'A skier is in mid air doing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166624.jpg', 'caption': 'A person in a white jacket skiing down a slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166624.jpg', 'caption': 'A person riding skis down a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166624.jpg', 'caption': 'Person in white ski jacket coming down snow filled mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166624.jpg', 'caption': 'A woman dressed in black and white gear, skiing down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166624.jpg', 'caption': 'Someone skiing down a ski slope with ski poles in the hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478981.jpg', 'caption': 'A piece of cooked broccoli is on some cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478981.jpg', 'caption': 'A casserole is adorned with broccoli and is freshly baked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478981.jpg', 'caption': 'A piece of roasted broccoli sits atop a cheesy casserole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478981.jpg', 'caption': 'A piece of broccoli on a piece of cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478981.jpg', 'caption': 'A piece of broccoli on top of a cheesy dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138057.jpg', 'caption': 'A cheesy pizza, topped with chicken and vegetables. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138057.jpg', 'caption': 'a pan of pizza with broccoli and cheese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138057.jpg', 'caption': 'A large plate of cooked food with broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138057.jpg', 'caption': 'A cheese pizza with vegetables on it sitting on a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138057.jpg', 'caption': 'A pizza covered in cheese and toppings with broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519055.jpg', 'caption': 'A man throwing a baseball while people watch from chairs behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519055.jpg', 'caption': 'a male pitcher is in a baseball game throwing the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519055.jpg', 'caption': 'A baseball player pitching a ball while wearing a mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519055.jpg', 'caption': 'Baseball pitcher in the middle of a wind up just before throwing the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519055.jpg', 'caption': 'A man in a blue shirt and white pants wears a baseball hat and stretches his arm back while holding a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387375.jpg', 'caption': 'A group of people riding on top of a ski lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387375.jpg', 'caption': 'A group of people wave while riding a ski lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387375.jpg', 'caption': 'a bunch of people are on a ski lift', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387375.jpg', 'caption': 'people flying very high and waving their hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387375.jpg', 'caption': 'A group of people in ski gear ride on a ski lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157370.jpg', 'caption': 'A woman on a ski slope wearing her skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157370.jpg', 'caption': 'The woman in red and black is skiing down the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157370.jpg', 'caption': 'The woman in the red coat is skiing sideways in snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157370.jpg', 'caption': 'A girl in an orange and white blazer is skiing down the hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157370.jpg', 'caption': 'A female skier traveling down a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239235.jpg', 'caption': 'A group of people riding down a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239235.jpg', 'caption': 'people holding a skating pole on the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239235.jpg', 'caption': 'A group of skiers wearing black and red on a mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239235.jpg', 'caption': 'Four skiers go down a steep slope together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239235.jpg', 'caption': 'Four people skiing on their skis at the ski slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432146.jpg', 'caption': 'A person riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432146.jpg', 'caption': 'A man in a red jacket is skiing through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432146.jpg', 'caption': 'A skier skiing down a slope of fresh snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432146.jpg', 'caption': \"A person riding on ski's down a hill.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432146.jpg', 'caption': 'A skier is headed down a slope on his skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257046.jpg', 'caption': 'A boy in a pitchers pose then pitching a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257046.jpg', 'caption': 'A young pitcher throws a ball on the pitchers mound', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257046.jpg', 'caption': 'Two photos of a young boy throwing a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257046.jpg', 'caption': 'Two pictures of a boy throwing a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257046.jpg', 'caption': 'A side by side picture of a boy about to throw a pitch, and then delivering the pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131280.jpg', 'caption': 'a group of pictures with baseball players in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131280.jpg', 'caption': 'A man standing on a baseball field talking to a child on the pitchers mound.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131280.jpg', 'caption': 'Coach telling young pitcher what to do with the baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131280.jpg', 'caption': \"In side-by-side photos, a uniformed adult coach engages with a child on a baseball diamond's pitching mound and the child player stands alone in the next picture with the ball in hand at his chest and gloved hand at his side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131280.jpg', 'caption': 'A child is talking to a man at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508949.jpg', 'caption': \"A woman riding skis next to a brown dog standing on it's hind legs.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508949.jpg', 'caption': 'A woman on skis leans toward a dog standing on hind legs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508949.jpg', 'caption': \"a women on ski's leaning over to a dog .\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508949.jpg', 'caption': 'There is a woman on skis next to a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508949.jpg', 'caption': 'Person on skis and snow looking at dog on two legs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447378.jpg', 'caption': 'Several different types of vegetables laying together including cabbage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447378.jpg', 'caption': 'Fresh vegetables placed side by side on a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447378.jpg', 'caption': 'close up of root vegetables including cabbage and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447378.jpg', 'caption': 'An assortment of vegetables next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447378.jpg', 'caption': 'There is cabbage, two turnips, a head of broccoli, a sweet potato, and a broccoli crown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270785.jpg', 'caption': 'A photo of an outdoor with many things in the scene.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270785.jpg', 'caption': 'A man on skis stands next to a sign while a golden dog runs beside him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270785.jpg', 'caption': 'A dog bounds through the snow near a small shack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270785.jpg', 'caption': 'A dog and a man stand on top of a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270785.jpg', 'caption': 'a dog defecating on the snow and a man standing by a sign on skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099807.jpg', 'caption': 'A person with skis in the snow with two dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099807.jpg', 'caption': 'A woman with skis and two tan dogs standing in the snow looking at the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099807.jpg', 'caption': 'A woman standing between two brown dogs on a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099807.jpg', 'caption': 'A woman and two dogs are skiing in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099807.jpg', 'caption': 'A woman near her cross country skies and her two golden retrievers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573796.jpg', 'caption': 'a apple that has a pair of knifes sticking out of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573796.jpg', 'caption': 'A large knife sticking out of an apple in front of a blood soaked wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573796.jpg', 'caption': 'A withered apple that has been stabbed with blood in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573796.jpg', 'caption': 'A knife sticking out of an apple and red splatters are on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573796.jpg', 'caption': 'red paint lines the walls behind an apple with a knife in it to give the illusion of blood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066445.jpg', 'caption': 'A white plate topped with pasta and chicken with broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066445.jpg', 'caption': 'A plate of pasta, mushrooms, broccoli. and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066445.jpg', 'caption': 'A dish of rotini and shell pasta tossed with broccoli and parmesan cheese in a lite white sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066445.jpg', 'caption': 'Some awful looking pasta with broccoli is seen here.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066445.jpg', 'caption': 'pasta shells and broccoli sprinkled with Parmesan cheese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345618.jpg', 'caption': 'A picture of some food on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345618.jpg', 'caption': 'A white plate topped with meat and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345618.jpg', 'caption': 'A simple meal with chicken , greens and cranberry sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345618.jpg', 'caption': 'A plate contains curry, rice, and green vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345618.jpg', 'caption': 'A PLATE OF RICE MEAT AND VEGETABLES ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205605.jpg', 'caption': 'A wine glass and bottle on a kitchen counter by a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205605.jpg', 'caption': 'A glass of wine is sitting next to a bottle of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205605.jpg', 'caption': 'A half empty wine bottle beside a wine glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205605.jpg', 'caption': 'A glass and bottle of wine sit on a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205605.jpg', 'caption': 'A glass of wine sitting on a counter next to a bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011742.jpg', 'caption': 'A glass of red wine sits beside the bottle for a refill as a piece of cake goes untouched in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011742.jpg', 'caption': 'A bottle of good Shiraz sits beside a glass with some in it; something yummy to eat appears in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011742.jpg', 'caption': 'A bottle of wine sitting next to a wine glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011742.jpg', 'caption': 'A bottle of wine and a glass on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011742.jpg', 'caption': 'A partially-full glass of wine with a partially-full bottle sit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088854.jpg', 'caption': 'Two cross country skiers heading onto the trail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088854.jpg', 'caption': 'Two guys cross country ski in a race', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088854.jpg', 'caption': 'Skiers on their skis ride on the slope while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088854.jpg', 'caption': 'To skiers competing on a ski trail in a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088854.jpg', 'caption': 'Spectators watch cross country ski competitors fly by ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024755.jpg', 'caption': 'I am unable to see an image above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024755.jpg', 'caption': 'A group of skiers in the snow in a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024755.jpg', 'caption': 'A time lapse photo of a skier skiing down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024755.jpg', 'caption': 'A group of men on skis in a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024755.jpg', 'caption': 'A group of skiers glide along the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173204.jpg', 'caption': 'Two skiers race while a crowd looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173204.jpg', 'caption': 'A man in red and one in blue are skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173204.jpg', 'caption': 'people holding skating board and other watching them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173204.jpg', 'caption': 'Two skiers in the middle of a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173204.jpg', 'caption': 'Two men are riding on skis in a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145422.jpg', 'caption': 'A time lapse photo of a man skiing down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145422.jpg', 'caption': 'A group of men skiing in a race with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145422.jpg', 'caption': 'A bunch of skiers skiing as part of a sporting event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145422.jpg', 'caption': 'a group of skiiers racing down a hill ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145422.jpg', 'caption': 'Cross country skiers are engaged in a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245182.jpg', 'caption': 'A group of skiers skiing in a line with spectators on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245182.jpg', 'caption': 'Cross country skiers in a competition with number 33 in front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245182.jpg', 'caption': 'Skiers in different uniforms race down a snowy mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245182.jpg', 'caption': 'Four competitive skiers skiing down a mountain slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245182.jpg', 'caption': 'Competitors cluster in a cross country ski race', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321395.jpg', 'caption': 'A plate of food that includes rice, meat and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321395.jpg', 'caption': 'A plate has meat and an array of vegetables. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321395.jpg', 'caption': 'Broccoli, carrot, and dome other items on a dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321395.jpg', 'caption': 'A plate of meat, rice and cooked vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321395.jpg', 'caption': 'teriyaki chicken rice and broccoli and mixed vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033900.jpg', 'caption': 'A man riding skis on top of a snow covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033900.jpg', 'caption': 'a man that is skiing down a small mound of snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033900.jpg', 'caption': 'A man standing on a mound of snow with several dogs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033900.jpg', 'caption': 'a person riding skis on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033900.jpg', 'caption': 'A man is skiing in a field with a group of dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416059.jpg', 'caption': 'Two people walk through the snow behind a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416059.jpg', 'caption': 'Two people are out with their dog in their ski gear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416059.jpg', 'caption': 'A man and walk in the snow with their skis and a dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416059.jpg', 'caption': 'A dog leads the way for two crosscountry skiers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416059.jpg', 'caption': 'Two people on skis and a dog are standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119939.jpg', 'caption': 'Some young skateboarders are riding down the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119939.jpg', 'caption': 'Two boys skate boarding down a city sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119939.jpg', 'caption': 'Two young men skateboard down a sidewalk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119939.jpg', 'caption': 'A couple of men riding skateboards down a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119939.jpg', 'caption': 'Black and white photograph of skate board riders on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160195.jpg', 'caption': 'There is two men riding on a skateboard on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160195.jpg', 'caption': 'Two men who are skateboarding down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160195.jpg', 'caption': 'Two friends are skateboarding down the street to their next destination.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160195.jpg', 'caption': 'A man riding a skateboard next to another young man also on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160195.jpg', 'caption': 'A man on a skateboard, riding on a sidewalk area while another man on a skateboard rides beside him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262119.jpg', 'caption': 'A man flying through the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262119.jpg', 'caption': 'A young man is in the air on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262119.jpg', 'caption': 'The man is skateboarding in the park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262119.jpg', 'caption': 'A man that is jumping up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262119.jpg', 'caption': 'A boy doing a trick on his skate board at the skate park ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481415.jpg', 'caption': 'Snowy mountain with flags and an air born skier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481415.jpg', 'caption': 'Skier jumping over a flagged snowy slope in competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481415.jpg', 'caption': 'A skier going over a jump in the snow in the mountains ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481415.jpg', 'caption': 'Skier in the air after going over a small hill in the mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481415.jpg', 'caption': 'The people are skiing in the snow covered area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083161.jpg', 'caption': 'A white plate topped with salad and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083161.jpg', 'caption': 'A plate of pasta with greens and toasted bread pieces. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083161.jpg', 'caption': 'Bread crumbs sitting on top of a veggie plate with noodles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083161.jpg', 'caption': 'A pasta dish with bread crumbs and cooked green vegetable', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083161.jpg', 'caption': 'A plate of food that includes broccoli, noodles and bread crumbs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484573.jpg', 'caption': 'A pile of food on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484573.jpg', 'caption': 'a plate of noodles with chicken and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484573.jpg', 'caption': 'Plate full of noodles, lettuce, croutons and dressing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484573.jpg', 'caption': 'A salad made of croutons, noodles and broccoli sitting on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484573.jpg', 'caption': 'A plate of pasta, croutons, and something else.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580591.jpg', 'caption': 'A woman riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580591.jpg', 'caption': 'A snow skier on a cross country trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580591.jpg', 'caption': 'A lone woman skies down the slope in her red snow jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580591.jpg', 'caption': 'A person on skis standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580591.jpg', 'caption': \"A woman who is standing on ski's in the snow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004275.jpg', 'caption': 'A young man doing a skateboard trick outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004275.jpg', 'caption': 'A young man jumping off his skateboard while skateboarding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004275.jpg', 'caption': 'The young man is playing on his skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004275.jpg', 'caption': 'A person on a skateboard does an air trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004275.jpg', 'caption': 'An adolescent boy in a red hat doing tricks on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551957.jpg', 'caption': 'A young man does a kick flip outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551957.jpg', 'caption': 'A skateboarder in blue jeans and a black shirt doing a trick. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551957.jpg', 'caption': 'A guy is doing tricks on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551957.jpg', 'caption': 'A man performing a jump on a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551957.jpg', 'caption': 'A man jumping on his surfboard in a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422686.jpg', 'caption': 'A young man riding down the side of a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422686.jpg', 'caption': 'a man on a skate board riding in on a skate ramp ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422686.jpg', 'caption': 'A skateboarder hitting a trick on a half pipe with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422686.jpg', 'caption': 'A skateboarder riding their board in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422686.jpg', 'caption': 'A man that is in a bowl with a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468545.jpg', 'caption': 'A man riding a skateboard up the side of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468545.jpg', 'caption': 'Some skateboarders practice at a park on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468545.jpg', 'caption': 'A couple of people with skateboards on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468545.jpg', 'caption': 'Two men with skateboards in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468545.jpg', 'caption': 'A man skating in a skate park with another standing nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328284.jpg', 'caption': 'A person is snow skiing next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328284.jpg', 'caption': 'A person in a forest on skies in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328284.jpg', 'caption': 'a man skiing on some snow in the woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328284.jpg', 'caption': 'A woman cross country skiing over a small creek.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328284.jpg', 'caption': 'A man on skies is standing in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362005.jpg', 'caption': 'A man flying into the air on top of a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362005.jpg', 'caption': 'A young man doing a skateboard trick while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362005.jpg', 'caption': 'very many young people skating and others watching', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362005.jpg', 'caption': 'A skateboarder concentrates in midair as others watch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362005.jpg', 'caption': 'A boy riding on his skateboard at a skate patk whike other guys watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434662.jpg', 'caption': 'A skier bending down to gain momentum as she goes down the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434662.jpg', 'caption': 'A person is skiing quickly down a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434662.jpg', 'caption': 'The man is racing down the hill in his skis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434662.jpg', 'caption': 'The skier is going down the run with arms back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434662.jpg', 'caption': 'The skier is speeding swiftly down the snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550601.jpg', 'caption': 'Two people are in the air as they perform water stunts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550601.jpg', 'caption': 'The water skiers are jumping up above the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550601.jpg', 'caption': 'Two men flying through the air, while on water skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550601.jpg', 'caption': 'A couple of men flying through the air on water skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550601.jpg', 'caption': 'Two people on skis soaring over the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009628.jpg', 'caption': 'A man riding a board over the top of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009628.jpg', 'caption': 'A person being pulled on a surf board .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009628.jpg', 'caption': 'A man is in the air while sitting on a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009628.jpg', 'caption': 'A man using a hydrofoil wake board being pulled behind a boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009628.jpg', 'caption': 'A man flying through the air over the water on a board while holding a rope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542922.jpg', 'caption': 'Chicken and broccoli garnished with tomatoes and sliced lemons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542922.jpg', 'caption': 'Food topped with lemons and tomatoes next to broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542922.jpg', 'caption': 'A fish meal has sides of broccoli and tomato.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542922.jpg', 'caption': 'A piece of salmon with lemon, broccoli and tomato.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542922.jpg', 'caption': 'Closeup of food that includes chicken, lemon and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226588.jpg', 'caption': 'a person riding skis on a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226588.jpg', 'caption': 'Woman enjoying down hill skiing at a well-groomed resort', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226588.jpg', 'caption': 'a woman skier coming to a stop after her run down the gnarly hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226588.jpg', 'caption': 'A man riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226588.jpg', 'caption': 'A person is skiing while looking at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283222.jpg', 'caption': 'A pair of red and black skis on a white background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283222.jpg', 'caption': 'The front portion of two head brand snow skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283222.jpg', 'caption': 'Back view of a skier with red skis on the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283222.jpg', 'caption': 'A man riding skis on a snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283222.jpg', 'caption': 'Above view of someone with skis on their feet and snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122542.jpg', 'caption': 'TWO LADIES ARE OUT SPENDING THE DAY SKIING', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122542.jpg', 'caption': 'A couple of women standing on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122542.jpg', 'caption': 'a couple of people on skis stand on a snowy hill top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122542.jpg', 'caption': 'Two people standing on a ski slope looking down the hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122542.jpg', 'caption': 'A couple of cross country skiers on a bright sunny day on mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305738.jpg', 'caption': 'A picture loaded with much wonderful sustenance on table.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305738.jpg', 'caption': 'Cheesy broccoli goes well with a rice dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305738.jpg', 'caption': 'a fork is laying on a red plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305738.jpg', 'caption': 'A red plate topped with broccoli and white cauliflower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305738.jpg', 'caption': 'A closeup image of a plate with broccoli and cheese and something white on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166358.jpg', 'caption': 'A person skiing alone on snow covered mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166358.jpg', 'caption': 'A full view of a snow resort with many people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166358.jpg', 'caption': 'A hill that is used for people to ski on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166358.jpg', 'caption': 'A person sits in the snow on a snowy mountain side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166358.jpg', 'caption': 'a person riding skis on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292789.jpg', 'caption': 'a close up of a skate board on a tree branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292789.jpg', 'caption': 'A skateboard sitting in the branch of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292789.jpg', 'caption': 'A skateboard resting on the limb of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292789.jpg', 'caption': 'A skateboard with green wheels is in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292789.jpg', 'caption': 'A skateboard is sitting in a tree outside.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301799.jpg', 'caption': 'A sandwich, carrots and strawberries in a lunch box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301799.jpg', 'caption': 'A bento box with chopsticks containing strawberries, carrots, sandwiches, broccoli, lettuce, and some other foods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301799.jpg', 'caption': 'A sandwich, vegetables, and fruit packed for lunch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301799.jpg', 'caption': 'A bento lunch box containing a sandwich fresh fruits and vegetables ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301799.jpg', 'caption': 'A Small plate of assorted vegetables and fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317798.jpg', 'caption': 'A half a sandwich sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317798.jpg', 'caption': 'A sandwich with meat, cheese, lettuce and tomato on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317798.jpg', 'caption': 'A large sandwich has vegetables, meat, and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317798.jpg', 'caption': 'a sandwich with some cheese cucumbers and meat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317798.jpg', 'caption': 'A sandwich on a counter in front of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532620.jpg', 'caption': 'A sandwich is next to a yellow stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532620.jpg', 'caption': 'A stuff giraffe next to a sandwich with grassy field below.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532620.jpg', 'caption': 'A stuffed animal being held up to a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532620.jpg', 'caption': 'A stuffed animal yellow giraffe placed next to a sandwich as if the giraffe is eating it, with a large body of water and grass areas in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532620.jpg', 'caption': 'A stuffed toy giraffe eating a sandwich on a grass covered field..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215787.jpg', 'caption': 'A couple of women preparing food inside of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215787.jpg', 'caption': 'A line of people are making fast food hot dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215787.jpg', 'caption': 'Two women on a line work to make sandwiches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215787.jpg', 'caption': 'this is a man putting toppings on a hot dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215787.jpg', 'caption': 'Two people at a fast food restaurant preparing food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535993.jpg', 'caption': 'a glass of water is sitting on a wood table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535993.jpg', 'caption': 'A table that has some cake, meat, and bread on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535993.jpg', 'caption': 'A dining table is set with many different dishes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535993.jpg', 'caption': 'A cherry pie sitting on a table with other foods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535993.jpg', 'caption': 'Table set with different types of desert on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361472.jpg', 'caption': 'Small children with protective gear playing in a park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361472.jpg', 'caption': 'Small children stand near bicycles at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361472.jpg', 'caption': 'Boys wearing helmets carry a bicycle up a ramp at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361472.jpg', 'caption': 'small children playing with bikes on sloped concrete park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361472.jpg', 'caption': 'A group of young children riding bikes and skateboards with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411027.jpg', 'caption': 'a close up of a sandwich in a paper plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411027.jpg', 'caption': 'A partially eaten pulled meat sandwich rests on a blue picnic table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411027.jpg', 'caption': 'The half eaten sandwich is sitting on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411027.jpg', 'caption': 'A table topped with a container containing a sandwich on top of a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411027.jpg', 'caption': 'A barbeque sandwich on a bun in a paper basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346717.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346717.jpg', 'caption': 'a shirtless skateboarder is doing a trick and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346717.jpg', 'caption': 'a skateboarder jumps over a stone dome with silver domes in front of it and bicycler behind him .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346717.jpg', 'caption': 'A person jumping with a skateboard over concrete.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346717.jpg', 'caption': 'A man is jumping over small sculptures with a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234147.jpg', 'caption': 'A basket of large carrots next to a box of bell peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234147.jpg', 'caption': 'Containers full of vegetables that are sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234147.jpg', 'caption': 'a bucket of carrots near a box of green peppers on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234147.jpg', 'caption': 'THERE IS A BASKET OF VEGETABLES LIKE CARROTTS AND PEPPERS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234147.jpg', 'caption': 'A basket of carrots is next to a box of peppers and boxes of other produce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499957.jpg', 'caption': 'Patches of cloth, cotton, and scissors sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499957.jpg', 'caption': 'A couple of dog patterns, loose cotton, and a pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499957.jpg', 'caption': 'these are a craft project with scissors and a mug', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499957.jpg', 'caption': 'Cotton stuffing, scissors, a cup, and drawings of bears', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499957.jpg', 'caption': ' some animal cutouts next to some cotton and scissors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376751.jpg', 'caption': 'Skies skiing near a chair lift and a mountain behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376751.jpg', 'caption': 'People ski together down a snow covered mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376751.jpg', 'caption': 'Two skiers are skiing down the snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376751.jpg', 'caption': 'A snowy white capped mountain with two skiers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376751.jpg', 'caption': ' Two skiers skinning down a snow hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064335.jpg', 'caption': 'This photo depicts someone cross country skiing in the mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064335.jpg', 'caption': 'A woman cross country skiing on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064335.jpg', 'caption': 'A person cross country skiing on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064335.jpg', 'caption': 'a person that is skiing across a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064335.jpg', 'caption': 'A woman wearing a purple jacket is shown on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067218.jpg', 'caption': 'A group of people riding snow boards on top of a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067218.jpg', 'caption': 'Multiple children skiers are preparing to head downhill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067218.jpg', 'caption': 'A group of children attempting to keep balance on a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067218.jpg', 'caption': 'A group of kids are playing on snowboards outside ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067218.jpg', 'caption': 'A group of kids getting ready to snowboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492914.jpg', 'caption': 'A boy balancing on a skateboard in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492914.jpg', 'caption': 'A person performs a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492914.jpg', 'caption': 'A young man skate boarding on a curbed edge in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492914.jpg', 'caption': 'A guy grinds a rail in a parking lot on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492914.jpg', 'caption': 'A man who is riding on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057224.jpg', 'caption': 'some people on skis ride on the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057224.jpg', 'caption': 'A group of people on some skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057224.jpg', 'caption': 'A few men racing against each other on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057224.jpg', 'caption': 'A group of men walking in the snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057224.jpg', 'caption': 'A couple of people riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242103.jpg', 'caption': 'A small plastic dish with food in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242103.jpg', 'caption': 'A bento box with rice and vegetables is shown with chopsticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242103.jpg', 'caption': 'A green bowl features snacks and fresh fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242103.jpg', 'caption': 'A small green dish with multiple fruits and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242103.jpg', 'caption': 'A container that has some vegetables in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128180.jpg', 'caption': 'a person talking a pic of pizza on the counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128180.jpg', 'caption': 'A woman is standing in front of pizza with fork and knife on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128180.jpg', 'caption': 'The person stands at the white counter to eat the tomato and cheese pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128180.jpg', 'caption': 'Two pieces of pizza on a plate with a knife and fork laying on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128180.jpg', 'caption': 'A large piece of pizza is on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510078.jpg', 'caption': 'A young man riding a skateboard into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510078.jpg', 'caption': 'Young man enjoying time he is spending on his street skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510078.jpg', 'caption': 'Skateboarder with red shirt on jumping on his board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510078.jpg', 'caption': 'A boy practicing tricks with his skateboard in an open cement area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510078.jpg', 'caption': 'A kid doing a trick with a skate board on sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408535.jpg', 'caption': 'A guy with a white shirt and jeans riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408535.jpg', 'caption': 'A person on a skateboard jumping it in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408535.jpg', 'caption': 'Small boy in white shirt and jeans jumping on top of a black board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408535.jpg', 'caption': 'A skate boarder is performing a trick on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408535.jpg', 'caption': 'a boy skating on a dry land with his hands up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113989.jpg', 'caption': 'The young man is practicing his tricks on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113989.jpg', 'caption': 'A person jumping in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113989.jpg', 'caption': 'a man on a skateboard jumping down a short flight of stairs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113989.jpg', 'caption': 'A boy comes down the stairs while on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113989.jpg', 'caption': 'A boy on a skateboard flies over the stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034818.jpg', 'caption': 'A close up of shoes preparing to stand on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034818.jpg', 'caption': \"A person's feet wearing tennis shoes on a skateboard \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034818.jpg', 'caption': 'A close up picture of a persons feet pushing a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034818.jpg', 'caption': 'A person in tennis shoes has one foot on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034818.jpg', 'caption': 'Person wearing black shoes on top of a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151978.jpg', 'caption': 'People skiing in the snow on the mountainside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151978.jpg', 'caption': 'some lights on a chairlift and some skiers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151978.jpg', 'caption': 'A ski resort covered with snow and filled with people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151978.jpg', 'caption': 'People are skiing around a slope that is lit up for night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151978.jpg', 'caption': 'many people at the bottom of a ski slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024157.jpg', 'caption': 'The group of people are skiing on the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024157.jpg', 'caption': 'People trek up the snowy mountain side with skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024157.jpg', 'caption': 'five people climbing up a snowy hill to snow ski', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024157.jpg', 'caption': 'A group of skiers trekking through the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024157.jpg', 'caption': 'Four people are going up a mountain with walking sticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260025.jpg', 'caption': 'A dated image of a newly married couple cutting a wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260025.jpg', 'caption': 'A couple cutting a cake in a wedding photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260025.jpg', 'caption': 'a man and woman are cutting into a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260025.jpg', 'caption': 'a man and woman cut a wedding cake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260025.jpg', 'caption': 'A young couple stands behind a wedding cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329258.jpg', 'caption': 'a young man attempting to jump down some steps on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329258.jpg', 'caption': 'a man jumping in the air on a skateboard performing a stunt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329258.jpg', 'caption': 'A skateboarder doing a jump in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329258.jpg', 'caption': 'A skateboarder is flying down a flight of stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329258.jpg', 'caption': 'A young man riding a skateboard down a flight of stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519880.jpg', 'caption': 'A man on a skateboard doing a trick. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519880.jpg', 'caption': 'A skateboarder grinding down a red and black ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519880.jpg', 'caption': 'A guy on a skateboard does tricks for the audience.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519880.jpg', 'caption': 'A skateboarder in a professional setting grinding down a column.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519880.jpg', 'caption': 'A person that is doing a skateboard trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297233.jpg', 'caption': 'a table set for three with food and wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297233.jpg', 'caption': 'The table has many plates, bowls, and wine glasses on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297233.jpg', 'caption': 'a dining room table with a bottle of wine and wine glasses and a pot of carrots', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297233.jpg', 'caption': 'A dining table in a room with some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297233.jpg', 'caption': 'Wine glasses and plates and bowls on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068166.jpg', 'caption': 'a person is on some skis going down a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068166.jpg', 'caption': 'A man is skiing at night under the park lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068166.jpg', 'caption': 'A person jumping while skiing down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068166.jpg', 'caption': 'The skier is in the air after jumping a ramp made of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068166.jpg', 'caption': 'A man on skis going over a small jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002867.jpg', 'caption': 'a group of young people getting ready to go ski', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002867.jpg', 'caption': 'A group of people have backpacks as they stand on snow skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002867.jpg', 'caption': 'A group of skiers are gathered together as they get ready to ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002867.jpg', 'caption': 'Several people in their ski gear are in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002867.jpg', 'caption': 'four skiers ready to ski down a snowy mountain\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257870.jpg', 'caption': 'A man is eating hot dogs in his mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257870.jpg', 'caption': 'A man is eating two hot dogs without the bun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257870.jpg', 'caption': 'A man eating a hot dog out of its bun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257870.jpg', 'caption': 'A man eats a hot dog in front of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257870.jpg', 'caption': 'a man sticking two hot dogs into his mouth as he holds the bun in his other hand ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378655.jpg', 'caption': 'Slider burgers with hot dog and fries on plate on table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378655.jpg', 'caption': 'Five different sandwiches are next to a bowl of potato fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378655.jpg', 'caption': 'A hot dog and slider burgers are on a white tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378655.jpg', 'caption': 'Hot dogs, hamburgers and sweet potato fries are laid out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378655.jpg', 'caption': 'Various small burgers with a hot dog and a cup of french fries with dip. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200945.jpg', 'caption': 'A hot dog and a pickle on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200945.jpg', 'caption': 'A hotdog that is sitting in a bun on a paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200945.jpg', 'caption': 'A hot dog with pickles and tomatoes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200945.jpg', 'caption': 'there is a sandwich with many different foods in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200945.jpg', 'caption': 'This is a hot dog with tomato, mustard, onion, relish, and pickle on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069411.jpg', 'caption': 'a snowboard instructor teaching students how to snowboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069411.jpg', 'caption': 'A group of people with snowboards in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069411.jpg', 'caption': 'A guy on a snow board does tricks in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069411.jpg', 'caption': 'Five snowboarders in formation in the snow, four sitting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069411.jpg', 'caption': 'A group of people are standing and sitting on ski boards in the middle of the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337488.jpg', 'caption': 'a person riding a skate board on a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337488.jpg', 'caption': 'A young man riding a skateboard up the side of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337488.jpg', 'caption': 'A young boy going up a skateboard ramp to do a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337488.jpg', 'caption': 'A young person wearing a gold helmet and skateboarding on a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337488.jpg', 'caption': 'A skate boarder wearing a helmet is going up the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008923.jpg', 'caption': 'A young boy riding a skateboard on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008923.jpg', 'caption': 'A red headed child is playing with a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008923.jpg', 'caption': 'A little boy is getting ready to do some skateboarding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008923.jpg', 'caption': 'A young boy using a skateboard on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008923.jpg', 'caption': 'A red haired boy is riding his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057286.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057286.jpg', 'caption': 'A skateboarder preforming tricks on a half pipe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057286.jpg', 'caption': 'a man performs a trick on a skate board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057286.jpg', 'caption': 'A boy on a skateboard slides down a skating ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057286.jpg', 'caption': 'A young man hovers above his skateboard, mid air, as he makes the turn on the ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123642.jpg', 'caption': 'there are two sandwiches that are on two white plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123642.jpg', 'caption': 'A steak sandwich on a plate with a unique food design on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123642.jpg', 'caption': 'a close up of a sandwich on a plate on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123642.jpg', 'caption': 'Gourmet sandwiches of meat and mushrooms on fresh rolls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123642.jpg', 'caption': 'two meaty sandwiches sit on top of white plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055429.jpg', 'caption': 'A pink plate topped with two sausages on a bun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055429.jpg', 'caption': 'This meal has two sausages with buns on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055429.jpg', 'caption': 'Two hot dogs laying on a plate with a glass of wine to the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055429.jpg', 'caption': 'There are two hot dogs on the plate, one half eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055429.jpg', 'caption': 'The sausage is sitting on the side of the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449726.jpg', 'caption': 'A fried egg is nestled inside a piece of crusty bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449726.jpg', 'caption': 'a plate that has a bread with an egg in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449726.jpg', 'caption': 'A picture of a toad in the hole egg dish on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449726.jpg', 'caption': 'A sandwich with an egg in the middle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449726.jpg', 'caption': 'A piece of bread that has some egg in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010858.jpg', 'caption': 'Two hotdogs in open aluminum foil with various condiments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010858.jpg', 'caption': 'Two loaded hot dogs beside each other wrapped in tinfoil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010858.jpg', 'caption': 'A hot dog with sauerkraut and onions in tin foil', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010858.jpg', 'caption': 'A couple pieces of tinfoil topped with hot dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010858.jpg', 'caption': 'Two hot dogs in foil loaded with toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525211.jpg', 'caption': 'Chocolate is being inserted into the donut hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525211.jpg', 'caption': 'A baker filling a pastry with chocolate cream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525211.jpg', 'caption': 'A bunch of different shots of dough with chocolate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525211.jpg', 'caption': 'A person who is putting the filling in a doughnut. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525211.jpg', 'caption': 'A person holding a doughnut with a bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462635.jpg', 'caption': 'A young girl holding a sandwich over a couple of plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462635.jpg', 'caption': 'A small child holds a bread and breaded cutlet up for the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462635.jpg', 'caption': 'The young girl is eating a meal sitting on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462635.jpg', 'caption': 'A little girl holding a hotdog in front of the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462635.jpg', 'caption': 'A young girl in a restaurant holding half a sandwich and has two take away bowls in front of her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315641.jpg', 'caption': 'An older woman sitting at a table cutting up donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315641.jpg', 'caption': 'A senior citizen preparing pastries in a large kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315641.jpg', 'caption': 'Woman in a red coat putting doughnuts in a container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315641.jpg', 'caption': 'An older woman placing dessert halves on a tray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315641.jpg', 'caption': 'An elderly lady carefully prepares a platter of deserts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022690.jpg', 'caption': 'A plate of bread with jam and powdered sugar on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022690.jpg', 'caption': 'Jam and powdered sugar top a Croque-monsieur at breakfast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022690.jpg', 'caption': \"This is a platter with a sandwich of ham and cheese topped with confectioner's sugar and jelly.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022690.jpg', 'caption': 'A cheese and ham sandwich with jam on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022690.jpg', 'caption': 'A sandwich with powder sits on a plate on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506441.jpg', 'caption': 'An order of fries to along with a sloppy joe and a pickle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506441.jpg', 'caption': 'Fries, banana and a sandwich on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506441.jpg', 'caption': 'There is a sandwich with French fries on the plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506441.jpg', 'caption': 'A plate that has a sandwich and fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506441.jpg', 'caption': 'a plate of food that has some french fries and a burger', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132510.jpg', 'caption': 'A person in winter gear riding a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132510.jpg', 'caption': 'A snowboarder smiling for a picture while snowboarding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132510.jpg', 'caption': 'A person is snow boarding down a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132510.jpg', 'caption': 'A woman is smiling while riding on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132510.jpg', 'caption': 'young person in a snowsuit is riding downhill on a snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458388.jpg', 'caption': 'three donuts and five donut holes on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458388.jpg', 'caption': 'A white plate topped with donuts and doughnut holes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458388.jpg', 'caption': 'A plate with glazed donuts and donuts holes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458388.jpg', 'caption': 'A white plate with three doughnuts and some doughnut holes sitting on a granite table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458388.jpg', 'caption': 'Three donuts and five donut holes sit on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044536.jpg', 'caption': 'A man riding a paddle board out on a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044536.jpg', 'caption': 'A man on a wave board alone with small waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044536.jpg', 'caption': 'The surfer paddles far out into the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044536.jpg', 'caption': 'a person on a surf board in the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044536.jpg', 'caption': 'A man on a surfboard paddles through choppy water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089355.jpg', 'caption': 'Black and white picture of two blond women walking on beach with surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089355.jpg', 'caption': 'A couple of women carrying surfboards on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089355.jpg', 'caption': 'Two women are holding surfboards as they walk along the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089355.jpg', 'caption': 'Two women with surf boards are walking on the beach.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000238691.jpg', 'caption': 'It is as good a place to nap as other areas of the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238691.jpg', 'caption': 'A person is lying on the luggage claim conveyor belt. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238691.jpg', 'caption': 'man lying on back on stainless steal plateform', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238691.jpg', 'caption': 'A man reclines on a conveyer belt at a baggage claim.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079047.jpg', 'caption': 'A statue of a bear sitting in the middle of a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079047.jpg', 'caption': 'A statue of a bear standing on rocks on a city corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079047.jpg', 'caption': 'A bear statue sits on a sidewalk near a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079047.jpg', 'caption': 'The bear statue had snow and ice on the base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079047.jpg', 'caption': 'Snow surrounds a standing bear statue on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079047.jpg', 'caption': 'Snow surrounds a standing bear statue on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178746.jpg', 'caption': 'Darth Vader holding a plastic light saber in an airport while a kid stands in the background with a real lightsaber.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178746.jpg', 'caption': 'A picture shows Darth Vader waiting at a luggage carousel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178746.jpg', 'caption': 'Darth Vader stands waiting for his luggage in a terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178746.jpg', 'caption': 'Darth Vadar waving his lightsaber while standing at the baggage claim. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178746.jpg', 'caption': 'A person dressed in a Darth Vader outfit who had their light saber stolen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327845.jpg', 'caption': 'there is a small dog sitting on the floor playing with a toy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327845.jpg', 'caption': 'A dog that is lying down on a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327845.jpg', 'caption': 'The dog has a toy cake as it lies on the couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327845.jpg', 'caption': 'Dog on pad holding a slice of cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327845.jpg', 'caption': 'A Papillon lies on a blanket with a toy shaped like a piece of cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330262.jpg', 'caption': 'a bear in a shallow body of water near grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330262.jpg', 'caption': 'A grizzly bear is walking in a stream of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330262.jpg', 'caption': 'A brown bear walking in a small calm creek', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330262.jpg', 'caption': 'A brown bear walking around in the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330262.jpg', 'caption': 'a brown bear standing in the water and looking at something ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347950.jpg', 'caption': 'A very cute brown dog with a disc in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347950.jpg', 'caption': 'A dog running in the grass with a frisbee in his mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347950.jpg', 'caption': 'A dog carrying a Frisbee in its mouth running on a grass lawn. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347950.jpg', 'caption': 'A dog in a grassy field carrying a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347950.jpg', 'caption': \"A brown dog walking across a green field with a frisbee in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434083.jpg', 'caption': 'A horse standing next to a man in a hat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434083.jpg', 'caption': 'A man doing work in the ground with a horse in the back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434083.jpg', 'caption': 'A man is in front of a horse and is installing something in the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434083.jpg', 'caption': 'A man in front of a horse working on its hoof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434083.jpg', 'caption': 'The man is using a tool in the ground as a horse stands behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292435.jpg', 'caption': 'Several brown bears standing in the snow next to a green cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292435.jpg', 'caption': 'A group of bears roaming around an enclosed area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292435.jpg', 'caption': 'many bears in captivity with a fake tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292435.jpg', 'caption': 'Ten brown bears in a zoo on a snowy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292435.jpg', 'caption': 'Group of brown bears in a zoo habitat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355471.jpg', 'caption': 'There is a bear sitting next to a bird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355471.jpg', 'caption': 'A bear and a bird sitting side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355471.jpg', 'caption': 'A brown bear sits on the rocks on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355471.jpg', 'caption': 'A bear sits in his enclosure next to a bird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355471.jpg', 'caption': 'A bear standing on the ground nest to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321804.jpg', 'caption': 'A man and a child standing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321804.jpg', 'caption': 'A man and child playing catch over the net in a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321804.jpg', 'caption': 'A man playing catch with a young child on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321804.jpg', 'caption': 'A man and a young boy playing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321804.jpg', 'caption': 'A man and boy playing catch on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082826.jpg', 'caption': 'Dog on leash sitting with cushions while a person is calming him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082826.jpg', 'caption': 'A dog on a leash sitting on a sofa next to a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082826.jpg', 'caption': 'A close up of a white dog with a blue leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082826.jpg', 'caption': 'a white dog sitting in a chair with a blue leash', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082826.jpg', 'caption': 'A white dog on a blue leash sitting on a pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013843.jpg', 'caption': 'A large brown bear laying down inside of a cave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013843.jpg', 'caption': 'A bear lying in its den on a pile of wood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013843.jpg', 'caption': 'a bear laying down on a few branches on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013843.jpg', 'caption': 'A Brown bear laying on some tree branches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013843.jpg', 'caption': 'A bear lazily rests on a log in its enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357386.jpg', 'caption': 'A black bear walking across a leaf covered park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357386.jpg', 'caption': 'A young black bear runs out of the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357386.jpg', 'caption': 'A bear is walking around on some grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357386.jpg', 'caption': 'a black bear some large rocks and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357386.jpg', 'caption': 'A black bear walks on grass near rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503992.jpg', 'caption': 'A yellow lab curled up in its dog bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503992.jpg', 'caption': 'A large white dog laying in a doggy bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503992.jpg', 'caption': 'A white dog on a dog bed on a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503992.jpg', 'caption': 'A white dog laying in a doggy bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503992.jpg', 'caption': 'a large dog in a dog bed looking at the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065443.jpg', 'caption': 'a dog with spots on a bed and a stuffed animal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065443.jpg', 'caption': 'A small, cute dog on a bed with a dog toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065443.jpg', 'caption': 'A dog sits on a bed with a toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065443.jpg', 'caption': 'A dog that is sitting on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065443.jpg', 'caption': 'A dog with a stuffed animal sitting on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473888.jpg', 'caption': 'A small dog laying down in a pet bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473888.jpg', 'caption': 'A white dog with a black patch eye sitting in a dog bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473888.jpg', 'caption': 'A white and black dog sleeping in a dog bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473888.jpg', 'caption': 'A picture of a dog in a dog bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473888.jpg', 'caption': 'A black and white dog is laying in a pet bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307209.jpg', 'caption': 'A BEAR CUB IS PLAYING WITH A LOG IN THE WATER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307209.jpg', 'caption': 'Here is an image of an outdoor place. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307209.jpg', 'caption': 'A bear that is standing in the water on a log.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307209.jpg', 'caption': 'a bear standing near a log in the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307209.jpg', 'caption': 'A brown bear walking out of a lake on top of a log.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350789.jpg', 'caption': 'some zebra chillin in the wild with a bird flying over', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350789.jpg', 'caption': 'A heard of zebra on the plains at a watering hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350789.jpg', 'caption': 'A group of zebras and birds are gathered around water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350789.jpg', 'caption': 'There is a herd of zebras standing around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350789.jpg', 'caption': 'There are several zebras grazing near the water as a bird flies over them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343680.jpg', 'caption': 'a small white dog is standing up against a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343680.jpg', 'caption': 'A pug standing with his front paws on the edge of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343680.jpg', 'caption': 'A large brown pug down reaching up on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343680.jpg', 'caption': \"The dog stands on it's hind legs to look onto the table. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343680.jpg', 'caption': 'a chinese pug dog standing up on hind legs to peer over table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063040.jpg', 'caption': 'Many families are sitting down with their dogs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063040.jpg', 'caption': 'Some little children having a fun time petting and playing with some dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063040.jpg', 'caption': 'A room of children and adults petting dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063040.jpg', 'caption': 'The service dogs are visiting with the children as adults watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063040.jpg', 'caption': 'A group session of children reading books to their dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033645.jpg', 'caption': 'A little girl holding a red frisbee standing on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033645.jpg', 'caption': 'A little girl in the grass wearing sunglasses holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033645.jpg', 'caption': 'A young girl is holding a Frisbee in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033645.jpg', 'caption': 'Young girl in sunglasses standing in a lawn, holding a frisbee ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033645.jpg', 'caption': 'A girl in blue shit and shorts holding a frisbee in grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134194.jpg', 'caption': 'A herd of zebra standing next to two giraffe on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134194.jpg', 'caption': 'Six zebras, two giraffes and two other animals standing and sitting in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134194.jpg', 'caption': 'Zebras, giraffes and boars stand in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134194.jpg', 'caption': 'A family of zebras and a giraffe in a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134194.jpg', 'caption': 'a few zebras and two giraffes in a field together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309100.jpg', 'caption': 'Three zebras and other wild animals out in a semi-green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309100.jpg', 'caption': 'Three zebras and two other animals grazing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309100.jpg', 'caption': 'Wildlife standing near water area in natural setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309100.jpg', 'caption': 'Three zebras near the shore line of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309100.jpg', 'caption': 'A group of animals stand next to a watering hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554273.jpg', 'caption': 'A young man jumping over a group of other young people to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554273.jpg', 'caption': 'A man jumping over a group of people to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554273.jpg', 'caption': 'A man jumping over people to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554273.jpg', 'caption': 'A man reaching for a Frisbee while jumping over a group of people lying down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554273.jpg', 'caption': 'Man leaping over a group of people reaching for a white frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291696.jpg', 'caption': 'A man leaping over three people while catching a white frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291696.jpg', 'caption': 'A man leaping over people in the sand to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291696.jpg', 'caption': 'A man flies over three people on the ground as he catches a Frisbee on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291696.jpg', 'caption': 'One man holding a frisbee and jumping over three other men on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291696.jpg', 'caption': 'A man in a yellow shirt jumping over three people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353948.jpg', 'caption': 'There are two zebras grazing side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353948.jpg', 'caption': 'Two zebras walking and grazing on a dry, grassy plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353948.jpg', 'caption': 'A couple of zebra standing on a dry grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353948.jpg', 'caption': 'Two zebras on a plain of dry grasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353948.jpg', 'caption': 'Two zebra walk through a dry grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356406.jpg', 'caption': 'a group of people standing next to a building with a large dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356406.jpg', 'caption': 'A man walking a big dog in a mall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356406.jpg', 'caption': 'A group of people on a sidewalk with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356406.jpg', 'caption': 'A man holding the leash of a large dog in a plaza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356406.jpg', 'caption': 'A man standing in front of a store with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200234.jpg', 'caption': 'A child with a purple frisbee near large rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200234.jpg', 'caption': 'Person crouched down in front of rocks and picnic tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200234.jpg', 'caption': 'a boy in a park passing a frisbee between his legs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200234.jpg', 'caption': 'a person doing tricks with a frisbee near rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200234.jpg', 'caption': 'A person bends down with a Frisbee in an area with large rocks and picnic tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043625.jpg', 'caption': 'A man on the side of the road holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043625.jpg', 'caption': 'A man standing on a park holding a white frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043625.jpg', 'caption': 'A man with a ball of some sort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043625.jpg', 'caption': 'Man catching a frisbee while outside his home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043625.jpg', 'caption': 'A man leans forward to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427986.jpg', 'caption': 'A corgi dog running on a lawn to catch a Frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427986.jpg', 'caption': 'A dog looking up and running to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427986.jpg', 'caption': 'a dog running after a freesby in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427986.jpg', 'caption': 'A dog keeps his eye on a frisbee in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427986.jpg', 'caption': 'A dog getting ready to catch the Frisbee in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299089.jpg', 'caption': \"There's a field of brown grass with zebras in it\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299089.jpg', 'caption': 'A group of zebras relax and play together in a large field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299089.jpg', 'caption': 'A herd of zebras stand on a pathway near brown grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299089.jpg', 'caption': 'A herd of zebras standing together in the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299089.jpg', 'caption': 'A group of zebras are on some grass with trees and bushes behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108326.jpg', 'caption': 'A large painting of zebras and hogs standing next to deer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108326.jpg', 'caption': 'A painting of a various types of animals including zebra, in an outdoor setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108326.jpg', 'caption': 'A painting shows Zebras, Antelopes, and a wart hog standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108326.jpg', 'caption': 'A mural of zebras, antelopes and other animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108326.jpg', 'caption': 'A painted wall of wildlife draw on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206417.jpg', 'caption': 'A man sitting on the beach with a dog holding a yellow frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206417.jpg', 'caption': 'A man holding a Frisbee for his dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206417.jpg', 'caption': 'A man on the beach with his dog and a Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206417.jpg', 'caption': 'a man with his dog examine a frisbee at a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206417.jpg', 'caption': 'a man sitting by his dog holding a yellow frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519853.jpg', 'caption': 'three people wading in shallow waters with a frisbee flying by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519853.jpg', 'caption': 'Three men with hats on are wading in the dark water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519853.jpg', 'caption': 'A group of men in canoe throwing a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519853.jpg', 'caption': 'Three adults playing Frisbee in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519853.jpg', 'caption': 'Three guys walking in the water as a Frisbee heads toward them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515792.jpg', 'caption': 'A young man in a bathing suit about to catch a Frisbee at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515792.jpg', 'caption': 'A man is bent over to catch a frisbee on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515792.jpg', 'caption': 'A man standing on a beach tossing a white frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515792.jpg', 'caption': 'A person playing with a frisbee on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515792.jpg', 'caption': 'A man is catching a frisbee on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167696.jpg', 'caption': \"A black and white zebra looks like it's made of legos.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167696.jpg', 'caption': 'a sculpture of a zebra standing in a garden area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167696.jpg', 'caption': 'A zebra statue made out of legos in a flower garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167696.jpg', 'caption': 'a close up of a statue of a zebra in a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167696.jpg', 'caption': 'A zebra that is made out of building blocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504020.jpg', 'caption': 'a pack of zebra underneath a shaded tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504020.jpg', 'caption': 'Multiple zebras standing in the grass under a leafless tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504020.jpg', 'caption': 'a group of zebras standing beneath a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504020.jpg', 'caption': 'A group of zebras walking together in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504020.jpg', 'caption': 'A group of zebra in the shade of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421999.jpg', 'caption': 'A zebras rump is up close for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421999.jpg', 'caption': 'A zebra standing on the ground with little scattered grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421999.jpg', 'caption': 'a zebra is standing on dirt and grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421999.jpg', 'caption': 'A zebra is standing outside on the grass by itself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421999.jpg', 'caption': 'A zebra walking away from the camera in a dirt and grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259665.jpg', 'caption': 'Three people hold Frisbees while one of them throws his.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259665.jpg', 'caption': 'Several men are in a park and have different colored Frisbees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259665.jpg', 'caption': 'A group of guys playing Frisbee in a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259665.jpg', 'caption': 'A group of people playing frisbee in park next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259665.jpg', 'caption': 'A group of people playing frisbee at the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372161.jpg', 'caption': 'The two zebras are standing together outside by the dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372161.jpg', 'caption': 'A couple of zebra standing on top of a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372161.jpg', 'caption': 'There are two zebras standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372161.jpg', 'caption': 'a couple of zebras are standing out on a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372161.jpg', 'caption': 'Two zebras standing on a dirt path between grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377231.jpg', 'caption': 'A group of three zebras standing in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377231.jpg', 'caption': 'Three zebra stand close to a cluster of small rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377231.jpg', 'caption': 'A couple of zebras are standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377231.jpg', 'caption': 'A large group of zebra standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377231.jpg', 'caption': 'Three zebras standing on a grassy hill with other animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464737.jpg', 'caption': 'A pack of zebra standing in a field next to an ostrich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464737.jpg', 'caption': 'Two zebras and one ostrich standing in a green grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464737.jpg', 'caption': 'Two zebras in a field next to an ostrich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464737.jpg', 'caption': 'Two zebras and an ostridge in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464737.jpg', 'caption': 'Two zebras share a tender moment as an ostrich hides his head in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118911.jpg', 'caption': 'A zebra eating some grass in some open area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118911.jpg', 'caption': 'A zebra grazing on grass in a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118911.jpg', 'caption': 'A zebra grazing on some rich green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118911.jpg', 'caption': 'A zebra eats short grass inside its enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118911.jpg', 'caption': 'A zebra grazing on grass at an open zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077061.jpg', 'caption': 'two people riding horses on a sand road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077061.jpg', 'caption': 'Two men ride animals on the way to a desert town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077061.jpg', 'caption': 'A man riding a donkey down a hill on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077061.jpg', 'caption': 'Two men ride horses through a desert area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077061.jpg', 'caption': 'Two men ride horses on a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371106.jpg', 'caption': 'A zebra and an ostrich standing in a large grassland.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371106.jpg', 'caption': 'Ostrich and zebra grazing in open field together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371106.jpg', 'caption': 'A zebra standing next to an ostrich on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371106.jpg', 'caption': 'A zebra and an ostrich up close with other animals in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371106.jpg', 'caption': 'Ostrich, zebra, and other grazers in a wide-open rough field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436164.jpg', 'caption': 'A white horse pulling a cart down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436164.jpg', 'caption': 'A horse pulling a wagon carrying three men.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436164.jpg', 'caption': 'a group of people in a horse drawn carriage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436164.jpg', 'caption': 'a horse pulling three men in a cart down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436164.jpg', 'caption': 'a horse pulls a cart with some people sitting in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515403.jpg', 'caption': 'The horse is in the water with a man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515403.jpg', 'caption': 'A boy on a brown horse inside the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515403.jpg', 'caption': 'A boy and black horse in murky water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515403.jpg', 'caption': 'a horse partially submerged in water with a person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515403.jpg', 'caption': 'A boy and a horse are splashing in water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507719.jpg', 'caption': 'A man that is standing near a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507719.jpg', 'caption': 'some people and some black and white horses water and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507719.jpg', 'caption': 'Several people walking horses by reins through the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507719.jpg', 'caption': 'A black and white photo of a man leading horses in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507719.jpg', 'caption': 'Several people are leading horses by a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313557.jpg', 'caption': 'A zebra walking in a grassy plains are with another animal in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313557.jpg', 'caption': 'A zebra walks in a grassy fenced enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313557.jpg', 'caption': 'This is an image of a zebra walking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313557.jpg', 'caption': 'Two young zebras grazing through a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313557.jpg', 'caption': 'Large striped zebra walking down a patch of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534988.jpg', 'caption': 'Two zebras grazing in wooded fenced area and grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534988.jpg', 'caption': 'A zebra colt nurses as its mother grazes in an enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534988.jpg', 'caption': 'A baby zebra gets milk from the mother zebra as she grazes in the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534988.jpg', 'caption': 'momma zebra grazing while baby zebra is feeding from her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534988.jpg', 'caption': 'There are two zebras on the grass eating. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366830.jpg', 'caption': 'A large brown horse walking through a lush green forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366830.jpg', 'caption': 'A horse walking by a tree in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366830.jpg', 'caption': 'a horse running through the woods fast outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366830.jpg', 'caption': 'a horse out in the middle of the forest ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366830.jpg', 'caption': 'A horse wearing a bridle is walking through the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089356.jpg', 'caption': 'A white horse standing in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089356.jpg', 'caption': 'A white horse standing in a field on top of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089356.jpg', 'caption': 'A white horse on grassy area with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089356.jpg', 'caption': 'A white horse is standing on grass in the country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089356.jpg', 'caption': 'A white horse looking on as a picture is taken in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510877.jpg', 'caption': 'Two horses grazing in a field with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510877.jpg', 'caption': 'A white horse standing on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510877.jpg', 'caption': 'A white horse grazing in the grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510877.jpg', 'caption': 'A gray horse grazing in a field on a sunny day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510877.jpg', 'caption': 'A close up shot of a horse grazing in a small field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492407.jpg', 'caption': 'Two brown horses grazing in a field next to fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492407.jpg', 'caption': 'Two brown horses graze grass in a fenced area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492407.jpg', 'caption': 'One light brown and one dark brown horse eating grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492407.jpg', 'caption': 'A pair of horses leaned over eating grass in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492407.jpg', 'caption': 'The two horses are grazing in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199346.jpg', 'caption': 'A group of people walking next to stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199346.jpg', 'caption': 'A statue of a man on a horse with two people walking by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199346.jpg', 'caption': 'A couple people walking by a statue of a man on a horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199346.jpg', 'caption': 'A man and young girl walk past a monument of a man riding a horse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199346.jpg', 'caption': 'The man and the little girl are walking past the statue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262275.jpg', 'caption': 'A young girl in a bright dress rides a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262275.jpg', 'caption': 'A girl in a pink dress sitting on top of a horse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262275.jpg', 'caption': 'A little girl riding on a brown horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262275.jpg', 'caption': 'A little girl holds onto her saddle as she sits on a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262275.jpg', 'caption': 'A young girl wearing a helmet riding a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195862.jpg', 'caption': 'A man secures a saddle on a horse that a girl is sitting on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195862.jpg', 'caption': 'A little girl on top of horse next to a cowboy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195862.jpg', 'caption': 'A man standing next to a little girl riding a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195862.jpg', 'caption': 'a little girl sitting on a big horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195862.jpg', 'caption': \"A small girl in a helmet sits atop a horse while a man is checking fo make sure she's safe.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071209.jpg', 'caption': 'Two cowboys on horses chasing a steer in an arena', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071209.jpg', 'caption': 'a man is riding a horse in a pin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071209.jpg', 'caption': 'two people riding horses chasing a cow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071209.jpg', 'caption': 'A couple of men riding on the backs of horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071209.jpg', 'caption': 'Rodeo riders on horseback are chasing a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572861.jpg', 'caption': 'A brown horse pulling a carriage down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572861.jpg', 'caption': 'A sturdy looking horse is hooked up to a carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572861.jpg', 'caption': 'A large horse fitted to a fancy open top carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572861.jpg', 'caption': 'A horse pulling a carriage stands in the street next to a well.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572861.jpg', 'caption': 'A close up a horse standing with a carriage on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331242.jpg', 'caption': 'A brown and white horse standing on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331242.jpg', 'caption': 'A person is leading a horse with a saddle down a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331242.jpg', 'caption': 'A horse that is standing in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331242.jpg', 'caption': 'A man is walking a horse by a small crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331242.jpg', 'caption': 'This is a horse with a saddle walking on the sand of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574796.jpg', 'caption': 'a blue plate with an orange a cracker some lettuce and a twist bar', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574796.jpg', 'caption': 'An orange is placed on a plate with a cracker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574796.jpg', 'caption': 'A dish contains an orange and various snacks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574796.jpg', 'caption': 'A bowl filled with , fruit, crackers and greens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574796.jpg', 'caption': 'An orange, chocolate, cracker, and piece of lettuce on a plate\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187979.jpg', 'caption': 'A plate filled with little sandwiches covered in plastic wrap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187979.jpg', 'caption': 'A plate of sandwiches at a covered in plastic wrap', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187979.jpg', 'caption': 'The cut sandwiches are on the plate, covered by plastic wrap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187979.jpg', 'caption': 'A plate full of sandwiches that are wrapped in plastic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187979.jpg', 'caption': 'A plate of sandwiches covered with plastic wrap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463013.jpg', 'caption': 'A baseball player standing on top of a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463013.jpg', 'caption': 'a baseball player that is at home plate with a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463013.jpg', 'caption': 'A baseball game in progress with the batter in the middle of a swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463013.jpg', 'caption': 'A baseball player swinging his bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463013.jpg', 'caption': 'The batter takes a swing and misses the ball that was thrown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251752.jpg', 'caption': 'A man and a dog building a set from a box of legos.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251752.jpg', 'caption': 'The older man is putting together his lego set at the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251752.jpg', 'caption': 'Man sitting beside a bowl of fruit on a dinner table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251752.jpg', 'caption': 'a man that is siting at a table with a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251752.jpg', 'caption': 'A man and a Dachshund at a table with Indiana Jones Legos.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560598.jpg', 'caption': 'A lady frowning into the camera over dessert and wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560598.jpg', 'caption': 'A woman sitting at a table with an empty white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560598.jpg', 'caption': 'a woman in a gray shirt at a table with plates and cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560598.jpg', 'caption': 'A woman sits at a table with a glass of wine and a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560598.jpg', 'caption': 'A lady sitting at a kitchen table alone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044856.jpg', 'caption': 'A woman skiing down a snow covered slope next to two brown dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044856.jpg', 'caption': 'A woman with two dogs skiing cross country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044856.jpg', 'caption': 'Two yellow dogs are in the snow as a woman is cross country skiing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044856.jpg', 'caption': 'A woman is cross country skiing along with two dogs in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044856.jpg', 'caption': 'Two dogs are sitting in the snow with its owner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351287.jpg', 'caption': 'A yellow dog is walking on white snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351287.jpg', 'caption': 'A tan colored dog walking on top of the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351287.jpg', 'caption': 'Two dogs and their owner playing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351287.jpg', 'caption': 'Dogs walking in the snow in front of a woman. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351287.jpg', 'caption': 'a dog walks in the snow as a person and other dog look on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576886.jpg', 'caption': 'A group of people outside on snow skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576886.jpg', 'caption': 'Three friends are getting ready to ski on a warm, sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576886.jpg', 'caption': 'three people standing near one another wearing skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576886.jpg', 'caption': 'there are several people gathered here talking together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576886.jpg', 'caption': 'Three people in the heavy snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135579.jpg', 'caption': 'A white plate topped with mean, veggies and mashed potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135579.jpg', 'caption': 'a plate with some meat and potatoes on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135579.jpg', 'caption': 'Various meats and vegetables sit on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135579.jpg', 'caption': 'A plate with meat, potatoes, and vegetables on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135579.jpg', 'caption': 'A plate of steak, carrots, green beans, and mashed potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340843.jpg', 'caption': 'Two baseball players are trying to catch a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340843.jpg', 'caption': 'Two men playing a game of baseball on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340843.jpg', 'caption': 'Baseball players in the air with the ball coming towards them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340843.jpg', 'caption': \"Vintage black and white baseball picture of man sliding into third base as a thrown ball goes over the defender's glove.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340843.jpg', 'caption': 'Two ball players are leaping in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245313.jpg', 'caption': 'Snow skiers pose near a ski trail sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245313.jpg', 'caption': 'A group of people about to ski down a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245313.jpg', 'caption': 'A group of people standing on a snowy mountain with skis and poles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245313.jpg', 'caption': 'A couple of people on top of a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245313.jpg', 'caption': 'Skiers are stopped on the top of a mountain by a map.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209441.jpg', 'caption': 'a tub of apples and a box of bananas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209441.jpg', 'caption': 'Apples inside a blue container and a cardboard box of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209441.jpg', 'caption': 'A tub and cardboard crate full of apples and bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209441.jpg', 'caption': 'a blue bin of apples and a cardboard box of bananas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209441.jpg', 'caption': 'A basket of apples and a box of bananas next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000715.jpg', 'caption': 'A pile of oranges in crates topped with yellow bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000715.jpg', 'caption': 'There are bananas, pineapples, oranges, sandwiches, and drinks at the stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000715.jpg', 'caption': 'Pineapples, bananas and oranges are in crates near smoothies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000715.jpg', 'caption': 'A bunch of different fruits sitting in baskets and on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000715.jpg', 'caption': 'Smoothies in plastic cups lined up in a glass container and a black crate full of oranges, bananas and pineapple. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177246.jpg', 'caption': 'A close-up of a waffle shaped cone with a banana in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177246.jpg', 'caption': 'The golden waffle has a banana in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177246.jpg', 'caption': 'A banana sticking out of what looks like a waffle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177246.jpg', 'caption': 'A peeled banana wrapped up in a waffle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177246.jpg', 'caption': 'holding a waffle cone with a banana inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337563.jpg', 'caption': 'Two girls sitting on a bed eating bananas together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337563.jpg', 'caption': 'A woman and a child enjoy bananas together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337563.jpg', 'caption': 'A mother and daughter eating a banana together..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337563.jpg', 'caption': 'A woman and young child eating bananas together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337563.jpg', 'caption': 'A woman and a young girl sit on a bed eating bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351057.jpg', 'caption': 'A glass dish filled with a banana split.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351057.jpg', 'caption': 'A banana split with a fruit topping and whip cream', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351057.jpg', 'caption': 'A banana split with two cherries on whip cream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351057.jpg', 'caption': 'A banana split is displayed in a dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351057.jpg', 'caption': 'A banana split with chocolate, vanilla, and strawberry ice cream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348905.jpg', 'caption': 'A guy in a jet ski goes fast in a curve. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348905.jpg', 'caption': 'A person in the ocean using something to shoot water into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348905.jpg', 'caption': 'A person is riding on a jet ski in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348905.jpg', 'caption': 'A man riding a jet sky in the ocean spewing out water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348905.jpg', 'caption': 'A person on jet skis riding in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480780.jpg', 'caption': 'A large bunch of bananas sitting in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480780.jpg', 'caption': 'A giant green leaf is growing on a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480780.jpg', 'caption': 'Bunches of bananas on the tree speak of a location in a tropical climate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480780.jpg', 'caption': 'A close up of a large banana tree with two bunches of fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480780.jpg', 'caption': 'a banana tree sits in the sun an a nice day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469961.jpg', 'caption': \"A woman that is standing on ski's in the snow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469961.jpg', 'caption': 'a lady snow skiing on flat ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469961.jpg', 'caption': 'Two people on skis in snowy area surrounded by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469961.jpg', 'caption': 'A woman riding skis up the side of a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469961.jpg', 'caption': 'A person using skis and poles in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555197.jpg', 'caption': 'A person is going down the mountain on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555197.jpg', 'caption': 'A person walking on their skis in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555197.jpg', 'caption': 'A person wearing winter gears skis down a mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555197.jpg', 'caption': \"A man on ski's that is standing in the snow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555197.jpg', 'caption': 'A woman hiking across a mountain with skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499252.jpg', 'caption': 'A woman riding skis on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499252.jpg', 'caption': 'A woman poses for a picture while on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499252.jpg', 'caption': 'A woman that is standing in the snow wearing skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499252.jpg', 'caption': 'a woman standing on the snow with some skiis ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499252.jpg', 'caption': 'A woman on skis is standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427802.jpg', 'caption': 'A close up of dozens of of oranges stacked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427802.jpg', 'caption': 'There are a lot oranges in this pile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427802.jpg', 'caption': 'A host of oranges sitting on a fruit stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427802.jpg', 'caption': 'A bunch of ripe oranges are stacked neatly on top of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427802.jpg', 'caption': 'A pile of oranges stacked on top of each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008473.jpg', 'caption': 'Italian blood oranges for sale in a market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008473.jpg', 'caption': 'A pile of orange sitting on a market shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008473.jpg', 'caption': 'Oranges are stacked up next to yams and one orange is cut open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008473.jpg', 'caption': 'a fresh produce stand that have bins of oranges, sweet potatoes, and what looks like Idaho potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008473.jpg', 'caption': 'The oranges, grapefruit and other produce are displayed at the market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095476.jpg', 'caption': 'A couple of skiers racing on a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095476.jpg', 'caption': 'Two people cross country skiing in a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095476.jpg', 'caption': 'Two people race each other while cross country skiing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095476.jpg', 'caption': 'People skiing on an area that does not have a lot of snow but have pine trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095476.jpg', 'caption': 'Skiers glide down a snowy hill as they race each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338472.jpg', 'caption': 'A pile of oranges sitting inside of a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338472.jpg', 'caption': 'There are different citrus fruits in the bowl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338472.jpg', 'caption': 'A close up view of oranges and a couple of lemons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338472.jpg', 'caption': 'a close up of a bowl of fruits ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338472.jpg', 'caption': 'A close up of citrus fruit in a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287436.jpg', 'caption': 'People standing over a barrel with several fruit in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287436.jpg', 'caption': 'Three people going through a wheelbarrow full of green bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287436.jpg', 'caption': 'people looking at green bananas and apples in a wheel barrel ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287436.jpg', 'caption': 'A banana sitting on a table, with men around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287436.jpg', 'caption': 'People are collecting home grown fruit from a wheel barrel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356937.jpg', 'caption': 'A cross country skier traveling past many evergreen trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356937.jpg', 'caption': 'A man who is walking in the snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356937.jpg', 'caption': 'A cross country skier is skiing in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356937.jpg', 'caption': 'a person in blue is standing in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356937.jpg', 'caption': 'A man riding skis on top of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134413.jpg', 'caption': 'A tray of food on a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134413.jpg', 'caption': 'A meal tray containing pasta salad and fruit and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134413.jpg', 'caption': 'A tray of food with broccoli, tomatoes and pasta salad in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134413.jpg', 'caption': 'a close up of a plastic container of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134413.jpg', 'caption': 'a container tray with macaroni, greens, and fruits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355881.jpg', 'caption': 'a bowl of fruit, veggies, and sushi on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355881.jpg', 'caption': 'There is a bowl of salad containing fruits and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355881.jpg', 'caption': 'A bowl of vegetables and fruit such as oranges, cantaloupe and peaches sits on a brightly colored table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355881.jpg', 'caption': 'Bowl of food with a small paper bird in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355881.jpg', 'caption': 'Some fresh vegetables sit together in a bowl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493386.jpg', 'caption': 'A sliced chocolate desert covered in powered sugar', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493386.jpg', 'caption': 'A cake with a slice cut out of the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493386.jpg', 'caption': 'a plate containing a chocolate cream filled cake that has been sliced', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493386.jpg', 'caption': 'The huge chocolate cookie is being cut like a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493386.jpg', 'caption': 'A white plate holding a chocolate cake filled with frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418711.jpg', 'caption': 'A person looking at another person with bananas on a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418711.jpg', 'caption': 'A man pushing a bicycle which is loaded with bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418711.jpg', 'caption': 'Girl looking out car rear window at man pushing a bicycle covered in banana bunches. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418711.jpg', 'caption': 'A picture of man carrying bunches of bananas on a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418711.jpg', 'caption': 'a person with a bike with many bunches of bananas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355137.jpg', 'caption': 'Woman cross country skiing alone on a trail in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355137.jpg', 'caption': 'The cross country skier on the snow covered road all alone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355137.jpg', 'caption': 'Woman on cross country skis traveling on path in forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355137.jpg', 'caption': 'A woman that is on skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355137.jpg', 'caption': 'a person is skiing down a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425762.jpg', 'caption': 'A plate filled with sliced beef a bun and potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425762.jpg', 'caption': 'Pull pork sandwich and potatoes sit on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425762.jpg', 'caption': 'A very meaty sandwich with uniquely shaped fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425762.jpg', 'caption': 'A plate of potatoes with a pulled pork sandwich next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425762.jpg', 'caption': 'This is an image of a meal with meat, bread and potatoes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039659.jpg', 'caption': 'A breakfast of bagels, eggs, friend potatoes and fresh fruit along side glasses of juice and water, with a basket of jelly packets to the side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039659.jpg', 'caption': 'A plate with bagel, fruit and potatoes sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039659.jpg', 'caption': 'A cooked lunch with fruit sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039659.jpg', 'caption': 'A plate filled with food at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039659.jpg', 'caption': 'A pink plate topped with a bagel sandwich and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489029.jpg', 'caption': 'two little tray of food- one with fruit and chocolate, the other with veggies ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489029.jpg', 'caption': 'A couple of lunch containers have healthy food in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489029.jpg', 'caption': 'Two bowls of assorted fresh fruits, potato salad and fresh vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489029.jpg', 'caption': 'There is fruit in one bowl and vegetables in the other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489029.jpg', 'caption': 'Picture of two containers of food that have egg, vegetables and fruit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044559.jpg', 'caption': 'A person riding skis through a forest covered in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044559.jpg', 'caption': 'A woman is skiing on her thick covered snow bank', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044559.jpg', 'caption': 'Person cross country skiing in the ski tracks in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044559.jpg', 'caption': 'A woman cross-country skis through a path in the forest. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044559.jpg', 'caption': 'The skier is making her way along the path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140664.jpg', 'caption': 'A mixture of vegetables are cooking in a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140664.jpg', 'caption': 'A pan filled with vegetables with a spatula.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140664.jpg', 'caption': 'Brocolli and mushrooms cook with other vegetables in a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140664.jpg', 'caption': 'Stir-fried vegetables, including broccoli, mushrooms, and pea pods, sit in a skillet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140664.jpg', 'caption': 'A vegetarian stir fry being cooked with mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421908.jpg', 'caption': 'A person skiing down a hill with poles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421908.jpg', 'caption': 'A person on some skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421908.jpg', 'caption': 'A woman in blue jacket skiing on slope with trees in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421908.jpg', 'caption': 'A skier in blue heading down a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421908.jpg', 'caption': 'The person is skiing down the mountainside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180202.jpg', 'caption': 'A silver bowl of sliced carrots and chopped broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180202.jpg', 'caption': 'A metal bowl of food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180202.jpg', 'caption': 'The vegetables are cooking in the frying pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180202.jpg', 'caption': 'Steamed carrots and broccoli in a silver bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180202.jpg', 'caption': 'Green broccoli and sliced orange carrots in a pot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323925.jpg', 'caption': 'A lunch salad in a yellow bowl made out of fruit, vegetables, and meats with chopsticks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323925.jpg', 'caption': 'a small bowl filled with food such as veggies and rice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323925.jpg', 'caption': 'A bowl holding a variety of foods and a set of chopsticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323925.jpg', 'caption': 'The food is on the table and ready to eat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323925.jpg', 'caption': 'A plate full of vegetables sitting on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085029.jpg', 'caption': 'a group of people picking out bananas from carts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085029.jpg', 'caption': 'A yellow tent is covering people who are selling bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085029.jpg', 'caption': \"A couple of women buying banana's at a stand.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085029.jpg', 'caption': 'A banana bunch for sale and people looking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085029.jpg', 'caption': 'A group of women standing inside of a farmers market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401718.jpg', 'caption': 'An assortment of foods arranged on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401718.jpg', 'caption': 'A plate topped with cakes and desserts on top of a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401718.jpg', 'caption': 'a blue and white plate of food some is wrapped in plastic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401718.jpg', 'caption': 'Various baked goods are piled onto a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401718.jpg', 'caption': 'this plate has many different types of food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361763.jpg', 'caption': 'Two baseball players work out on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361763.jpg', 'caption': 'Interesting antics by two men during a baseball game ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000543566.jpg', 'caption': 'A black and white cat sleeping on a white blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346112.jpg', 'caption': 'A close up shot of a cat laying down. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346112.jpg', 'caption': 'A cat is laying down on a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346112.jpg', 'caption': 'Closeup of a green-eyed tuxedo cat lying on a white cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346112.jpg', 'caption': 'a black and white cat lying down with his eyes open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346112.jpg', 'caption': 'a black gray and white cat lying down ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216548.jpg', 'caption': 'A gray cat sleeping on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216548.jpg', 'caption': 'A gray and white cat is snuggled and sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216548.jpg', 'caption': 'a close up of a cat laying down ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216548.jpg', 'caption': 'A curled up cat naps in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216548.jpg', 'caption': 'The cat sleeps peacefully on a comfy pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393547.jpg', 'caption': 'Cat sitting on wood framed mirror looking down at own reflection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393547.jpg', 'caption': 'A gold and white cat looking at their reflection in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393547.jpg', 'caption': 'A cat sitting down and looking at itself in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393547.jpg', 'caption': 'A curious cat staring at himself in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393547.jpg', 'caption': \"The cats looks at it's reflection while sitting on a mirror. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031176.jpg', 'caption': 'a black and gray spotted cat is sitting on a windows sill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031176.jpg', 'caption': 'A cat on the window looking outside next to the balcony', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031176.jpg', 'caption': 'Tiger kitten sitting by French window looking out over sunny balcony. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031176.jpg', 'caption': 'A kitten sitting in a window sill near a wooden deck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031176.jpg', 'caption': 'A kitten in bathing in the sun while looking out at the deck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288776.jpg', 'caption': 'a cat on a window sill with a bag ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288776.jpg', 'caption': 'A cat is up in a blue windowsill playing with a package that is sitting there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288776.jpg', 'caption': 'a cat sitting by a window of a bright blue wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288776.jpg', 'caption': 'A white and black kitten sitting in a blue and red window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288776.jpg', 'caption': 'A black and white cat outside of a red and blue window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122953.jpg', 'caption': 'A cat lying under a laptop and beside another computer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122953.jpg', 'caption': 'there is a computer and a lap top on a desk and a cat sitting behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122953.jpg', 'caption': 'a desk with a laptop a monitor and a mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122953.jpg', 'caption': 'A cat that is sitting by two computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122953.jpg', 'caption': 'a gray black and white cat a monitor and a laptop and keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375509.jpg', 'caption': 'A laptop computer sitting on top of a desk near a monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375509.jpg', 'caption': 'a gray black and orange cat a keyboard and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375509.jpg', 'caption': 'The cat is walking on the desk in front of the computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375509.jpg', 'caption': 'The cat is on the desk by the two computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375509.jpg', 'caption': 'A cat walking on a desk with computer equipment on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230262.jpg', 'caption': 'A brown cow standing on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230262.jpg', 'caption': 'A cow eating grass inches from a paved road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230262.jpg', 'caption': 'A cow is stretching its neck along a roadway grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230262.jpg', 'caption': 'A cow eating grass on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230262.jpg', 'caption': 'A brown and white heifer grazes by the roadside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451972.jpg', 'caption': 'A red fire truck with a bunch of Christmas decorations on back of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451972.jpg', 'caption': 'Fire truck full of Christmas decorations in a night time holiday parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451972.jpg', 'caption': 'A fire truck decorated in a Christmas display featuring santa and children on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451972.jpg', 'caption': 'there is a fire truck with christmas decorations on the top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451972.jpg', 'caption': 'A fire engine truck on the road with kids and teddy bears', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264594.jpg', 'caption': 'Two young ladies petting a young calf on a farm', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264594.jpg', 'caption': 'Two adorable little girls playing with a baby cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264594.jpg', 'caption': 'Two little girls gather around a small goat and pet it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264594.jpg', 'caption': 'Two little girls curious about a small cow, in a barnyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264594.jpg', 'caption': 'Two girls standing next to a black and white animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523292.jpg', 'caption': 'A multi colored cat standing over a white laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523292.jpg', 'caption': 'A cat standing on a desk looking at a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523292.jpg', 'caption': 'A cat standing near an open laptop on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523292.jpg', 'caption': 'A cat looking at a computer monitor on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523292.jpg', 'caption': 'Cat standing on papers looking at a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573877.jpg', 'caption': 'An orange tabby cat that appears to be reading a computer screen or watching the mouse..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573877.jpg', 'caption': 'A cat looking at a computer screen with a lamp behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573877.jpg', 'caption': 'a cat looking at a computer monitor with a light on behind the monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573877.jpg', 'caption': 'A cat is in front of a computer looking at the screen as if browsing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573877.jpg', 'caption': \"A disapproving orange cat looking at an open laptop's screen.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130527.jpg', 'caption': 'a group of cows grazing in a green grass wire fenced pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130527.jpg', 'caption': 'a herd of cattle grazing a big field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130527.jpg', 'caption': 'A landscape featuring rolling hills and grazing cattle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130527.jpg', 'caption': 'A vast mass of land with an unidentifiable group of animals grazing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130527.jpg', 'caption': 'A grassy field with a bunch of cows around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012443.jpg', 'caption': 'A white cat sitting on top of a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012443.jpg', 'caption': 'A white cat is sitting on a laptop keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012443.jpg', 'caption': 'a white cat is sitting on a laptops keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012443.jpg', 'caption': 'A white cat is sitting on top of a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012443.jpg', 'caption': 'The cat is sitting on the laptop keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308263.jpg', 'caption': \"One light brown cow with hay in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308263.jpg', 'caption': 'A cow that is standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308263.jpg', 'caption': 'Cow tethered with chain eating hay in outdoor field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308263.jpg', 'caption': 'A brown cow standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308263.jpg', 'caption': 'A cow tied to a rope is eating hay', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100000.jpg', 'caption': 'A cat sitting next to a wii controller, upside down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100000.jpg', 'caption': 'A cat laying on its back next to a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100000.jpg', 'caption': \"The cat looks like he's played more than enough Nintendo Wii for now.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100000.jpg', 'caption': 'a cat lying on its back with a remote nearby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100000.jpg', 'caption': 'A cat leans his head on a Wii remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444755.jpg', 'caption': 'Pug wearing tie as bearded man stares at camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444755.jpg', 'caption': 'A man that is sitting with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444755.jpg', 'caption': 'a man holding a pug dog with green eyes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444755.jpg', 'caption': 'The man is sitting in a chair holding a dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444755.jpg', 'caption': 'A man holding a bulldog wearing a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442286.jpg', 'caption': 'a small boat in a large body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442286.jpg', 'caption': 'A boat on water basin anchored at the shore', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442286.jpg', 'caption': 'a single little boat sitting beside a fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442286.jpg', 'caption': 'A fishing troller boat docked next to a lighthouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442286.jpg', 'caption': 'A yellow and black boat on water next to dock and lighthouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199050.jpg', 'caption': 'A black and white picture of a group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199050.jpg', 'caption': 'A black and white photograph of people at a party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199050.jpg', 'caption': 'a big group of people posing for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199050.jpg', 'caption': \"A group photo from the 1960's of teenagers in suits and dresses.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199050.jpg', 'caption': 'A group of people are gathered for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369511.jpg', 'caption': \"An old picture back in the 60's or 70's of a group of men and woman.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369511.jpg', 'caption': 'A black and white picture of a group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369511.jpg', 'caption': 'In an historical photo, young men and women socialize.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369511.jpg', 'caption': 'a group of people crowded into a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369511.jpg', 'caption': 'A group of people in suits and dresses stand in a room with wallpaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546424.jpg', 'caption': 'a black and white photo of a person in a suit and a person in a dress', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546424.jpg', 'caption': 'The bride and groom stand in the isle between the pews. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546424.jpg', 'caption': 'A man and woman standing in a church during a wedding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546424.jpg', 'caption': 'A couple walking down the aisle at their wedding ceremony', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546424.jpg', 'caption': 'a man and woman are getting married ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336793.jpg', 'caption': 'a couple standing next to each other in wedding outfits ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336793.jpg', 'caption': 'a man in a tie and his bride', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336793.jpg', 'caption': 'A picture of a couple who got married.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336793.jpg', 'caption': 'A man in a suit and a woman in a wedding dress', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336793.jpg', 'caption': 'A man and a woman on their wedding day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201220.jpg', 'caption': 'A man and woman in wedding attire smile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201220.jpg', 'caption': 'A bride and groom smiling inside of a vehicle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201220.jpg', 'caption': 'A couple of people sitting inside of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201220.jpg', 'caption': 'A man and women in wedding garb in a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201220.jpg', 'caption': 'A bride and a groom are cuddled in a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050117.jpg', 'caption': 'A brown and white cow in a green pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050117.jpg', 'caption': 'Longhorn steer in a grazing field with others.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050117.jpg', 'caption': 'A cow with horns in the middle of a grassy area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050117.jpg', 'caption': 'Three cows grazing in a field of green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050117.jpg', 'caption': 'The cows are grazing on the grass in the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468541.jpg', 'caption': 'A brown and white dog wearing a neck tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468541.jpg', 'caption': 'A brown and white dog wearing a tie on carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468541.jpg', 'caption': 'A dog wearing a tie poses for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468541.jpg', 'caption': 'A dog is sitting with a neck tie on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468541.jpg', 'caption': 'a close up of a dog wearing a tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504700.jpg', 'caption': 'A man in a suit stands in front of a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504700.jpg', 'caption': 'A man standing in front of a bus on a country road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504700.jpg', 'caption': 'The man is standing in front of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504700.jpg', 'caption': 'A man in a suit poses in front of a bus in a rural setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504700.jpg', 'caption': 'A man standing in front of a tour bus in a rural area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038662.jpg', 'caption': 'The bow of a ship on land with another on the edge of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038662.jpg', 'caption': 'The bottom of a rustic boat overlooks a brightly painted one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038662.jpg', 'caption': 'The wooden bow of a ship with an out of focus boat in the back ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038662.jpg', 'caption': 'Two boats on shore near an ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038662.jpg', 'caption': 'A close up of a front of a boat with another in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371854.jpg', 'caption': 'A man and woman cutting a cake together ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371854.jpg', 'caption': 'A man and woman cutting a cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371854.jpg', 'caption': 'A man and woman cutting their wedding cake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371854.jpg', 'caption': 'A young couple cut a cake together at a wedding reception in a dim room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371854.jpg', 'caption': 'A young newly married couple cut their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000459.jpg', 'caption': 'A man holding a camera up over his left shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000459.jpg', 'caption': 'A man with a blazer holding a camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000459.jpg', 'caption': 'A man in a suit snaps a mirror selfie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000459.jpg', 'caption': 'a man in a suit taking a picture of himself with a large camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000459.jpg', 'caption': 'A man wearing a suit is taking a self portrait with a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029886.jpg', 'caption': 'Two people sitting at a table having a conversation. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029886.jpg', 'caption': 'A man and a woman sitting at a table having dinner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029886.jpg', 'caption': 'A man sitting next to a woman at a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029886.jpg', 'caption': 'A man and woman sitting at a table talking', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029886.jpg', 'caption': 'Bald man wearing suit and corsage talking to woman in red dress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514525.jpg', 'caption': 'fruit and vegetables in a container with separate sections', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514525.jpg', 'caption': 'A container with three sections, each containing different fruits and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514525.jpg', 'caption': 'a close up of a plastic container with food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514525.jpg', 'caption': 'A plastic container with compartment filled with food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514525.jpg', 'caption': 'Box full of food with lots of vegetables and fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334511.jpg', 'caption': 'A group of people sitting around a wooden bench with vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334511.jpg', 'caption': 'Several people sitting on boats near baskets of fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334511.jpg', 'caption': 'A group of people on two wooden boats with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334511.jpg', 'caption': 'a group of people on a boat with lots of fruit and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334511.jpg', 'caption': 'there are many people on this small boat with fruits', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031599.jpg', 'caption': 'Some small boats are tied up by a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031599.jpg', 'caption': 'A black and white photo of small boats floating in a bay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031599.jpg', 'caption': 'a number of small boats in a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031599.jpg', 'caption': 'Several rowboats are tethered to a high stone wall of a reservoir.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031599.jpg', 'caption': 'a lot of little boats tied to something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090476.jpg', 'caption': 'Several beached boats on the sand with orange balls hanging over the sides.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090476.jpg', 'caption': 'A large number of boats that have been beached.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090476.jpg', 'caption': 'The ships are all docked on the beach by the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090476.jpg', 'caption': 'A group of boats on top of wet sand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090476.jpg', 'caption': 'A group of boats in the sandy area of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137451.jpg', 'caption': 'A group of people walking on a rain soaked parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137451.jpg', 'caption': 'a black and white picture of people walking in a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137451.jpg', 'caption': 'People walk near a street in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137451.jpg', 'caption': 'People cross the street on a rainy day in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137451.jpg', 'caption': 'People are waiting to cross a street on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022667.jpg', 'caption': 'A light house on an island surrounded by sail boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022667.jpg', 'caption': 'A sail boat travels close to a light house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022667.jpg', 'caption': 'Sailboat with red, white and blue sail crossing past a lighthouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022667.jpg', 'caption': 'Light house on litmus taken from a distance, with sail boat near by. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022667.jpg', 'caption': 'Lighthouse on a point with sailboats near it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464857.jpg', 'caption': 'The man is sticking his tongue out at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464857.jpg', 'caption': 'A man in a suit and tie standing next to a woman sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464857.jpg', 'caption': 'A man making a funny face with people surrounding him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464857.jpg', 'caption': 'a man standing in a room with his hands sticking out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464857.jpg', 'caption': 'A man sticks his tongue out to have his picture taken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039472.jpg', 'caption': 'Painting of a ship in grass with lighthouse in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039472.jpg', 'caption': 'a painting of a colorful boat lying in the grass near some trees with a lighthouse in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039472.jpg', 'caption': 'An artist has drawn a depiction of a river on a log.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039472.jpg', 'caption': 'A boat and lighthouse are in a wavy, stylized painting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039472.jpg', 'caption': 'A lighthouse is behind the old abandoned boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365928.jpg', 'caption': 'People are sitting at the beach surrounded by tiki umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365928.jpg', 'caption': 'many umbrellas on a beach near a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365928.jpg', 'caption': 'A lot of people that are at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365928.jpg', 'caption': 'Many tikis and umbrellas with chairs set up on the sandy shore of a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365928.jpg', 'caption': 'Many tropical shade coverings on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090778.jpg', 'caption': 'Old man in a dress white shirt and black bow tie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090778.jpg', 'caption': 'A man wearing a bow tie holding a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090778.jpg', 'caption': 'An elderly man with a white shirt and black bow tie stands near an open door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090778.jpg', 'caption': 'an old man with a white shirt and a black bow tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090778.jpg', 'caption': 'A man wearing a white shirt and a black bow tie standing in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268854.jpg', 'caption': 'a couple of boats that are floating in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268854.jpg', 'caption': 'People unloading a boat that is beached on the sand with other boats behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268854.jpg', 'caption': 'A woman with a basket on her head walking on a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268854.jpg', 'caption': 'a number of small boats in a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268854.jpg', 'caption': 'There are many people and boats on a beach and in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354978.jpg', 'caption': 'A man and a woman standing next to each other in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354978.jpg', 'caption': 'A chinese couple celebrating their wedding with their guests.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354978.jpg', 'caption': 'A large group of people toasting at a celebration', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354978.jpg', 'caption': 'A man and woman raise their glass for a toast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354978.jpg', 'caption': 'A young couple in formal evening attire toasts the crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230780.jpg', 'caption': 'A man has some tape and a paper bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230780.jpg', 'caption': 'an elderly man is selling wine at a store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230780.jpg', 'caption': 'A man carefully wrapping a customers purchase in a wine shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230780.jpg', 'caption': 'A man in a shop that sells bottled liquid tapes up a paper bag ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230780.jpg', 'caption': 'A man working in a liquor store pulls tape out to wrap a box. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004665.jpg', 'caption': 'A just married couple in the back of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004665.jpg', 'caption': 'Recently married bride and groom in backseat of car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004665.jpg', 'caption': 'A young couple in a car on their wedding day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004665.jpg', 'caption': 'Married couple sitting in their wedding clothing in the back of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004665.jpg', 'caption': 'A woman wearing a wedding gown holding flowers is in a car with a man in a suit and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390975.jpg', 'caption': \"A children's playground slide made to look like an elephant\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390975.jpg', 'caption': 'This unique slide is made to look like an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390975.jpg', 'caption': 'A slide designed to look like an elephants trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390975.jpg', 'caption': 'The slide is in the shape of an elephant with a long trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390975.jpg', 'caption': 'The imaginative elephant has a really long trunk slide.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109750.jpg', 'caption': 'A small metal motor boat on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109750.jpg', 'caption': 'An empty rusted motorboat on a calm lake beside some mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109750.jpg', 'caption': 'A metal boat with an outboard motor at the edge of a mountain lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109750.jpg', 'caption': 'A motor boat floating on a lake near mountains with no passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109750.jpg', 'caption': 'A rusted metal boat with a large engine sitting on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386739.jpg', 'caption': 'A man sitting next to a woman while wearing a suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386739.jpg', 'caption': 'Two people are posing for a photograph together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386739.jpg', 'caption': 'A black and white photo of a couple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386739.jpg', 'caption': 'A black and white photo of a man and woman', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386739.jpg', 'caption': 'A man and a woman are posing for a photograph. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055668.jpg', 'caption': 'A woman posing with her husband and two children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055668.jpg', 'caption': 'A black and white picture of a family with one girl looking off to the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055668.jpg', 'caption': 'a family in a white and black portrait', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055668.jpg', 'caption': 'a vintage picture of a family portrait ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055668.jpg', 'caption': 'A family of four dressed in sweaters and tweeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054747.jpg', 'caption': 'An old photo of a bride and groom in front of a stone building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054747.jpg', 'caption': 'A newly married couple standing in front of a door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054747.jpg', 'caption': 'An old picture shows a bride and groom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054747.jpg', 'caption': 'Antique black and white photograph of a couple on their wedding day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054747.jpg', 'caption': 'Old photograph of newly wedded couple standing next to archway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036598.jpg', 'caption': 'A group of four women walking down a street in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036598.jpg', 'caption': 'several people hold umbrellas in a rain storm', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036598.jpg', 'caption': 'Two couples are walking down a wet sidewalk under umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036598.jpg', 'caption': 'Several people huddle under a couple of matching umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036598.jpg', 'caption': 'Two couples walking down the side walk in the rain, holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037003.jpg', 'caption': 'An older gentleman in a white shirt and black bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037003.jpg', 'caption': 'A man dressed in formal wear is smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037003.jpg', 'caption': 'An older man with a white shirt and bow tie is smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037003.jpg', 'caption': 'A man smiling wearing a white shirt and bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037003.jpg', 'caption': 'An elderly man wearing a white button down shirt and a black bow tie smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173274.jpg', 'caption': 'A man wearing glasses, dress shirt and a tie is smiling in content.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173274.jpg', 'caption': 'A modern businessman smiles wearing glasses, business attire and a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173274.jpg', 'caption': 'A man wearing a white shirt, plaid tie, a grey hat and glasses smiling with his eyes closed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173274.jpg', 'caption': 'A smiling man wearing a shirt, tie, hat, and glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173274.jpg', 'caption': 'A man is dressed in a long collar shirt with tie and hat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483375.jpg', 'caption': ' a large body of water with boats floating within it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483375.jpg', 'caption': 'A handful of boats in the water in front of a town', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483375.jpg', 'caption': 'Several boats in the water facing a castle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483375.jpg', 'caption': 'Boats in a harbor with large stone buildings in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483375.jpg', 'caption': 'A harbor filled with lots of small boats next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083257.jpg', 'caption': 'A man standing next to a robot with a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083257.jpg', 'caption': 'A mean stands next to two figures of Star Wars characters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083257.jpg', 'caption': 'A man standing beside a robot with a camera around his kneck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083257.jpg', 'caption': 'a man with a camera around his neck and two characters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083257.jpg', 'caption': 'Three men at a costume party in a dark club.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437049.jpg', 'caption': 'The people are at tables on an outdoor patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437049.jpg', 'caption': 'An outdoor patio in front of a large brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437049.jpg', 'caption': 'a patio full of people in front of a reddish building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437049.jpg', 'caption': 'An outside cafe setting with tables, chairs, umbrellas, and trees for shading. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437049.jpg', 'caption': 'A table and chairs with a umbrella near some people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139007.jpg', 'caption': 'A bunch of elephants playing together in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139007.jpg', 'caption': 'four elephants in the brush next to tress', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139007.jpg', 'caption': 'There is an elephant that is lying in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139007.jpg', 'caption': 'Several elephants are caressing one another with their trunks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139007.jpg', 'caption': 'A large elephant walks behind two smaller elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448849.jpg', 'caption': 'A boat filled with people floating down a canal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448849.jpg', 'caption': 'A boat full of tourists traveling down a man made channel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448849.jpg', 'caption': 'A group of people sit in a boat in the middle of a wide river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448849.jpg', 'caption': 'Several people on a boat traveling down a canal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448849.jpg', 'caption': 'A boat crowded with people moving down a canal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114673.jpg', 'caption': 'There are Christmas decorations strung up over the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114673.jpg', 'caption': 'A street filled with traffic and lined with umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114673.jpg', 'caption': 'THERE IS A DECROCATION OF DIFFERENT LIGTHS IN THE CITY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114673.jpg', 'caption': 'A street is lined with lit cubes and umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114673.jpg', 'caption': 'A city street at night under electrical decorations and a threatening sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043535.jpg', 'caption': 'A man kissing a baby elephant on a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043535.jpg', 'caption': 'a person standing really close to an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043535.jpg', 'caption': 'A man in a bucket hat touching the trunk of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043535.jpg', 'caption': 'a person standing right next to an elephant whiile giving them a kiss ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043535.jpg', 'caption': 'A man petting the head of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369122.jpg', 'caption': 'A group of people sitting around out doors sharing a meal together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369122.jpg', 'caption': 'PICNIC GATHERING AT THE PARK, IN THE RAIN,SOME HOLDING UMBRELLAS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369122.jpg', 'caption': 'An area with blankets and food containers laid out with people holding umbrellas sitting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369122.jpg', 'caption': 'A person taking a photo of a couple under an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369122.jpg', 'caption': 'People in the park having a picnic with opened umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177262.jpg', 'caption': 'A cat sitting on a bathroom counter behind a hair dryer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177262.jpg', 'caption': 'A cat getting his fur blow dried after getting a bath.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177262.jpg', 'caption': 'The cat is seen twice because of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177262.jpg', 'caption': 'A cat snooping in a bag on a bathroom counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177262.jpg', 'caption': 'A cat laying in front of a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489719.jpg', 'caption': 'Two elephants playing by the water hole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489719.jpg', 'caption': 'An adult elephant in the water next to a baby elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489719.jpg', 'caption': 'the big elephant is playing with the little elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489719.jpg', 'caption': 'An adult elephant attending to a child elephant near some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489719.jpg', 'caption': 'An adult elephant and a baby elephant by a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198178.jpg', 'caption': 'A large elephant standing next to a small elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198178.jpg', 'caption': 'An adult and baby elephant walking beside each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198178.jpg', 'caption': 'Adult elephant with young walking in grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198178.jpg', 'caption': 'And elephant walks with its baby elephant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198178.jpg', 'caption': 'A big and a small elephant out in the sun ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488360.jpg', 'caption': 'an elephant and a rhino dirt water trees and bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488360.jpg', 'caption': 'A rhinoceros and an elephant are standing on separate sides if the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488360.jpg', 'caption': 'A rhino standing next to a river on a sandy shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488360.jpg', 'caption': 'An elephant is standing in a shallow river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488360.jpg', 'caption': 'A narrow body of water that is bordered with low-lying vegetation and dirt has an elephant standing in it, while a rhino rests just at the edge of the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052066.jpg', 'caption': 'A man wearing a backpack waits for a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052066.jpg', 'caption': 'A man is standing next to the train at the station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052066.jpg', 'caption': 'A man stands on a platform with a train pulling up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052066.jpg', 'caption': 'A man with a backpack is waiting for the train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052066.jpg', 'caption': 'A man is standing by a trolley station as one approaches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386962.jpg', 'caption': 'Yellow shoes sitting next to a suitcase with red lining. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386962.jpg', 'caption': 'A pair of yellow shoes sitting next to a piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386962.jpg', 'caption': 'A pair of yellow high heeled shoes beside a black and red suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386962.jpg', 'caption': 'A pair of yellow high heels sits in front of an open suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386962.jpg', 'caption': 'A pair of bright yellow shoes are by a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017708.jpg', 'caption': 'Three boats travel around a calm, clear harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017708.jpg', 'caption': 'Boats traveling across a crystal clean lagoon wit white birds..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017708.jpg', 'caption': 'this is an image of a pelican sitting on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017708.jpg', 'caption': 'A gull on a rocky ledge overlooks three boats on a very blue waterway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017708.jpg', 'caption': 'The sea gull is standing on the shore line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325184.jpg', 'caption': 'two elephants in a pen being observed by people ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325184.jpg', 'caption': 'Two elephants standing in the grass near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325184.jpg', 'caption': 'Two elephants are being observed by people in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325184.jpg', 'caption': 'Two elephants standing on a green field with rocks and fence separating the people in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325184.jpg', 'caption': 'a couple of elephants are in a pin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267643.jpg', 'caption': 'Two people sitting in a room with luggage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267643.jpg', 'caption': 'Two women sitting in chairs in hotel lobby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267643.jpg', 'caption': 'Two people sitting in chairs with luggage between them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267643.jpg', 'caption': 'Two women in winter coats and hats sit in chairs near suitcases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267643.jpg', 'caption': 'A couple of people sitting in chairs next to a Christmas tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218716.jpg', 'caption': 'Two gray elephants basking in the sunlight and grazing around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218716.jpg', 'caption': 'Two small elephants together in front of green leaf bushes and a rock wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218716.jpg', 'caption': 'There are two elephants standing side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218716.jpg', 'caption': 'There are two elephants standing together on the dirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218716.jpg', 'caption': 'Two elephants snuggling together on a muddy bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440110.jpg', 'caption': 'A woman walking down a street pulling a piece of luggage behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440110.jpg', 'caption': 'The woman walks with a rolling backpack though the alleyway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440110.jpg', 'caption': 'Black and white photograph of pedestrians in an alley', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440110.jpg', 'caption': 'a woman walking down the road while pulling a backpack behind her ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440110.jpg', 'caption': 'A woman with a Pullman bag walks along a cobbled street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027371.jpg', 'caption': 'A woman dragging a suitcase on wheels down a cobble stone sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027371.jpg', 'caption': 'A woman with a suitcase on the pavement', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027371.jpg', 'caption': 'A woman in a stripped dressing is pulling luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027371.jpg', 'caption': 'A woman is walking on a sidewalk, pulling a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027371.jpg', 'caption': 'a woman walking down the sidewalk with a blue umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181267.jpg', 'caption': 'A bag of luggage filled with lots of different balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181267.jpg', 'caption': 'brown and blue suitcase full of tennis balls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181267.jpg', 'caption': 'a variety of balls in a suitcase resting on the ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181267.jpg', 'caption': 'A suitcase that is open with balls inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181267.jpg', 'caption': 'A suitcase full of different types of balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091343.jpg', 'caption': 'A dog standing in a kitchen with a toy. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091343.jpg', 'caption': 'A small dog looking on past a stuffed animal bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091343.jpg', 'caption': 'A dog who is next to his stuffed toy seems very concerned by whatever is in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091343.jpg', 'caption': 'a bull dog standing beside a teddy bear looking all sad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091343.jpg', 'caption': 'An adorable pug dog standing next to a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056865.jpg', 'caption': 'Oddly dressed people standing by each other posing towards camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056865.jpg', 'caption': 'An emo hipster with large breast, holding open her leather jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056865.jpg', 'caption': 'Two people dressing black stand in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056865.jpg', 'caption': 'Two people dressed in black, one with a green mask.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056865.jpg', 'caption': 'a man in a mask is holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520996.jpg', 'caption': 'The elephant stands in the dirt and extends its snout over the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520996.jpg', 'caption': 'A large grey elephant standing in a field next to a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520996.jpg', 'caption': 'An elephant tied up in a city park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520996.jpg', 'caption': 'An elephant reaching its trunk over the fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520996.jpg', 'caption': 'An elephant at the zoo reaches across the fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534308.jpg', 'caption': 'Three elephants walking in their designated area in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534308.jpg', 'caption': 'some elephants in their pen and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534308.jpg', 'caption': 'a number of elephants on a dirt ground near trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534308.jpg', 'caption': 'three elephants next to each other on a dirt surface next to a stone ledge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534308.jpg', 'caption': 'Three elephants walking in sand in their enclosure at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383397.jpg', 'caption': 'A woman is sitting on a cinder block next to a trailer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383397.jpg', 'caption': 'A woman in white shirt and shorts sitting behind a mobile home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383397.jpg', 'caption': 'an old photo of a person sitting outside of a trailer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383397.jpg', 'caption': 'a woman sitting on a suitcase at the end of a motor home ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383397.jpg', 'caption': 'A woman is sitting on a suitcase by a trailer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391300.jpg', 'caption': 'The tailgate of a car open and two suitcases inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391300.jpg', 'caption': 'A couple of pieces of brown luggage sitting in a backseat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391300.jpg', 'caption': 'Two suitcases in the back of a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391300.jpg', 'caption': 'A car trunk with two pieces of luggage in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391300.jpg', 'caption': 'A green car with vintage luggage in the back of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519461.jpg', 'caption': 'a couple of elephants are standing in a pin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519461.jpg', 'caption': 'Adult elephant with young standing near fence in large enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519461.jpg', 'caption': 'An adult elephant and a baby elephant are standing next to each other, looking through a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519461.jpg', 'caption': 'The baby elephant stays close to her mother within the enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519461.jpg', 'caption': 'A large elephant standing next to a baby elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579911.jpg', 'caption': 'Two pug dogs and a sandal show on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579911.jpg', 'caption': 'Two dogs on couch playing with shoe in artificial light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579911.jpg', 'caption': 'Two pugs lay on the couch with a shoe, one is looking at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579911.jpg', 'caption': 'two small dogs with a shoe on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579911.jpg', 'caption': 'A small pug sitting on top of a couch next to a black dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256260.jpg', 'caption': 'There is a person petting a very large elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256260.jpg', 'caption': 'A person touching an elephant in front of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256260.jpg', 'caption': 'A man in white shirt petting the cheek of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256260.jpg', 'caption': 'A tall elephant standing next to a man next to other elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256260.jpg', 'caption': \"A zoo keeper tending to an elephant's mouth\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219798.jpg', 'caption': 'A small white dog on a leash wears a colorful bandana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219798.jpg', 'caption': 'A small dog wearing a bandana on a metal leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219798.jpg', 'caption': 'A little white dog on a chain is wearing a colorful outfit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219798.jpg', 'caption': 'a small dog wearing a colorful scarf going for a walk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219798.jpg', 'caption': 'A dog is walking while wearing brightly colored clothing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552942.jpg', 'caption': 'A white Cairn terrier pants in the sun whilst dressed in a neon yellow outfit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552942.jpg', 'caption': 'a little white dog wearing a bright yellow vest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552942.jpg', 'caption': 'A West Highland White Terrier dressed in a neon yellow vest pants in the sunshine. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552942.jpg', 'caption': 'There is no image here to provide a caption for.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552942.jpg', 'caption': 'A dog sanding on top of a pavement while wearing a safety jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520437.jpg', 'caption': 'THERE IS A DUMM IN THE SUIT CASE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520437.jpg', 'caption': 'a rubber dummy stuffed in an open suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520437.jpg', 'caption': 'REAL TO LIFE DUMMY STUFFED INTO A SUITCASE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520437.jpg', 'caption': 'A dummy that has been folded and put in a suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520437.jpg', 'caption': 'There is a doll folded up inside of the suitcase .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088784.jpg', 'caption': 'Two dogs are playing on the beach catching a Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088784.jpg', 'caption': 'Of two dogs, only one may be the victor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088784.jpg', 'caption': 'A dog catching a frisbee by another dog on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088784.jpg', 'caption': 'Dog jumping up in the air to catch a Frisbee in the summer time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088784.jpg', 'caption': 'A dog jumping up into the air to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048731.jpg', 'caption': 'two dogs sharing a frisby in their mouth in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048731.jpg', 'caption': 'two dogs on the snow playing frisbee together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048731.jpg', 'caption': 'A couple of dogs fighting over a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048731.jpg', 'caption': 'Two dogs fighting over a Frisbee in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048731.jpg', 'caption': 'there are two dogs trying to get the frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477111.jpg', 'caption': \"A brown dog holding a yellow frisbee in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477111.jpg', 'caption': 'Two dogs playing with a yellow frisbee in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477111.jpg', 'caption': 'Two dogs in mid air playing with a toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477111.jpg', 'caption': 'There is no image here to provide a caption for.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477111.jpg', 'caption': 'Two dogs playing with a frisbee in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556817.jpg', 'caption': 'A dog carrying a ball in his mouth on the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556817.jpg', 'caption': 'A black dog carrying a red frisbee in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556817.jpg', 'caption': 'A black dog walking with a frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556817.jpg', 'caption': 'A big black dog carrying a frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556817.jpg', 'caption': 'there is a black dog on the beach with a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097967.jpg', 'caption': 'A crowd of people standing in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097967.jpg', 'caption': 'People in a building near a wooden platform. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097967.jpg', 'caption': 'a group of people standing near a small pool', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097967.jpg', 'caption': 'A group of people standing around a large indoor pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097967.jpg', 'caption': 'Indoor court of wood as a pen for people to view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027617.jpg', 'caption': 'A panting dog sitting down in the shade with a Frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027617.jpg', 'caption': 'A brown dog laying in the grass with a yellow frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027617.jpg', 'caption': 'A red dog laying in a shady spot with his frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027617.jpg', 'caption': 'a dog lays on some grass with a frisbe in its paws ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027617.jpg', 'caption': 'A dog relaxes on the green grass as he holds a yellow frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495808.jpg', 'caption': 'a person has a bag on wheels in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495808.jpg', 'caption': 'A person pulling a piece of wheeled luggage by its handle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495808.jpg', 'caption': 'A person holding a rolling suit case in an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495808.jpg', 'caption': 'A person that is standing next to a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495808.jpg', 'caption': 'A person pulling a bag on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320350.jpg', 'caption': 'THERE ARE PEOPLE THAT ARE ON THE SKIS WITH HIS DOG', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320350.jpg', 'caption': 'Two people who are posed beside dogs while snow skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320350.jpg', 'caption': 'A couple on their skis at a ski slope with their two dogs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320350.jpg', 'caption': 'A couple and their two dogs are having a ski day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320350.jpg', 'caption': 'Some people are holding their dogs and posing for a picture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276693.jpg', 'caption': 'A large brown dog walking in front of a woman holding two ski poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276693.jpg', 'caption': 'A woman skiing with a dog running through the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276693.jpg', 'caption': 'Dog running through the snow in front of a skier. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276693.jpg', 'caption': 'A woman cross country skiing with her dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276693.jpg', 'caption': 'Golden dog walking in snow with a person cross country skiing in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307341.jpg', 'caption': 'a person riding skis on a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307341.jpg', 'caption': 'A person is out in the snow with two dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307341.jpg', 'caption': 'Person on a hill with snow and pines tree and two yellow labs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307341.jpg', 'caption': 'A person in the snow with two dogs on leashes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307341.jpg', 'caption': 'A woman in on a snowy hill with two dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066336.jpg', 'caption': 'A woman holding a pink umbrella over her left shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066336.jpg', 'caption': 'A woman is holding an open red umbrella over her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066336.jpg', 'caption': 'A girl is standing outside on a rainy day with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066336.jpg', 'caption': 'A girl has a pink umbrella while looking out into the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066336.jpg', 'caption': 'A little girl with a pink umbrella over her head and shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234349.jpg', 'caption': 'A couple of women standing underneath umbrellas next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234349.jpg', 'caption': 'Two women who are standing underneath white umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234349.jpg', 'caption': 'two people using clear umbrellas that have fringe on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234349.jpg', 'caption': 'Two woman standing around holding umbrellas with white lace on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234349.jpg', 'caption': 'some people sanding under some clear umbrellas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178175.jpg', 'caption': 'LOTS OF BACKPACKS AND HATS LINED UP ALONG A WALKWAY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178175.jpg', 'caption': 'A group of back packs on a bridge walkway over a stream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178175.jpg', 'caption': 'Luggage and backpacks sitting on a wooden walkway to a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178175.jpg', 'caption': 'Suitcases, duffle bags, and backpacks are sitting along a wooden walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178175.jpg', 'caption': 'Backpacks line a boardwalk to a beach surrounded by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087141.jpg', 'caption': 'A white teddy bear sitting in a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087141.jpg', 'caption': 'A stuffed teddy bear has been placed in a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087141.jpg', 'caption': 'The white teddy bear sits atop a leather upholstered chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087141.jpg', 'caption': 'A NICE STUFF BEAR WITH A TAG ON IT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087141.jpg', 'caption': 'a little white teddy bear sitting in a chair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213421.jpg', 'caption': 'A woman sits holding an umbrella near the group of women.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213421.jpg', 'caption': 'A woman holding a umbrella in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213421.jpg', 'caption': 'A woman standing in a group under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213421.jpg', 'caption': 'a shot from behind a woman holding a pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213421.jpg', 'caption': 'Two ladies sitting under a pink umbrella near other people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243569.jpg', 'caption': 'A girl sits in bed looking at her laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243569.jpg', 'caption': 'a woman sits on a bed while using a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243569.jpg', 'caption': 'The girl is on her laptop in her bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243569.jpg', 'caption': 'A person that is sitting on a bed and looking at a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243569.jpg', 'caption': 'A girl using a computer sits on her bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101567.jpg', 'caption': 'A dog resting his head on the edge of the pool next to an apple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101567.jpg', 'caption': \"A large brown dog resting it's head on the side of a blue swimming pool.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101567.jpg', 'caption': \"A dog has it's face on a small blue pool.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101567.jpg', 'caption': 'Dog with muzzle laying on lip of backyard, above ground pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101567.jpg', 'caption': \"A dog with it's eyes closed, resting it's head on the side of a pool of water.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238691.jpg', 'caption': 'A person laying on top of a luggage carousel.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000367433.jpg', 'caption': 'A small bird sits on a branch in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367433.jpg', 'caption': 'A small bird perched on top of a wooden branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174423.jpg', 'caption': 'A bird sits perched on the edge of an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174423.jpg', 'caption': 'Bird sitting on the edge of a sun umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174423.jpg', 'caption': 'A bird that is standing on an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174423.jpg', 'caption': 'a close up of a small bird on an open umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174423.jpg', 'caption': 'A close-up of a bird on the edge of a roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142941.jpg', 'caption': 'A bird reaches into a cup to take a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142941.jpg', 'caption': 'A yellow bird head down in a small plastic cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142941.jpg', 'caption': 'A dead tagged bird being weighed in a cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142941.jpg', 'caption': 'A bird with a tag head first in a plastic container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142941.jpg', 'caption': 'A bird with his head stuck upside down in a top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398580.jpg', 'caption': 'A very tall giraffe walks through the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398580.jpg', 'caption': 'a giraffe is walking outside among bushes and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398580.jpg', 'caption': 'A giraffe standing in a wooded area under clear skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398580.jpg', 'caption': 'A giraffe standing in the wild dry grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398580.jpg', 'caption': 'There is a giraffe standing among the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044003.jpg', 'caption': 'A street sign that has been modified so the name is changed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044003.jpg', 'caption': 'a couple of signs are on a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044003.jpg', 'caption': 'The 300 block of a street sign with several handwritten letters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044003.jpg', 'caption': 'Street signs are sitting on top of the pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044003.jpg', 'caption': 'THIS IS A PICTURE OF A STREET SIGN WITH A BIRD IN FLIGHT IN THE BACK GROUND', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472557.jpg', 'caption': 'Two giraffe standing next to each other near brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472557.jpg', 'caption': 'The two giraffes look over the fence at the same time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472557.jpg', 'caption': 'Three giraffes looking over a large wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472557.jpg', 'caption': 'Two giraffes are standing behind a wood fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472557.jpg', 'caption': 'A pair of giraffe standing and a third giraffe peeping. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514600.jpg', 'caption': 'A bird sitting on top of an orange slice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514600.jpg', 'caption': 'A bird sitting on an orange feeding on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514600.jpg', 'caption': 'A bird sits on top of an orange with bird seed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514600.jpg', 'caption': 'Bird in tree standing on half an orange with seeds. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514600.jpg', 'caption': 'a bird that is eating out of a piece of fruit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187514.jpg', 'caption': 'A passenger train car that has been tagged with graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187514.jpg', 'caption': 'a train with a bunch of graffiti on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187514.jpg', 'caption': 'Metropolitan commuter train painted with graffiti on side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187514.jpg', 'caption': 'There is colorful graffiti on the glass wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187514.jpg', 'caption': 'A subway train is covered with colorful graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198416.jpg', 'caption': 'A woman petting a cat, and other picture with a be prepared to stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198416.jpg', 'caption': 'Two images: A woman and a cat at a window and a highway with a construction sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198416.jpg', 'caption': 'The two images show a woman sitting beside a cat and a highway electronic warning sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198416.jpg', 'caption': 'Two pictures: One of them is a woman petting a cat the other is a road sign saying be prepare to stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198416.jpg', 'caption': 'A woman petting a cat and a sign along the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214698.jpg', 'caption': \"A red stop sign leaning over on it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214698.jpg', 'caption': 'The stop signs on the intersection are both slanted at an angle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214698.jpg', 'caption': 'a stop sign leaning side ways in the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214698.jpg', 'caption': 'Stop signs on a corner are all tilted towards the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214698.jpg', 'caption': 'Two stop signs lean to the left at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199339.jpg', 'caption': 'A street sign with the name of two streets and a stop sign, and parked cars and buildings in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199339.jpg', 'caption': 'The stop sign has two street names posted above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199339.jpg', 'caption': 'There is a stop sign at the intersection of A Street and First Street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199339.jpg', 'caption': 'This stop sign is at the intersection of First St. and A St.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199339.jpg', 'caption': 'A stop sign sits below two signs that read \"A First\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576822.jpg', 'caption': 'Two giraffes in an enclosure with their necks and heads touching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576822.jpg', 'caption': 'two giraffes are standing neck to neck in their pen at the zoo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576822.jpg', 'caption': 'Two giraffes with heads extended up eating from a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576822.jpg', 'caption': 'A pair of giraffes is stretching up to a limb in perfect harmony.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576822.jpg', 'caption': 'If you have some animals that are eating something up a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123836.jpg', 'caption': 'a giraffe checking out the bark on a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123836.jpg', 'caption': 'A giraffe in an enclosure reaching for food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123836.jpg', 'caption': 'A giraffe and zebra inside of a zoo enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123836.jpg', 'caption': \"A giraffe with it's mouth set on a pole.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123836.jpg', 'caption': 'A giraffe and a zebra eating together in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318596.jpg', 'caption': 'A sign on Dunmore Court warns pet owners to keep their dogs off the median.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318596.jpg', 'caption': 'A street sign that says dunmore ct and another sign that says keep dogs off median.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318596.jpg', 'caption': 'there are two street signs on the same pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318596.jpg', 'caption': 'A \" KEEP DOGS OFF MEDIAN\" sign posted under the Dunmore CT street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318596.jpg', 'caption': 'A street sign and sign warning to keep dogs off the median.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049115.jpg', 'caption': 'A giraffe standing next to a pile of stones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049115.jpg', 'caption': 'A giraffe trying to eat leaves from a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049115.jpg', 'caption': 'A giraffe raising its head up eating from a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049115.jpg', 'caption': 'A giraffe standing and reaching its head up a tree and eating leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049115.jpg', 'caption': 'A giraffe stretching his neck to reach some tree leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317441.jpg', 'caption': 'A street sign above an orange detour sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317441.jpg', 'caption': 'A wooden post with a detour sign posted on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317441.jpg', 'caption': 'A street corner has a stoplight and detour sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317441.jpg', 'caption': 'This shows two street signs that say ninth street and detour', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317441.jpg', 'caption': 'A bright orange sign showing the way to a detour.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101280.jpg', 'caption': 'A water bird stands on the shore as the tide comes in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101280.jpg', 'caption': 'A bird walking toward the water at the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101280.jpg', 'caption': 'A bird standing on top of a wet beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101280.jpg', 'caption': 'A pelican standing on the beach in front of the waves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101280.jpg', 'caption': 'a little bird standing on the shore as the waves come in ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001448.jpg', 'caption': 'A giraffe bending over while standing on green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001448.jpg', 'caption': 'A baby giraffe bending over to graze on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001448.jpg', 'caption': 'A single young giraffe eats from a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001448.jpg', 'caption': 'The giraffe is leaning down to eat the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001448.jpg', 'caption': 'A giraffe bends down to graze on some grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234990.jpg', 'caption': 'Two giraffe standing next to each other on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234990.jpg', 'caption': 'several giraffe in a field with trees and rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234990.jpg', 'caption': 'Giraffes in a grassy area surrounded by rocks and branches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234990.jpg', 'caption': 'Giraffes look to see if there is anything interesting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234990.jpg', 'caption': 'Three giraffes are outdoors near some dead trees and water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536615.jpg', 'caption': 'Two giraffes stand and eat food out of a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536615.jpg', 'caption': 'two giraffes looking for food in an empty feeding basket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536615.jpg', 'caption': 'a couple of giraffes reach for a basket ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536615.jpg', 'caption': 'Two giraffes that are eating from a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536615.jpg', 'caption': 'Two giraffes eating from a basket on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208003.jpg', 'caption': 'Two giraffe standing next to each other in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208003.jpg', 'caption': 'Three giraffes are walking around in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208003.jpg', 'caption': 'There are giraffes at a zoo being observed by people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208003.jpg', 'caption': 'Giraffes in pen at zoo behind stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208003.jpg', 'caption': 'A person observing three giraffes over a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190160.jpg', 'caption': 'Three with colored birds standing on a wet surface, each bird standing on one leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190160.jpg', 'caption': 'Three cranes standing on one leg in the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190160.jpg', 'caption': 'There are three birds each standing on one leg on wet ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190160.jpg', 'caption': 'a group of birds walk on some mud next to some water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190160.jpg', 'caption': 'Three birds standing on some damp ground outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578703.jpg', 'caption': 'Three geese eating out of a parking lot grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578703.jpg', 'caption': 'Ducks are walking through the grass near a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578703.jpg', 'caption': 'some birds grass on a patch of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578703.jpg', 'caption': 'three geese walk along a median in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578703.jpg', 'caption': 'Four ducks are in a grassy island of a parking lot with their heads down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326995.jpg', 'caption': 'A couple of ducks standing on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326995.jpg', 'caption': 'Two birds are eating grass on an island near a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326995.jpg', 'caption': 'A car parked in a parking bay and a bird on a roadside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326995.jpg', 'caption': 'A couple of geese are out to pasture .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326995.jpg', 'caption': 'a couple of birds that are eating something out of the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385535.jpg', 'caption': 'A hard to miss street sign set between two traffic lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385535.jpg', 'caption': 'The sign is giving the directions while the traffic light is about to turn red', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385535.jpg', 'caption': 'A sign at a traffic light that says \"US-1 Whitehead St.\" ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385535.jpg', 'caption': 'A highway sign displayed on a traffic post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385535.jpg', 'caption': 'A street sign and two traffic lights hang over US Route 1.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034089.jpg', 'caption': 'A tree has a no parking sign taped to its trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034089.jpg', 'caption': 'A tree in front of a brick building with a no parking sign attached to the tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034089.jpg', 'caption': 'A tree located in front of a building with signs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034089.jpg', 'caption': 'A no parking sign is duct taped to a tree outside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034089.jpg', 'caption': 'A sign that indicates no parking is taped to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419106.jpg', 'caption': 'a couple of signs are hanging on a white pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419106.jpg', 'caption': 'Intersection street sign next to a tall tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419106.jpg', 'caption': 'Two street signs on a metal pole near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419106.jpg', 'caption': 'A street sign stands next to a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419106.jpg', 'caption': 'A street corner next to a large tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480205.jpg', 'caption': 'A bird looks out across a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480205.jpg', 'caption': 'A bird stands on a dry spot where it is surround by water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480205.jpg', 'caption': 'A beautiful bird stands on the bank of a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480205.jpg', 'caption': 'A blue sand piper standing at the edge of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480205.jpg', 'caption': 'A large bird standing on top of a beach next to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043133.jpg', 'caption': 'A picture of several people in a sail boat in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043133.jpg', 'caption': 'Two men relax in a small boat on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043133.jpg', 'caption': 'a small boat with two people in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043133.jpg', 'caption': 'One man is on the tip of a small boar hanging off to the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043133.jpg', 'caption': 'Two people riding in a row boat on calm water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311746.jpg', 'caption': 'A field filled with purple flowers and green plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311746.jpg', 'caption': 'I almost did not see the bird that is camouflaged in this photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311746.jpg', 'caption': 'A small hummingbird that is flying near some flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311746.jpg', 'caption': 'A humming bird is gathering food from a flower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311746.jpg', 'caption': 'A grouping of pink flowers with green leaves during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293452.jpg', 'caption': 'Three birds are looking around while on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293452.jpg', 'caption': 'These three birds are walking along the beach looking for food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293452.jpg', 'caption': 'Sea birds walking on wet sand at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293452.jpg', 'caption': 'Three small birds standing on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293452.jpg', 'caption': 'Three birds stand around on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150987.jpg', 'caption': 'A large predatory bird sits on a tree branch in an exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150987.jpg', 'caption': 'Large black bird standing on the branch of a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150987.jpg', 'caption': 'A brown falcon perches on the branch of a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150987.jpg', 'caption': 'A bird sitting on the branch of a tree looking away.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150987.jpg', 'caption': 'A large black bird perched on a large tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338203.jpg', 'caption': 'The parrot is perched on a tree limb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338203.jpg', 'caption': 'A large hawk is perched on a tree limb and an outdoor enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338203.jpg', 'caption': 'An exotic bird stares while standing in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338203.jpg', 'caption': 'A large black and red bird perched on a branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338203.jpg', 'caption': 'A beautiful hawk sitting in a tree within a bird enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440529.jpg', 'caption': 'A man wearing a glove with a bird on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440529.jpg', 'caption': 'a man holds on to a big bird ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440529.jpg', 'caption': 'Man holding up a large bird in front of people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440529.jpg', 'caption': 'a man with a hawk sitting on his arm', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440529.jpg', 'caption': 'A man wears a glove holding a bird. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188546.jpg', 'caption': 'a close up of a dog with a hat ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188546.jpg', 'caption': 'A dog that is laying down with a party hat on its head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188546.jpg', 'caption': 'This dog is wearing a Happy Birthday hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188546.jpg', 'caption': 'A shaggy dog wearing a happy birthday hat and laying on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188546.jpg', 'caption': 'A dog with a birthday hat on his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356544.jpg', 'caption': 'A dog with a hat strapped to its head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356544.jpg', 'caption': 'a dog stand next to a person with a hat on ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356544.jpg', 'caption': 'A brown dog earing a yellow hat while sitting on a persons lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356544.jpg', 'caption': 'A dog wearing a bonet on her head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356544.jpg', 'caption': 'A very cute dog wearing some type of silly hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503585.jpg', 'caption': 'A man with a brown bag and blue jacket stands by a train that is moving.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503585.jpg', 'caption': 'A man in blue jacket standing by a passing train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503585.jpg', 'caption': 'Man standing on platform as train speeds by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503585.jpg', 'caption': 'a man standing near a train with luggage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503585.jpg', 'caption': 'a woman waiting on the platform for a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265003.jpg', 'caption': 'A dog wearing a hat and sitting in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265003.jpg', 'caption': 'A sweet dog is wearing a white hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265003.jpg', 'caption': 'A small yellow dog wearing a white hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265003.jpg', 'caption': 'A dog is sitting in the grass, wearing a hat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265003.jpg', 'caption': 'A dog with a white hat at the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017198.jpg', 'caption': 'A parked silver subway train next to a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017198.jpg', 'caption': 'A train is next to a covered waiting area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017198.jpg', 'caption': 'A silver train is sitting by a train platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017198.jpg', 'caption': 'A silver train car at a station platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017198.jpg', 'caption': 'We are looking over the fence at the train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107244.jpg', 'caption': 'a street sign on a road near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107244.jpg', 'caption': 'The car is driving down a slight curve on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107244.jpg', 'caption': 'A street with various signage and buildings around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107244.jpg', 'caption': 'A car that is sitting on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107244.jpg', 'caption': 'A street with a car coming down hill by an older brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111590.jpg', 'caption': 'A bird flying over a field with lots of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111590.jpg', 'caption': 'a bird flying by above some grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111590.jpg', 'caption': 'A gray bird flying through a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111590.jpg', 'caption': 'The bird is an owl flying low above the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111590.jpg', 'caption': 'The flying white bird has black wing tips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437206.jpg', 'caption': 'A bird is standing in what seems to be an apple tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437206.jpg', 'caption': 'a bird sitting on a branch in a tree near a fruit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437206.jpg', 'caption': 'there is bird standing in a tree on top of a fruit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437206.jpg', 'caption': 'A bird with a red top on its head next to an orange in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437206.jpg', 'caption': 'A bird sitting in a tree next to a citrus fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284594.jpg', 'caption': 'Several birds with black and yellow feathers sitting on some branches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284594.jpg', 'caption': 'A few birds sitting on a tree with no leaves and the sky in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284594.jpg', 'caption': 'A group of four birds sitting on the tree branches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284594.jpg', 'caption': 'Four birds are perched in leafless tree branches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284594.jpg', 'caption': 'Four birds sitting in tree branches with no leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141517.jpg', 'caption': 'THERE ARE ANIMALS THAT ARE GRASSING IN THE FIELD ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141517.jpg', 'caption': 'A group of sheep in a fenced in area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141517.jpg', 'caption': 'very many woolly sheep in a field which is dry', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141517.jpg', 'caption': 'A big herd of animals grazing in a big field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141517.jpg', 'caption': 'Several animals walking and grazing on a farm. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140636.jpg', 'caption': 'A couple of birds standing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140636.jpg', 'caption': 'A bird eating a fish in the water next to another bird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140636.jpg', 'caption': 'A bird standing next to another bird with a fish in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140636.jpg', 'caption': 'A long-legged shorebird walking next to a seagull that is swallowing a fish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140636.jpg', 'caption': 'Two birds standing on an floating on a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071281.jpg', 'caption': 'some black and white sheep a fence dirt and grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071281.jpg', 'caption': 'Sheep that have been sheared standing in a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071281.jpg', 'caption': 'Several grey sheep on a dry grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071281.jpg', 'caption': 'a goat in a fied hangs out with other goats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071281.jpg', 'caption': 'The animals look very skinny and unhealthy as they walk around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430254.jpg', 'caption': 'A heard of sheep together in a wheat field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430254.jpg', 'caption': 'a herd of goats in a secluded field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430254.jpg', 'caption': 'A herd of sheep blending in wiht the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430254.jpg', 'caption': 'Herd of sheep standing in field of tall grasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430254.jpg', 'caption': 'A group of lambs that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214009.jpg', 'caption': 'A lot of birds flying around on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214009.jpg', 'caption': 'Some birds fly over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214009.jpg', 'caption': 'Birds flying in a flock over a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214009.jpg', 'caption': 'Lots of seagulls flying and cranes standing on the lakeside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214009.jpg', 'caption': 'Flocks of seagulls are at the seashore with flamingos standing in the shallow water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245481.jpg', 'caption': 'A railroad crossing sign is near some buildings and cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245481.jpg', 'caption': 'Rail road sign on a pole in the city in front of some vehicles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245481.jpg', 'caption': 'A railroad sign is prominently shown in front of parked cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245481.jpg', 'caption': 'A yellow railroad crossing sign in a black and white city sidewalk scene.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245481.jpg', 'caption': 'there is a rail road crossing at the corner of this street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475238.jpg', 'caption': 'A train crossing a street near train crossing lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475238.jpg', 'caption': 'A train on the tracks at a railroad crossing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475238.jpg', 'caption': 'A train is driving on the train tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475238.jpg', 'caption': 'A black and white photo of a railroad train driving down the track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475238.jpg', 'caption': 'Black and white train stopped at a crossing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350262.jpg', 'caption': 'A few llamas in a fence with fog over them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350262.jpg', 'caption': 'some animals are standing out in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350262.jpg', 'caption': 'A herd of animals grazing on top of a dry grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350262.jpg', 'caption': 'Cows standing in a fenced field on a misty day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350262.jpg', 'caption': 'A field of sheep with trees in background and a ground fog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378334.jpg', 'caption': 'An old black and white photo of two men in suits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378334.jpg', 'caption': 'Two men are pictured wearing suits in this historical photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378334.jpg', 'caption': 'A black and white photo of two young gentlemen next to each other .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378334.jpg', 'caption': 'A man standing leaning on a man sitting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378334.jpg', 'caption': 'An old black and white photo of two men next to eachother.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064146.jpg', 'caption': 'A scary man wears a hat made out of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064146.jpg', 'caption': 'A man with a white-painted face and a bananas on his head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064146.jpg', 'caption': 'A man wearing a bushel of bananas on his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064146.jpg', 'caption': 'A man with his face painted white has bunches of bananas on his head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064146.jpg', 'caption': 'A man watches another man that has numerous bananas on his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001590.jpg', 'caption': 'A load of trash or work supplies in a dumpster outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001590.jpg', 'caption': 'A utility truck on a street next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001590.jpg', 'caption': 'An overhead view show the contents of a trash dumpster.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001590.jpg', 'caption': 'A cow stands in the back of a large truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001590.jpg', 'caption': 'A cow sits in a truck with hay barrels in it .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516602.jpg', 'caption': 'A small calf is in a pen with bails of hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516602.jpg', 'caption': 'A truck with an animal, hay, and other containers in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516602.jpg', 'caption': 'An old metal box with rolls of twine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516602.jpg', 'caption': 'A cow in the back of a large truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516602.jpg', 'caption': 'A truck with some random things in the back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451772.jpg', 'caption': 'A yellow bird sitting on top of a tree on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451772.jpg', 'caption': 'a bird resting on a small leafy branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451772.jpg', 'caption': 'A green bird perched on top of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451772.jpg', 'caption': 'A very cute small bird perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451772.jpg', 'caption': 'A small bird perched on some thin branches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112739.jpg', 'caption': 'a car is headed down a street in an asain country', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112739.jpg', 'caption': 'A woman driving a white car in a Chinese street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112739.jpg', 'caption': 'A black and white photo where there are chinese characters on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112739.jpg', 'caption': 'A white compact car traveling down a small road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112739.jpg', 'caption': 'Street signs featuring a type of Asian script.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082021.jpg', 'caption': 'A toucan perches behind a the bars of a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082021.jpg', 'caption': 'a big bird with a huge beak looks out of its cage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082021.jpg', 'caption': 'A black and yellow bird with a huge colorful beak in a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082021.jpg', 'caption': 'A large colorful bird standing behind a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082021.jpg', 'caption': 'A toucan with a brightly colored beak in a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563195.jpg', 'caption': 'Short rain as view from above either from over view mountain or air craft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563195.jpg', 'caption': 'A railroad train sitting on a side track in the mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563195.jpg', 'caption': 'a train is driving through the green lusty country side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563195.jpg', 'caption': 'An aerial view of a train as it glides across the tracks next to a grassy green mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563195.jpg', 'caption': 'A train on tracks beneath a green hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495088.jpg', 'caption': 'A bird is flying over some rocky water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495088.jpg', 'caption': 'A bird flies over an island area of a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495088.jpg', 'caption': 'A bird flies over the water near an island.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495088.jpg', 'caption': 'Seagull flying over a water way with an island in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495088.jpg', 'caption': 'A seagull flies over a grassy and rocky beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173984.jpg', 'caption': 'A bird that is sitting on top of a bird feeder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173984.jpg', 'caption': 'A bird sitting on top of a metal hook that has a bird feeder on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173984.jpg', 'caption': 'a yellow black and white bird and a bird feeder ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173984.jpg', 'caption': 'A yellow and black bird looking down at a feeder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173984.jpg', 'caption': 'A small yellow bird sits atop a hanging water supply.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410446.jpg', 'caption': 'A group of people on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410446.jpg', 'caption': 'a bunch of people walking around in a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410446.jpg', 'caption': 'A crowd of people walk down Beale Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410446.jpg', 'caption': 'A city street with barricades at the end of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410446.jpg', 'caption': 'A blocked-off urban city block with pedestrians walking down sidewalks on either side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494731.jpg', 'caption': 'Black birds on a wood fence near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494731.jpg', 'caption': 'Birds perched on the posts of a wooden fence near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494731.jpg', 'caption': 'A couple of small birds sitting on a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494731.jpg', 'caption': 'Two birds are sitting on the wooden posts of a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494731.jpg', 'caption': 'two small birds on a wooden hand rail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330316.jpg', 'caption': 'The train on some railroad tracks next to a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330316.jpg', 'caption': 'A train tracks are shown in the sunlight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330316.jpg', 'caption': 'Looking down at the train sitting on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330316.jpg', 'caption': 'A bunch of grates running along side the trackz.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330316.jpg', 'caption': 'close up of a train track with a red train sitting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547839.jpg', 'caption': 'a photo of a train heading down the tracks ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547839.jpg', 'caption': 'A train is going to travel up hill on a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547839.jpg', 'caption': 'Cars are driving through a tunnel on a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547839.jpg', 'caption': 'A train traveling down tracks next to a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547839.jpg', 'caption': 'A car that is sitting in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210607.jpg', 'caption': 'A boat that is sitting in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210607.jpg', 'caption': 'A large piece of equipment on a railroad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210607.jpg', 'caption': 'A silver caboose of a train on a train track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210607.jpg', 'caption': 'A large machine with observation decks parked in a lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210607.jpg', 'caption': 'The industrial boat looks somewhat like a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495626.jpg', 'caption': 'An otherwise charming old section of town is nonetheless assaulted by a massive billboard attached to the side of a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495626.jpg', 'caption': 'A view down a street in the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495626.jpg', 'caption': 'A tall sign advertising a movie on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495626.jpg', 'caption': 'a tall building with a big billboard on the side of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495626.jpg', 'caption': 'People crossing a metro city street with a large advertisement in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441211.jpg', 'caption': 'A train traveling down train tracks past some houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441211.jpg', 'caption': 'A red train is coming down the tracks in a rural setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441211.jpg', 'caption': 'A red and black train going on the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441211.jpg', 'caption': 'A train coming down the tracks near some houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441211.jpg', 'caption': 'A train rounds the corner as it comes down the railroad tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550452.jpg', 'caption': 'red and yellow train on a train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550452.jpg', 'caption': 'Red train on its tracks in a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550452.jpg', 'caption': 'An old red train engine pulling cars behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550452.jpg', 'caption': 'A red train is coming down the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550452.jpg', 'caption': 'a red train engine going down a track next to some trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391560.jpg', 'caption': 'Dull red train, 54, between grass and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391560.jpg', 'caption': 'a red train engine and its driver ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391560.jpg', 'caption': 'A train moves slowly on some empty tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391560.jpg', 'caption': 'A red training riding by some trees and grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391560.jpg', 'caption': 'a red train on a train track sitting next to a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465566.jpg', 'caption': 'A red train leaving a train station with man watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465566.jpg', 'caption': 'a train sits parked as a man takes a picture ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465566.jpg', 'caption': 'A man standing along the tracks with a red train leaving.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465566.jpg', 'caption': 'VIEW OF A RED TRAIN GOING AWAY FROM YOU ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465566.jpg', 'caption': 'A red train traveling down train tracks next to another train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350966.jpg', 'caption': 'A train inside a station moving at a regular speed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350966.jpg', 'caption': 'A subway station with people and an incoming subway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350966.jpg', 'caption': 'A subway train pulling into the train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350966.jpg', 'caption': 'Train stopped on the side of the train way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350966.jpg', 'caption': 'A train moving through a station with people in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168434.jpg', 'caption': 'These two trains are workhorses necessary to care for other trains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168434.jpg', 'caption': 'Two train engines connected and on the tracks in a small town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168434.jpg', 'caption': 'A train on the rail line with some buildings at the back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168434.jpg', 'caption': 'A yellow railroad train traveling down the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168434.jpg', 'caption': 'a train that is on some kind of train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271240.jpg', 'caption': 'A stop sign and street sign encased in snow and ice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271240.jpg', 'caption': 'A couple of street signs sticking out the side of a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271240.jpg', 'caption': 'A stop sign and street sign encased in a wall of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271240.jpg', 'caption': 'A stop sign is buried in a large pile of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271240.jpg', 'caption': 'A large pile of snow with a stop sign and a street sign poking out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564129.jpg', 'caption': 'A red train parked in front of a loading platform next to passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564129.jpg', 'caption': 'A red train is parked at a train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564129.jpg', 'caption': 'A cargo train cart in a train station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564129.jpg', 'caption': 'Classic old train engine on display at a train platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564129.jpg', 'caption': 'A red train riding down a track in the middle of a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438232.jpg', 'caption': 'A red and yellow train pulling into a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438232.jpg', 'caption': 'A red commuter train with doors open at the station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438232.jpg', 'caption': 'there is a red train pulling into the station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438232.jpg', 'caption': 'A train is stopped at a train station platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438232.jpg', 'caption': 'Red/yellow train with people standing nearby waiting to board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342675.jpg', 'caption': 'Red train at a stop and a man that is waiting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342675.jpg', 'caption': 'A man standing next to a train and phone booth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342675.jpg', 'caption': 'A man standing in front of a red train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342675.jpg', 'caption': 'Man in hat standing near a bright red vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342675.jpg', 'caption': 'A man stands beside a yellow phone and red car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147915.jpg', 'caption': 'A stop sign that has some graffiti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147915.jpg', 'caption': 'Punk graffiti is spray painted on a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147915.jpg', 'caption': 'A stop sign that has some tagging on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147915.jpg', 'caption': 'A stop sign is shown on the side of a corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147915.jpg', 'caption': 'A stop sigm at an intersection with some graffitti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189427.jpg', 'caption': 'Garbage can on sidewalk with humorous caricature with sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189427.jpg', 'caption': 'A sign with a beaver holding a stop sign, next to a trash can in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189427.jpg', 'caption': 'A stop sign with a beaver saying do not pick the blossoms by a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189427.jpg', 'caption': 'a white trash can grass and an animal stop sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189427.jpg', 'caption': 'A warning sign by a trash can at a park reads warns people to not pick the blossoms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147866.jpg', 'caption': 'A parking meter next to a parked car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147866.jpg', 'caption': 'a parking meter sits next to a parked car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147866.jpg', 'caption': 'The front of a car is touching the parking meter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147866.jpg', 'caption': 'a gray double parking meter and a black car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147866.jpg', 'caption': 'A parking meter with a truck parked very close.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145039.jpg', 'caption': 'A parking meter that still has fifteen minutes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145039.jpg', 'caption': 'there is a meter by a car on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145039.jpg', 'caption': 'A parking meter sitting on the side of a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145039.jpg', 'caption': 'The parking meter has fifteen minutes let on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145039.jpg', 'caption': 'A parking meter with a blue sticker is on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145039.jpg', 'caption': 'a close up of a parking meter on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417588.jpg', 'caption': 'A multi colored parking meter sitting in front of a stairway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417588.jpg', 'caption': 'A multicolored parking meter on sidewalk next to stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417588.jpg', 'caption': 'A rainbow colored parking meter stands on a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417588.jpg', 'caption': 'A rainbow painted parking meter outside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417588.jpg', 'caption': 'there are two rainbow painted parking meters on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103791.jpg', 'caption': 'a truck on a city street with many houses in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103791.jpg', 'caption': 'A vehicle drives along the road in front of houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103791.jpg', 'caption': 'A truck drives down a street with lots of houses on a hill behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103791.jpg', 'caption': 'A truck driving on a road past houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103791.jpg', 'caption': 'A loaded truck on the road near a residential area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525183.jpg', 'caption': 'A brown cow standing on top of a gravel beach next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525183.jpg', 'caption': 'A cow/bull is trying to graze on a rocky beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525183.jpg', 'caption': 'The lone adult cow walks on rocks near the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525183.jpg', 'caption': 'A cow looks for food on a rocky beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525183.jpg', 'caption': \"A cow on the beach is something you don't see often.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346006.jpg', 'caption': 'Yellow utility truck parked inside a warehouse by itself. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346006.jpg', 'caption': 'A truck equipped with a crane sitting in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346006.jpg', 'caption': 'A cherry picker sits parked inside the garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346006.jpg', 'caption': 'A Yellow utility truck is parked in the garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346006.jpg', 'caption': 'A UTILITY TRUCK SITTING IN A WAREHOUSE WITH CONES ON THE FRONT OF IT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224793.jpg', 'caption': 'The cat with a damaged eye sits on a pair of shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224793.jpg', 'caption': 'A cat lying next to a black shoe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224793.jpg', 'caption': 'a cat in brown and white lying near a shoe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224793.jpg', 'caption': 'A small cat laying on top of a black shoe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224793.jpg', 'caption': 'a cat laying next to a shoe on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438059.jpg', 'caption': 'a cat sits on the ground with a scarf around its neck ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438059.jpg', 'caption': 'a black cat is wearing a red scarf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438059.jpg', 'caption': 'A black-and-white tuxedo cat, sitting on a clear plastic bag, wears a sheer red bandana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438059.jpg', 'caption': 'A black and white cat with a red scarf around its neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438059.jpg', 'caption': 'black and white cat wearing a red scarf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494140.jpg', 'caption': 'Cows are walking down a street near houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494140.jpg', 'caption': 'Several cattle out in the open on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494140.jpg', 'caption': 'Cows walking on a street behind some homes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494140.jpg', 'caption': 'Some cows are standing in the middle of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494140.jpg', 'caption': 'A few cows walking up a steep hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498400.jpg', 'caption': 'Three skinny white cows are walking down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498400.jpg', 'caption': 'Three white animals are walking down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498400.jpg', 'caption': '3 animals wander down a road in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498400.jpg', 'caption': 'Some white cattle roaming down the street of a town. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498400.jpg', 'caption': 'Three animals walking down the a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464328.jpg', 'caption': 'A cow walking across a river near lush green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464328.jpg', 'caption': 'The cow is crossing the creek to get to the other side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464328.jpg', 'caption': 'A cow crosses a stream while sun rays shine down on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464328.jpg', 'caption': 'A brown and white cow standing in water next to grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464328.jpg', 'caption': 'A large cow in the water with the fading sun shining on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483893.jpg', 'caption': 'A group of cows looking at camera by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483893.jpg', 'caption': 'Several cows with tagged ears standing in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483893.jpg', 'caption': 'A herd of cow standing around a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483893.jpg', 'caption': 'A herd of cows gathered close together in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483893.jpg', 'caption': 'a close up of a cow near other cows ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438985.jpg', 'caption': 'A cat is jumping off of a stack of suitcases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438985.jpg', 'caption': 'a yellow cat on top of stacked suit cases about to jump off', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438985.jpg', 'caption': 'a cat standing on red colored travel luggage ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438985.jpg', 'caption': 'A cat is playing on top of two suitcases. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438985.jpg', 'caption': 'Orange cat walking across two red suitcases stacked on floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307995.jpg', 'caption': 'A glass and bottle of wine next to cat statue and window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307995.jpg', 'caption': 'A bottle and half a glass of red wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307995.jpg', 'caption': 'A bottle of wine and red wine in a goblet near a cat statute.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307995.jpg', 'caption': 'A bottle of wine and a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307995.jpg', 'caption': 'A bottle of wine set next to a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416765.jpg', 'caption': 'A group of cows grazing near a beach as one cow looks up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416765.jpg', 'caption': 'A group of cows grazing in a sandy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416765.jpg', 'caption': 'Some cattle are standing in a field near the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416765.jpg', 'caption': 'A heard of black and white cows roaming a large field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416765.jpg', 'caption': 'A herd of cow grazing in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481313.jpg', 'caption': 'A cat with its paw over its face lying next to a remote and a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481313.jpg', 'caption': 'The cat is sleeping on the sofa by the remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481313.jpg', 'caption': 'a cat laying on the couch next to a remote and a pillow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481313.jpg', 'caption': 'A cat laying on top of a couch near a jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481313.jpg', 'caption': 'A cat sleeps on a couch by a book, a banana, and a shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278576.jpg', 'caption': 'An old blue truck drives down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278576.jpg', 'caption': 'a old truck going down the road next to a an wooden house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278576.jpg', 'caption': 'An old pickup truck and buildings on a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278576.jpg', 'caption': 'A old truck is seen going down a gravel road next to a wooden house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278576.jpg', 'caption': 'A vintage truck on the gravel drive outside a log home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147471.jpg', 'caption': 'A man and women rest as there dog stands on the trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147471.jpg', 'caption': 'A group of people sitting on a trail side with a dog looking onward.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147471.jpg', 'caption': 'A couple of people are in the woods with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147471.jpg', 'caption': 'Two people sit next to a dog on a trail. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147471.jpg', 'caption': 'Two hikers sit down and take a break with their dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152106.jpg', 'caption': 'a cow standing on a dirt ground with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152106.jpg', 'caption': 'A cow stands in a yard at the edge of some woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152106.jpg', 'caption': 'A bull standing a field near a couple of trailers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152106.jpg', 'caption': 'A cow standing in a field, looking at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152106.jpg', 'caption': 'a cow stares as it stands in a muddy area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096097.jpg', 'caption': 'there is a cat sitting on a wooden chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096097.jpg', 'caption': 'A cat is sitting on the wooden chair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096097.jpg', 'caption': 'A small cat sitting down on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096097.jpg', 'caption': 'A cat is sitting on a chair looking up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096097.jpg', 'caption': 'A black cat playing on top of a wooden chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532145.jpg', 'caption': 'A herd of cattle standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532145.jpg', 'caption': 'A group of cows standing around in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532145.jpg', 'caption': 'seven brown and white cows in a fenced in area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532145.jpg', 'caption': 'a couple of cows are standing in a fenced area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532145.jpg', 'caption': \"A large bull with a protective look as its near its calf's.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055241.jpg', 'caption': 'The cows are standing on the hay in a meadow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055241.jpg', 'caption': 'a brown cow standing next some other cows ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055241.jpg', 'caption': 'There are a few cows standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055241.jpg', 'caption': 'A cow that is close by is looking at the camera man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055241.jpg', 'caption': 'A couple of reddish brownish cows on a grassy pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367893.jpg', 'caption': 'A white and red truck with chrome rims parked next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367893.jpg', 'caption': 'There is a red and white classic pick up truck parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367893.jpg', 'caption': 'a classic red and white pickup truck parked on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367893.jpg', 'caption': 'An antique red and white pickup truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367893.jpg', 'caption': 'A nice old white with red design truck parked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543566.jpg', 'caption': 'A cat sleeping on top of a pillow on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543566.jpg', 'caption': 'A furry cat naps on a white, plush surface. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543566.jpg', 'caption': 'The cat is sleeping on a white blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543566.jpg', 'caption': 'a close up of a cat laying on a bed ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000572733.jpg', 'caption': 'An airplane flying in a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572733.jpg', 'caption': 'A large white airplane flying through the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572733.jpg', 'caption': 'The bottom of an airplane flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572733.jpg', 'caption': 'White jet plane flying in the sky with engines in the wings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517128.jpg', 'caption': 'inside a airplane hangar,a stealth plane hanging -up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517128.jpg', 'caption': 'A picture of a plane in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517128.jpg', 'caption': 'A hangar or display room with a giant bomber jet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517128.jpg', 'caption': 'An old photo of a plane inside of a garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517128.jpg', 'caption': 'plane is getting build in a small dirty garage ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128644.jpg', 'caption': 'A small plan is parked half on a cement area and half in a field while the ground is wet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128644.jpg', 'caption': 'An old plane with the propeller and four windows sits on the runway,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128644.jpg', 'caption': 'A propeller plane that is on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128644.jpg', 'caption': 'A small airplane in an airport on a rainy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128644.jpg', 'caption': 'A old aircraft that is half parked on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169936.jpg', 'caption': 'The view from an airplane window looking down on clouds and mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169936.jpg', 'caption': 'An airplane is flying high over the white puffy clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169936.jpg', 'caption': 'A view of a mountain top from a window in a high flying aircraft. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169936.jpg', 'caption': 'The view out of the plane shows mountains and clouds. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169936.jpg', 'caption': 'A view of an airplane engine and a mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304876.jpg', 'caption': 'The Seattle Space Needle as a Jumbo Jet Plane flies by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304876.jpg', 'caption': 'A large passenger jet flying over the space needle in Washington.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304876.jpg', 'caption': 'A plane in sky flying by a tower topped with a circle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304876.jpg', 'caption': 'A large plane flying in the sky over a tall tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304876.jpg', 'caption': 'An air plane looks quite small compared to a huge sky-scraper. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309434.jpg', 'caption': 'Two planes fly next to each other with only the sky visible in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309434.jpg', 'caption': 'A large airplane and a smaller one beneath are in flight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309434.jpg', 'caption': 'A couple of small airplanes high up in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309434.jpg', 'caption': 'two older planes flying in the air next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309434.jpg', 'caption': 'Two planes are flying in unison with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421307.jpg', 'caption': 'Two airplane shaped kites flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421307.jpg', 'caption': 'Two airplane kites fly in the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421307.jpg', 'caption': 'Two kites fashioned to look like planes in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421307.jpg', 'caption': 'two kites in the shape of World War I fighter planes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421307.jpg', 'caption': 'Two kites shaped like World War 1 German biplanes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101088.jpg', 'caption': 'A group of people standing outside of a small airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101088.jpg', 'caption': 'People standing in shallow water, next to a float plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101088.jpg', 'caption': 'People in hats and sunglasses are standing in the water near a plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101088.jpg', 'caption': 'A man and woman posing for a picture next to a plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101088.jpg', 'caption': 'A couple stands in shallow water next to a light aircraft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475798.jpg', 'caption': 'An airplane parked next to a terminal ready for passengers to board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475798.jpg', 'caption': 'A plane on the tarmac is parked at a gate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475798.jpg', 'caption': 'a large white plane is sitting on a runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475798.jpg', 'caption': 'An airplane sitting on a runway.being loaded up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475798.jpg', 'caption': 'An airplane parked at a airport terminal under gray skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112956.jpg', 'caption': 'A red, grey and white airplane passes overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112956.jpg', 'caption': 'A view from the ground of the bottom of an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112956.jpg', 'caption': 'A jet airplane is flying through the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112956.jpg', 'caption': 'The underside of a passenger airliner taking off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112956.jpg', 'caption': 'there is a small plane that is flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298440.jpg', 'caption': 'A large jetliner flying through a blue sky with two engines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298440.jpg', 'caption': 'a big jumbo plane flying through the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298440.jpg', 'caption': 'A passenger plane that is flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298440.jpg', 'caption': 'A plane flying through a clear sky can be seen from the bottom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298440.jpg', 'caption': 'a commercial jet airplane flies through a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246425.jpg', 'caption': 'Two airplanes flying through a blue sky with smoke pouring out of their rear ends.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246425.jpg', 'caption': 'Two small air crafts are flying side by side in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246425.jpg', 'caption': 'A couple of small airplanes flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246425.jpg', 'caption': 'a couple of planes fly through the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246425.jpg', 'caption': 'Two airplanes that have white smoke coming out of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579593.jpg', 'caption': 'A giraffe walking through dead bushes and grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579593.jpg', 'caption': 'a giraffe walking through the brush in the savannah ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579593.jpg', 'caption': 'A baby giraffe walking through a field with no leaves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579593.jpg', 'caption': 'A giraffe walks through brush and trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579593.jpg', 'caption': 'one giraffe is walking through some bushes and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356836.jpg', 'caption': 'A giraffe is standing outside in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356836.jpg', 'caption': 'a giraffe is standing alone in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356836.jpg', 'caption': 'A giraffe near a bush looks into the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356836.jpg', 'caption': 'a giraffe and some brown grass bushes and a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356836.jpg', 'caption': 'A giraffe standing in the grass near a bush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146659.jpg', 'caption': 'A airplane flying high in the sky next to a set of white smoke lines. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146659.jpg', 'caption': 'A plane that is flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146659.jpg', 'caption': 'a big jumbo plane flies through the blue sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146659.jpg', 'caption': 'a jet airplane in the air in between two jet streams', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146659.jpg', 'caption': 'A commercial jet with its wheels down in a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168200.jpg', 'caption': 'Commercial jet airplane flying in clear blue skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168200.jpg', 'caption': 'This blue and white airplane is soaring through clear skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168200.jpg', 'caption': 'the plane is flying. The bottom is blue', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168200.jpg', 'caption': 'View of overhead jet plane on landing approach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168200.jpg', 'caption': 'A jet flying overhead appears to be coming in for a landing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495348.jpg', 'caption': 'some zebras a giraffe and other animals and some bushes and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495348.jpg', 'caption': 'Four zebras, two warthogs and a giraffe in an open field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495348.jpg', 'caption': 'Numerous animals, such as zebras and giraffes, on a dry grassy plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495348.jpg', 'caption': 'An outdoor scene with zebras, elephants and a giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495348.jpg', 'caption': 'Wild animals in the grazing and walking in the brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430804.jpg', 'caption': 'some zebras and giraffes are walking around ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430804.jpg', 'caption': 'Zebras and giraffes eat and rest on an open plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430804.jpg', 'caption': 'Giraffes and zebras grazing and sitting in the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430804.jpg', 'caption': 'Zebras and giraffes rest in the noonday sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430804.jpg', 'caption': 'The zebras are in the grassy field with the giraffes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144122.jpg', 'caption': 'A small airplane flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144122.jpg', 'caption': 'A red plane flying in a cloudless sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144122.jpg', 'caption': 'A small airplane flies in the sky during the daytime. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144122.jpg', 'caption': 'a small plane flying in the air with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144122.jpg', 'caption': 'A red plane flying high in a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553867.jpg', 'caption': \"A herd of Giraffes and a herd of Zebra's running together across a field.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553867.jpg', 'caption': 'There are zebras and giraffes running across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553867.jpg', 'caption': 'a number of animals in a field near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553867.jpg', 'caption': 'The zebras and giraffes are running threw the fields. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553867.jpg', 'caption': 'A herd of zebra standing on a field next to a herd of giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312724.jpg', 'caption': 'A group of different animals are grazing in the wild. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312724.jpg', 'caption': 'A group of wild animals in a field outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312724.jpg', 'caption': 'A herd of of wild animals walking around a field surrounded by forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312724.jpg', 'caption': 'Zebras, giraffes and kudus on the run across a plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312724.jpg', 'caption': 'it is a savannah with zebras and giraffes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327433.jpg', 'caption': 'The wildlife is grazing on the tall vegetation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327433.jpg', 'caption': 'Zebras and a giraffe share a meal on an open plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327433.jpg', 'caption': \"Giraffes, zebras and rhinoceros' graze on the open plain. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327433.jpg', 'caption': 'A giraffe and some zebras in the plains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327433.jpg', 'caption': 'A nature reserve where giraffes, zebra, and other animals roam freely.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455229.jpg', 'caption': 'A giraffe stands next to a pole in a habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455229.jpg', 'caption': 'A giraffe and a zebra in a zoo enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455229.jpg', 'caption': 'A giraffe standing next to a zebra eating food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455229.jpg', 'caption': \"View of someone's cap at the bottom and a giraffe and zebra in the back\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455229.jpg', 'caption': 'A giraffe in a sandy area next to trees and a rock wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183181.jpg', 'caption': 'A herd of buffalo grazing on grass next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183181.jpg', 'caption': 'A herd of black sheep grazing near the shore', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183181.jpg', 'caption': 'A field full of wild animals next to a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183181.jpg', 'caption': 'A group of animals grazing next to a beach and ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183181.jpg', 'caption': 'A herd of large wholly sheep walk near a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580746.jpg', 'caption': 'a field that ha a bunch of sheep in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580746.jpg', 'caption': 'Several sheep walking or grazing on the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580746.jpg', 'caption': 'A group of sheep grazing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580746.jpg', 'caption': 'A herd of sheep sitting in a field grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580746.jpg', 'caption': 'there are many sheep that are on this field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233560.jpg', 'caption': 'Animals in a field surrounded by trees and fencing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233560.jpg', 'caption': 'Several sheep and a dog are on a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233560.jpg', 'caption': 'A herd of sheep grazing on a grass covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233560.jpg', 'caption': 'Sheep and lambs grazing in a pasture behind a hedge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233560.jpg', 'caption': 'Sheep and their lambs graze in a grassy paddock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292639.jpg', 'caption': 'Planes are flying in a V formation in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292639.jpg', 'caption': 'Six stunt planes fly in the sky together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292639.jpg', 'caption': 'Six airplanes in a triangular formation flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292639.jpg', 'caption': 'Six Blue Angel jets fly in formation in a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292639.jpg', 'caption': 'Several blue and yellow jets flying in a formation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158801.jpg', 'caption': 'A large plane is parked outside an airplane hangar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158801.jpg', 'caption': 'A airplane parked out on a runway by itself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158801.jpg', 'caption': 'An old airplane on a corner of the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158801.jpg', 'caption': 'An airplane on a small airfield runway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158801.jpg', 'caption': 'A white airplane is on the ground at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275210.jpg', 'caption': 'A giraffe in a dry savannah with dry shrubs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275210.jpg', 'caption': 'A giraffe standing in a dry, open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275210.jpg', 'caption': 'A giraffe standing on top of a dry grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275210.jpg', 'caption': 'A giraffe stands out in the dried out field alone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275210.jpg', 'caption': 'A giraffe standing in the dirt surround by leafless trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074268.jpg', 'caption': 'A cat sitting up on its hind feet on a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074268.jpg', 'caption': 'A fat black cat stands on his hind legs on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074268.jpg', 'caption': 'A black cat stands up on its hind legs on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074268.jpg', 'caption': 'A cat standing up on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074268.jpg', 'caption': 'A black cat sitting on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513646.jpg', 'caption': 'A road with traffic lights, street lights and cars ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513646.jpg', 'caption': 'A city street with cars racing by fast under a street light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513646.jpg', 'caption': 'The traffic lights are clearly visible for all of us to see. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513646.jpg', 'caption': 'A city street in winter with cars zooming by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513646.jpg', 'caption': 'A close up of the push to walk button', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526711.jpg', 'caption': 'A turquoise and white airplane and cars on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526711.jpg', 'caption': 'The plane that the president uses on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526711.jpg', 'caption': 'A huge white and blue airplane sits on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526711.jpg', 'caption': 'A blue and white airplane parked outside on the tarmac. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526711.jpg', 'caption': 'A large jetliner sitting on top of an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461123.jpg', 'caption': 'The airplane is taking off the runway at the airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461123.jpg', 'caption': 'A plane taking off into the air from a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461123.jpg', 'caption': 'A passenger plane that is in mid take off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461123.jpg', 'caption': 'An airplane begins to take off of pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461123.jpg', 'caption': 'A Delta airplane takes off of the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519046.jpg', 'caption': 'A giraffe standing in front of green brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519046.jpg', 'caption': 'A giraffe stands with its head above the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519046.jpg', 'caption': 'A tall giraffe is standing against the gray sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519046.jpg', 'caption': 'A giraffe that is walking alone outside in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519046.jpg', 'caption': 'A single giraffe is standing among some greenery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219904.jpg', 'caption': 'A large giraffe standing in front of a lush green wilderness.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219904.jpg', 'caption': 'A giraffe that only has one horn growing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219904.jpg', 'caption': 'A giraffe stands tall amongst very tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219904.jpg', 'caption': 'A giraffe looks at the camera as it walks through the brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219904.jpg', 'caption': 'A curious giraffe looks down from some tall scrubby terrain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362159.jpg', 'caption': 'A traffic light hanging over a street next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362159.jpg', 'caption': 'A street light in a city setting next to high rise buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362159.jpg', 'caption': 'a sun setting over a large city and buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362159.jpg', 'caption': 'A view of buildings and a street light as the sun sets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362159.jpg', 'caption': 'The sun shines on the side of many tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430867.jpg', 'caption': 'A girl uses a phone next to a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430867.jpg', 'caption': 'A woman sitting on a bench with a dog sitting on the ground by her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430867.jpg', 'caption': 'A woman and a brown dog are sitting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430867.jpg', 'caption': 'a brown dog is sitting in front of a young woman', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430867.jpg', 'caption': 'A dog sits on the sidewalk while a girl looks at her cellphone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397863.jpg', 'caption': 'Adult and juvenile giraffes standing and lying on a dirt clearing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397863.jpg', 'caption': 'AOne giraffe standing over other giraffes laying down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397863.jpg', 'caption': 'A herd of giraffe standing next to each other on a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397863.jpg', 'caption': 'A group of giraffe hanging out in an open area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397863.jpg', 'caption': 'A group of giraffes huddle together in the middle of a dirt ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493805.jpg', 'caption': 'Two giraffes in a zoo look at their surroundings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493805.jpg', 'caption': 'Two giraffes are standing at a wild animal park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493805.jpg', 'caption': 'Two giraffes standing close together near a pile of rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493805.jpg', 'caption': 'Two giraffes on grassy field with rocks and trees around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493805.jpg', 'caption': 'Two giraffes standing together in an outdoor park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266099.jpg', 'caption': 'A large commercial airplane parked on the runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266099.jpg', 'caption': 'A large jet liner sitting on top of an airport tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266099.jpg', 'caption': 'The airplane is parked on the runway in the airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266099.jpg', 'caption': 'Jet plane on tarmac with truck unloading luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266099.jpg', 'caption': 'Some big commercial planes parked by the terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371973.jpg', 'caption': 'A small yellow airplane is on a grassy runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371973.jpg', 'caption': 'A small yellow plane sitting on top of an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371973.jpg', 'caption': 'A yellow plane is taking off to fly ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371973.jpg', 'caption': 'A tiny yellow plane prepares to take off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371973.jpg', 'caption': 'a yellow plane that is out on a runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145383.jpg', 'caption': 'A small airplane flying over a field over crops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145383.jpg', 'caption': 'a black white and red airplane and some people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145383.jpg', 'caption': 'A propeller plane that is flying close to the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145383.jpg', 'caption': 'A black and red biplane flying over a marker on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145383.jpg', 'caption': 'A huge airplane flies over a string over some people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338607.jpg', 'caption': 'A giraffe stands beneath a tree beside a marina.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338607.jpg', 'caption': 'A statue of a giraffe eating at a marina.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338607.jpg', 'caption': 'a giraffe statue next to some docked boats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338607.jpg', 'caption': 'A giraffe is standing near the water with a lot of sailboats lined up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338607.jpg', 'caption': 'The giraffe is standing in front of the harbor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064390.jpg', 'caption': 'a street sign attached to a metal pole next to a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064390.jpg', 'caption': 'A pedestrian traffic light and car are shown at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064390.jpg', 'caption': 'a street light saying it is not okay to cross the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064390.jpg', 'caption': 'A stoplight on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064390.jpg', 'caption': 'A traffic light next to a blue car in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446861.jpg', 'caption': 'A row of traffic lights hanging over a suburban intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446861.jpg', 'caption': 'A bunch of stop lights hanging over an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446861.jpg', 'caption': 'A large and busy intersection with several light and traffic lanes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446861.jpg', 'caption': 'Multiple traffic lights are strung across a wide intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446861.jpg', 'caption': 'A street light view from underneath the street lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493219.jpg', 'caption': 'a couple of people that are sitting on a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493219.jpg', 'caption': 'A man and a woman sit on a park bench and look at a statue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493219.jpg', 'caption': 'Man and woman sitting on bench contemplating a statue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493219.jpg', 'caption': 'Two people sitting on a bench facing the back of a statue of a woman holding a hat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493219.jpg', 'caption': 'Man and woman sitting a on park bench looking at a statue', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017267.jpg', 'caption': 'A police office standing on a street corner next to a power box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017267.jpg', 'caption': 'Man in uniform standing on sidewalk looking across a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017267.jpg', 'caption': 'A man in uniform standing next to machines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017267.jpg', 'caption': 'A man stands as other people walk by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017267.jpg', 'caption': 'This is an image of a man in uniform on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279596.jpg', 'caption': 'A stop light that is green that also has various other street markers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279596.jpg', 'caption': 'A green street light on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279596.jpg', 'caption': 'A traffic light on a pole on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279596.jpg', 'caption': 'The electronic traffic signal near the building has turned green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279596.jpg', 'caption': 'a pole with street signs and a green light ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458221.jpg', 'caption': 'The electronic light has many tiny green dots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458221.jpg', 'caption': 'A bunch of small green lights set in a yellow base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458221.jpg', 'caption': 'an extreme close up of a green street light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458221.jpg', 'caption': 'An up close picture of a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458221.jpg', 'caption': 'The traffic light has turned green for us to go. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249909.jpg', 'caption': 'A giraffe grazing from shrubs next to the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249909.jpg', 'caption': 'A giraffe standing at a dirt road eating off a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249909.jpg', 'caption': 'A giraffe standing next to a tree eating its leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249909.jpg', 'caption': ' This is a tall giraffe standing outside among the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249909.jpg', 'caption': 'A giraffe grazing from a tree next to a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192591.jpg', 'caption': 'Eight busses are parked in front of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192591.jpg', 'caption': 'A bunch of buses parked in a lot together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192591.jpg', 'caption': 'Abandoned buses in a grassy lot under some trees and a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192591.jpg', 'caption': 'A parking lot for old multicolored school buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192591.jpg', 'caption': 'a parking lot filled with many buses and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078696.jpg', 'caption': 'A bus drives down the middle of a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078696.jpg', 'caption': 'a white orange and blue bus on a street and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078696.jpg', 'caption': 'a orange and blue bus riding down a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078696.jpg', 'caption': 'A bus is driving along the street by a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078696.jpg', 'caption': 'An orange and blue bus is on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379156.jpg', 'caption': 'A wild animal sitting on some rocks in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379156.jpg', 'caption': 'A sheep lays in a grassy, rocky area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379156.jpg', 'caption': 'A sheep is lying down in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379156.jpg', 'caption': 'Sheep perched atop knoll on green countryside with rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379156.jpg', 'caption': 'A sheep sits on a rocky, hilly field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097249.jpg', 'caption': 'The red tow truck is pulling a yellow double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097249.jpg', 'caption': 'A tow truck is towing a yellow bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097249.jpg', 'caption': 'THERE IS A TOW TRUCK THAT IS TOWING A BUS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097249.jpg', 'caption': 'That tow truck is hauling a huge bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097249.jpg', 'caption': 'a couple of cars outside by some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314193.jpg', 'caption': 'a person sitting on a bench reading a book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314193.jpg', 'caption': 'A woman sitting on a bench reading a book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314193.jpg', 'caption': 'A lady sitting on a park bench reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314193.jpg', 'caption': 'a female in a dress is reading on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314193.jpg', 'caption': 'A woman sitting on a bench holding an open book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499268.jpg', 'caption': 'A woman on a bench reading a book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499268.jpg', 'caption': 'A woman sitting on a park bench with her hand in her hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499268.jpg', 'caption': 'Woman sitting on a bench and holding some of her hair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499268.jpg', 'caption': 'an image of a woman sitting on the bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499268.jpg', 'caption': 'A woman with blonde hair sitting at a bench in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389378.jpg', 'caption': 'It is night time and the town is quiet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389378.jpg', 'caption': 'A nightlife scene at the park in the dark', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389378.jpg', 'caption': 'A long exposure image of a street during the night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389378.jpg', 'caption': 'A street is displayed at night with time lapse photography.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389378.jpg', 'caption': 'There is a street at night with cars passing by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495734.jpg', 'caption': 'The giraffes are standing together on the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495734.jpg', 'caption': 'A group of giraffes gathered by a fence at a wildlife park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495734.jpg', 'caption': 'A bunch of giraffes that are standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495734.jpg', 'caption': 'there are giraffes walking on the road together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495734.jpg', 'caption': 'a group of giraffes are walking on a dirt trail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132982.jpg', 'caption': 'A wet view of a street with people crossing in front of buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132982.jpg', 'caption': 'A view of a busy street with a lot of buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132982.jpg', 'caption': 'Two double decker buses passing each other as two people cross the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132982.jpg', 'caption': 'Double decker buses sit at an intersection on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132982.jpg', 'caption': 'A rainy picture of three red double deck buses on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194167.jpg', 'caption': 'A giraffe looking for food between large rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194167.jpg', 'caption': \"A giraffe rests it's neck on a bunch of rocks.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194167.jpg', 'caption': 'A giraffe laying down with his head on the rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194167.jpg', 'caption': 'A giraffe reaching between two rocks to obtain grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194167.jpg', 'caption': 'A giraffe reaching its head above some rocks to a grass area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274083.jpg', 'caption': 'A double decker bus driving down a street next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274083.jpg', 'caption': 'People are standing next to a car parked behind a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274083.jpg', 'caption': 'an orange and black car and a yellow and blue bus and some people ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274083.jpg', 'caption': 'Men standing in a street next to a car and a large bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274083.jpg', 'caption': 'A Hyundai vehicle is following a city bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347453.jpg', 'caption': 'all the vehicles in this town are red', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347453.jpg', 'caption': 'A street filled with lots of traffic near traffic lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347453.jpg', 'caption': 'A bunch of traffic on a very busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347453.jpg', 'caption': 'a number of public transit buses on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347453.jpg', 'caption': 'A a city street crowded with street cars ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220690.jpg', 'caption': 'A city street filled with lots of traffic and pedestrians.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220690.jpg', 'caption': 'A mostly grey, European cityscape with buildings and lots of traffic, vehicular and otherwise, picks up bits of bright red from buses, stop signs, sidewalk signs and pedestrian clothing items. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220690.jpg', 'caption': 'A busy road in London shows several red busses and smaller cars as pedestrians walk next to them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220690.jpg', 'caption': 'A busy street with multiple cars and many pedestrians.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220690.jpg', 'caption': 'During the day many people occupy the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377406.jpg', 'caption': 'A white wooden bench sitting on top of a green hill next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377406.jpg', 'caption': 'A white bench on a cliff by the sea shore on a sunny day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377406.jpg', 'caption': 'a bench on a hill overlooking a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377406.jpg', 'caption': 'A white bench sitting that overlooks an ocean view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377406.jpg', 'caption': 'This is an image of a bench overlooking a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012204.jpg', 'caption': 'a couple of giraffes that are standing in a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012204.jpg', 'caption': 'two giraffe stand behind a fence in a zoo enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012204.jpg', 'caption': 'Two giraffes roaming around an enclosed area on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012204.jpg', 'caption': 'Two giraffes in a grassy area with a fence and trees next to them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012204.jpg', 'caption': 'The two giraffes are walking in their pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410097.jpg', 'caption': 'All of these sheep have coats that are ready for shearing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410097.jpg', 'caption': 'some sheep standing around by a wooden wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410097.jpg', 'caption': 'Five sheep are standing and sitting in their enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410097.jpg', 'caption': 'One sheep lies down as four others stand near.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410097.jpg', 'caption': 'A group of five sheep wait outside a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091857.jpg', 'caption': 'A giraffe sticking its head in a feeding basket with trees in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091857.jpg', 'caption': 'Giraffe reaching into basked with trees in background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091857.jpg', 'caption': 'A very tall adult giraffe eating from a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091857.jpg', 'caption': 'A giraffe is eating out of a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091857.jpg', 'caption': 'a giraffe eating from a man made feeder', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220307.jpg', 'caption': 'A picture of two giraffes, fairly close to a road, with a bus traveling up it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220307.jpg', 'caption': 'People driving and observing giarffs in a natural environment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220307.jpg', 'caption': 'Giraffes are wandering around on a field with a camper in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220307.jpg', 'caption': 'Two giraffes roaming with a van of people looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220307.jpg', 'caption': 'Two giraffes in the savannah with buses in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286544.jpg', 'caption': 'A man pushing a wheelchair on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286544.jpg', 'caption': 'Bicycle crossing light on a traffic signal near a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286544.jpg', 'caption': 'There are people walking near a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286544.jpg', 'caption': 'The man is pushing the person on the road in a wheelchair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286544.jpg', 'caption': 'The traffic light indicates bicycles on the crosswalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057917.jpg', 'caption': 'A tree sitting on top of a hillside near a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057917.jpg', 'caption': 'A rustic bench beneath a tree near a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057917.jpg', 'caption': 'a wooden bench besides a very wide tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057917.jpg', 'caption': 'A park bench made out of wood in the park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057917.jpg', 'caption': 'A bench fashioned from chopped tree trunks in the woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387388.jpg', 'caption': 'A bench on a wooden plank in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387388.jpg', 'caption': 'A wooden deck with a bench of top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387388.jpg', 'caption': 'a wooden dock that is in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387388.jpg', 'caption': 'A bench is situated on the edge of a very small dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387388.jpg', 'caption': 'A bench is on a deck overlooking the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155671.jpg', 'caption': 'A traffic light hanging over a street next to cross walks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155671.jpg', 'caption': 'A street light that is hanging from a wire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155671.jpg', 'caption': 'a street view of a traffice light, houses and vehicles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155671.jpg', 'caption': 'This American city street has one-way traffic only', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155671.jpg', 'caption': 'A red stoplight at an urban intersection under a bright blue sky with puffy clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102654.jpg', 'caption': 'Two giraffes are looking at each other in a wooden room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102654.jpg', 'caption': 'Two giraffes looking at each other from two separate rooms. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102654.jpg', 'caption': 'A pair of giraffes looking at each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102654.jpg', 'caption': 'two giraffes are inside a barn looking at each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102654.jpg', 'caption': 'two girrafe standing and facing one another next to a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112240.jpg', 'caption': 'THERE IS A BOAT IN THE WATER UNDER THE SKY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112240.jpg', 'caption': 'A park that overlooks the water with boats in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112240.jpg', 'caption': 'Benches in a green park overlook a calm blue bay', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112240.jpg', 'caption': 'A full view of an ocean with ships on the waters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112240.jpg', 'caption': 'A landscape of a body of water with boats in it and benches in the grass in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117792.jpg', 'caption': 'A red fire hydrant in front of a window with large windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117792.jpg', 'caption': 'A red fire hydrant outside of an old brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117792.jpg', 'caption': 'The bricks of this building are many colors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117792.jpg', 'caption': 'A fire hydrant is placed in front of an old building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117792.jpg', 'caption': 'An old building, a sidewalk with weeds, and a red fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429802.jpg', 'caption': 'A red fire hydrant placed near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429802.jpg', 'caption': 'A red fire hydrant between two barriers next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429802.jpg', 'caption': 'A small window and a red fire hydrant between two bike racks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429802.jpg', 'caption': 'The red and green fire hydrant is in front of the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429802.jpg', 'caption': 'A fire hydrant in front of a wall with a barred window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533107.jpg', 'caption': 'A red double decker bus parked next to another city bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533107.jpg', 'caption': 'A double decker bus parked next to a red bus in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533107.jpg', 'caption': 'Red double deck bus parked beside single story red bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533107.jpg', 'caption': 'Two red buses are on the street near shrubs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533107.jpg', 'caption': 'A double-decker bus parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095371.jpg', 'caption': 'a colorful double decker bus doing down the road beside a semi', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095371.jpg', 'caption': 'A double decker bus is traveling down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095371.jpg', 'caption': 'A double decker bus on a street in England', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095371.jpg', 'caption': 'A double-decked bus is driving along the highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095371.jpg', 'caption': 'A double decker bus is traveling down the road on an empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204206.jpg', 'caption': 'A fire hydrant has been painted in the style of Dalmatian outside the fire department. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204206.jpg', 'caption': 'A fire hydrant painted with dalmatian spots, in front of a Charleston Fire Department building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204206.jpg', 'caption': 'Black and white fire hydrant sitting in front of a fire department. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204206.jpg', 'caption': 'Fire hydrant in non-traditional paint, whitish yellow paint with black polka dots in front of old style firehouse with USA flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204206.jpg', 'caption': 'A polka dot fire hydrant outside of a firehouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523195.jpg', 'caption': 'a very big bus moving on the street with no people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523195.jpg', 'caption': 'a large red bus with two levels is going past buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523195.jpg', 'caption': 'A red two story bus travels along a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523195.jpg', 'caption': 'A red double decker bus on a street, passing a red van.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523195.jpg', 'caption': 'a double decker parked on the side of the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160089.jpg', 'caption': 'An elderly couple view the trees from a bench by the lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160089.jpg', 'caption': 'An older couple sits on a bench near the lake with lilypads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160089.jpg', 'caption': 'Man and woman hikers sitting on rustic bench in front of a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160089.jpg', 'caption': 'Two old people sitting on a bench before a wooded lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160089.jpg', 'caption': 'a couple of people are sitting in front of the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189773.jpg', 'caption': 'An older model double deck tour bus sitting on a road side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189773.jpg', 'caption': 'An orange double decker bus is parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189773.jpg', 'caption': 'Empty double decker London bus in rural area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189773.jpg', 'caption': 'A red double decker bus parked on a gravel road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189773.jpg', 'caption': 'A double high bus that is sitting on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485887.jpg', 'caption': 'Street full of cars, double decker buses, and someone on a bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485887.jpg', 'caption': 'The city bus is traveling down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485887.jpg', 'caption': 'A red and white double decker bus on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485887.jpg', 'caption': 'A red double decker bus on the road with other traffic around', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485887.jpg', 'caption': 'A number 56 double decker bus driving down the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351938.jpg', 'caption': 'A yellow fire hydrant surrounded by many types of flowers next to an apartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351938.jpg', 'caption': 'A yellow fire hydrant surrounded by flowers in front of a gray house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351938.jpg', 'caption': 'A still scene allows a woman to put flowers next to an unused fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351938.jpg', 'caption': 'A close-up of a yellow fire hydrant surrounded by flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351938.jpg', 'caption': 'A bright yellow fire hydrant has pretty flowers and decorative stones surrounding it; a cement building is in the background and one of the curtains is very colorful. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004760.jpg', 'caption': 'A set of park benches near a lamp post', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004760.jpg', 'caption': 'A park with benches, a lamppost, and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004760.jpg', 'caption': 'Park scene, park bench, light pole and building in back ground, probably city park area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004760.jpg', 'caption': 'Two benches are separated by a pole front of a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004760.jpg', 'caption': 'A fire hydrant with a bench and building in a background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489382.jpg', 'caption': 'A herd of sheep crossing a bridge over a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489382.jpg', 'caption': 'There are some sheep crossing a bridge over a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489382.jpg', 'caption': 'A herd of sheep using a wooden bridge to cross a steam in a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489382.jpg', 'caption': 'Three white sheep with black legs and faces, crossing a simple bridge over narrow waterway with lush green grass on both sides and four sheep in distance near lush leafy trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489382.jpg', 'caption': 'A bunch of sheep walking across a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539498.jpg', 'caption': 'A red double decker bus driving past a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539498.jpg', 'caption': 'A double decker bus travels past a crowd of people on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539498.jpg', 'caption': 'A crowded red double decker bus passes a group of people on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539498.jpg', 'caption': 'A group of people on the side of a street watching a bus drive by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539498.jpg', 'caption': 'The big red bus is riving past the crowd of people on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357493.jpg', 'caption': 'The people get off of the white buss next to the forest ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357493.jpg', 'caption': 'A group of people in front of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357493.jpg', 'caption': 'People walk in a parking lot as a site appears to have been rolled over by one of the huge boulders.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357493.jpg', 'caption': 'Several people get off of a tour bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357493.jpg', 'caption': 'People walk from a bus across a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138040.jpg', 'caption': 'A PICTURE OF PEOPLE GETTING OFF OF A WHITE BUS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138040.jpg', 'caption': 'Couple of people just exited the bus and is walking through parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138040.jpg', 'caption': 'A couple people getting off of a white, school bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138040.jpg', 'caption': 'A couple and child exit a white bus onto a gravel lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138040.jpg', 'caption': 'a small parking lot in the middle of a forest feild', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382848.jpg', 'caption': 'A yellow schoolbus with a woman spread out in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382848.jpg', 'caption': 'A woman standing with her arms in the air next to a school bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382848.jpg', 'caption': 'A woman poses for a picture outside a painted school bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382848.jpg', 'caption': \"A woman posing with arms open in front of a graffiti'ed bus.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382848.jpg', 'caption': 'A proud young woman stands in front of a school bus painted with the words \"Food is Free\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450724.jpg', 'caption': 'A man sitting on a bench right on a bay of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450724.jpg', 'caption': 'A person sitting down a bench in front of the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450724.jpg', 'caption': 'Man sitting on bench on rocky shore watching ship in distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450724.jpg', 'caption': 'Man sitting on a bench overlooking the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450724.jpg', 'caption': 'A man sitting on top of a bench near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056624.jpg', 'caption': 'A wooden bench with snow in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056624.jpg', 'caption': 'a wood bench is outside covered in snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056624.jpg', 'caption': 'A winter scene of a park bench covered in snow among the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056624.jpg', 'caption': 'A bench is sitting near a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056624.jpg', 'caption': 'a bench leaves snow trees and some branches ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084460.jpg', 'caption': 'Girl siting on a bench in the woods in the fall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084460.jpg', 'caption': 'A young girl sitting on a wooden bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084460.jpg', 'caption': 'A girl that is wearing fishnet stockings and laying on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084460.jpg', 'caption': 'there is a woman that is posing for a picture on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084460.jpg', 'caption': 'A woman in a red jacket and stockings sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027440.jpg', 'caption': 'A giraffe standing outside of a building next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027440.jpg', 'caption': 'A giraffe standing in a small piece of shade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027440.jpg', 'caption': 'A giraffe finds some sparse shade in his habitat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027440.jpg', 'caption': 'Giraffe standing in a holding pen near a tree stump. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027440.jpg', 'caption': 'A giraffe in a zoo enclosure next to a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427113.jpg', 'caption': 'A couple of older men sitting on top of a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427113.jpg', 'caption': 'Two old men with glasses seated on armchairs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427113.jpg', 'caption': 'Two older men sit on an outdoor bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427113.jpg', 'caption': 'Two old men sitting side by side conversing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427113.jpg', 'caption': 'A couple of men sitting on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059108.jpg', 'caption': 'This photo shows four copies of the same fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059108.jpg', 'caption': 'multiple pictures of a fire hydrant on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059108.jpg', 'caption': 'Four photos of a fire hydrant in a row.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059108.jpg', 'caption': 'A red fire hydrant that was spray painted silver on the side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059108.jpg', 'caption': 'a collage of photos with four fire hydrants ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423256.jpg', 'caption': 'Top of a fire hydrant covered in pink paint.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423256.jpg', 'caption': 'A pink piece of metal with a bolt and nut on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423256.jpg', 'caption': 'A very close up view of an old bright colored fir hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423256.jpg', 'caption': 'a decaying fire hydrant knob with worn paint', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423256.jpg', 'caption': 'a close up of a pink fire hydrant on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553790.jpg', 'caption': 'Birds perched on iron poles in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553790.jpg', 'caption': 'metal rusty metal birds stand on a pole with tall building in the background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553790.jpg', 'caption': 'bird sculptures atop iron perches overlooking a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553790.jpg', 'caption': 'This is a picture of four birds on poles in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553790.jpg', 'caption': 'Metal bird sculptures are on poles with city buildings in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534045.jpg', 'caption': 'An old green fire hydrant sits on a grassy curb. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534045.jpg', 'caption': 'Flowers hang from a small decorative post in a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534045.jpg', 'caption': 'A green fire hydrant sitting on a patch of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534045.jpg', 'caption': 'A green fire hydrant on at a cementery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534045.jpg', 'caption': 'The older style fire hydrant is on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147675.jpg', 'caption': 'A flock of birds floating on top of a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147675.jpg', 'caption': 'Six birds are perched on a blue row boat in the body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147675.jpg', 'caption': 'A boat in on the water with a flock of birds in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147675.jpg', 'caption': 'Birds land on a small boat sitting in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147675.jpg', 'caption': 'A group of gulls gather on an empty boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531607.jpg', 'caption': 'Two giraffes are running through a bushy savannah.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531607.jpg', 'caption': 'Two giraffe standing next to each other on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531607.jpg', 'caption': 'A giraffes chasing behind another giraffe from the bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531607.jpg', 'caption': 'Two giraffes running in a sandy area with few trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531607.jpg', 'caption': 'Two giraffes walking through grass and sand on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438221.jpg', 'caption': 'Two Mallards float and drink water in a shallow pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438221.jpg', 'caption': 'Two ducks are swimming in some brown water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438221.jpg', 'caption': 'Two ducks swimming on a very dirty pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438221.jpg', 'caption': 'Two ducks swimming in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438221.jpg', 'caption': 'Two ducks in a pond in a camp grounds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367433.jpg', 'caption': 'A bird that is perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367433.jpg', 'caption': 'A small bird perched on a branch with leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367433.jpg', 'caption': 'A side view of a bird sitting on a branch.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000481187.jpg', 'caption': 'A person on skis flying over a snow track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481187.jpg', 'caption': 'A skier leaning to turn on a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481187.jpg', 'caption': 'Skier, in full professional gear, in the middle of a downhill speed race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481187.jpg', 'caption': 'A man skiing down the side of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481187.jpg', 'caption': 'A man downhill skiing at a very quick pace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208079.jpg', 'caption': 'Skier leaning in the direction of a flag going down a ski trail. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208079.jpg', 'caption': 'A downhill skier engaged in an Olympic competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208079.jpg', 'caption': 'A man ice skating in the snow near a flag on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208079.jpg', 'caption': 'Near a bright red sign skier in red, white and blue skis down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208079.jpg', 'caption': 'Competitor in a down hill ski race during the Olympics', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199387.jpg', 'caption': 'A photo of a man standing on snow skis and holding snow skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199387.jpg', 'caption': 'The storm was so bad the only way to get through town was to ski', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199387.jpg', 'caption': 'A person with some skies in the snow posing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199387.jpg', 'caption': 'The skier is repairing his ski on the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199387.jpg', 'caption': 'a person is adjusting skis on the slopes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208135.jpg', 'caption': 'a person in blue skies is skiing down a snowy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208135.jpg', 'caption': 'A person skiing down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208135.jpg', 'caption': 'An Olympic skier travels down a hill for a competition', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208135.jpg', 'caption': 'The furrows in the snow could pose a problem for the skier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208135.jpg', 'caption': 'An advertisement photo of a young man speeding down the ski slopes with mountains behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014151.jpg', 'caption': 'skiier jumping with skis split in a v-shape over the olympic circles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014151.jpg', 'caption': 'A skier is high up in the air over a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014151.jpg', 'caption': \"A person on skis is in the air over the Olympics' sign on the snow below them.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014151.jpg', 'caption': 'An Olympic Games skier on a jump sails past the Olympic symbol.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014151.jpg', 'caption': 'A skier does a big jump on a white snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207670.jpg', 'caption': 'A woman skiing in the snow followed by more skiers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207670.jpg', 'caption': 'The skiers are all lined up single file.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207670.jpg', 'caption': 'A group of skiers in a line skiing down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207670.jpg', 'caption': 'A line of young skiers ski down a gentle slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207670.jpg', 'caption': 'A girl skis first in a line of skiers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391862.jpg', 'caption': 'A young boy riding a skateboard and wearing a helmet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391862.jpg', 'caption': 'a little boy that is on a skateboard next to some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391862.jpg', 'caption': 'A boy riding a rip stick with a helmet on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391862.jpg', 'caption': 'A person is skateboarding next to a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391862.jpg', 'caption': 'A young boy riding his skate board near the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352496.jpg', 'caption': 'A man on skis with several other skiers on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352496.jpg', 'caption': 'A man is skiing down a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352496.jpg', 'caption': 'A man in a red jacket looking unsteady on his skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352496.jpg', 'caption': 'A man is posing for a picture while skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352496.jpg', 'caption': 'an amateur ski day out with the family', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067832.jpg', 'caption': 'Lamb chops over a bed of carrots and potatoes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067832.jpg', 'caption': 'Potatoes, carrots, and meat with a green garnish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067832.jpg', 'caption': 'A plate of lamb chop, new potatoes, and steamed carrot slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067832.jpg', 'caption': 'Cooked pork chops, carrots and potatoes on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067832.jpg', 'caption': 'A white plate has lamb chops and potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519299.jpg', 'caption': 'a fork sits on a plate with some food on the end of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519299.jpg', 'caption': 'A piece of a pastry is on a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519299.jpg', 'caption': 'A fork holding a pink food item on an upside down plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519299.jpg', 'caption': 'A piece of pink cake on a fork with crumbs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519299.jpg', 'caption': 'a fork that has some kind of pink cake on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528516.jpg', 'caption': 'Assorted vegetables being prepared in wok for consumption.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528516.jpg', 'caption': 'Cut vegetables in a wok with a wood spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528516.jpg', 'caption': 'A pan full of different kinds of vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528516.jpg', 'caption': 'A pan of cooked vegetables and a wooden spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528516.jpg', 'caption': 'a close up of food being cooked in a pan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317049.jpg', 'caption': 'A man snowboard down the side of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317049.jpg', 'caption': 'A person is snowboarding downhill in an area with trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317049.jpg', 'caption': 'A person riding a snowboard down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317049.jpg', 'caption': 'A person is riding down a hill in the snow on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317049.jpg', 'caption': 'a snowboarder is coming down a hill and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111825.jpg', 'caption': 'A man riding a skateboard down a hall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111825.jpg', 'caption': 'The man smiles near a crowd of people as he skateboards indoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111825.jpg', 'caption': 'A man on a skateboard in a school.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111825.jpg', 'caption': 'A man holding a can is riding a skateboard indoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111825.jpg', 'caption': 'There is a man standing on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007207.jpg', 'caption': 'A couple of people that are posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007207.jpg', 'caption': 'Four men standing against a brick wall with one of them eating from a food container, one with several carrots stuffed into him mouth and the other two standing next to them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007207.jpg', 'caption': 'Four men standing, one with an entire bunch of carrots in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007207.jpg', 'caption': 'A group of men posing together in various ways.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007207.jpg', 'caption': 'A guy points at a guy with carrots in his mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279420.jpg', 'caption': 'Child on skis with tips pointing at each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279420.jpg', 'caption': 'A little girl riding on top of skies down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279420.jpg', 'caption': 'Special ramps allow skiers to practice during the summer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279420.jpg', 'caption': 'A child on skis going down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279420.jpg', 'caption': 'A skiier skiing down a slope with their skiis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328374.jpg', 'caption': 'some kids wearing skiis while in an area with no snow\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328374.jpg', 'caption': 'Two children are sitting and one appears to be in pain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328374.jpg', 'caption': 'small children are putting on skis together in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328374.jpg', 'caption': 'A group of kids standing and sitting on the edge of an artificial ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328374.jpg', 'caption': 'A group of boys are waiting to ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042737.jpg', 'caption': 'Man doing a skate trick during a competition event with a audience. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042737.jpg', 'caption': 'A man in a white T-shirt and a helmet riding a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042737.jpg', 'caption': 'The person with a skateboard is wearing a helmet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042737.jpg', 'caption': 'A skate boarder rides his board and does a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042737.jpg', 'caption': 'A guy with a white helmet and a white shirt and jeans skate boarding', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432503.jpg', 'caption': 'A person riding a skateboard over the cement and flags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432503.jpg', 'caption': 'A skateboarder hitting a trick in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432503.jpg', 'caption': 'a man is in the air on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432503.jpg', 'caption': 'A person jumping in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432503.jpg', 'caption': 'a person that is jumping a skateboard in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413349.jpg', 'caption': 'A man that has a skateboard that is in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413349.jpg', 'caption': 'a little boy that is jumping his skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413349.jpg', 'caption': 'Boy doing a stunt on a skateboard on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413349.jpg', 'caption': 'A young man jumping a skateboard in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413349.jpg', 'caption': 'The boy is doing a jump on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285651.jpg', 'caption': 'a man is riding a skateboard in the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285651.jpg', 'caption': 'There is a man skateboarding down a street and another man watching him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285651.jpg', 'caption': 'A young man is skateboarding in the middle of the street with cars passing in both directions. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285651.jpg', 'caption': 'A man rides a skateboard on a street while his friend watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285651.jpg', 'caption': 'Black and white photograph of a man on skateboard in street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566502.jpg', 'caption': 'A white dish plated with corn, carrots, tomatoes, onions, olives, herbs and oil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566502.jpg', 'caption': 'Tortellini joins a colorful vegetable salad in this entree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566502.jpg', 'caption': 'A vegetarian meal with corn and a salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566502.jpg', 'caption': 'White pate with salad, a knife and half an ear of corn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566502.jpg', 'caption': 'A white plate holds an ear of corn and a pasta salad with vegetables and eggs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020570.jpg', 'caption': 'A person on some skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020570.jpg', 'caption': 'A man riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020570.jpg', 'caption': 'A person skiing on snow with others behind', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020570.jpg', 'caption': 'A man is skiing down a hill alone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020570.jpg', 'caption': 'A skier goes airborne while skiing downhill on a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534565.jpg', 'caption': 'A very big group of skiers on a big snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534565.jpg', 'caption': 'Professional skiers are lined up in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534565.jpg', 'caption': 'A bunch of skiers in a line in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534565.jpg', 'caption': 'A group of cross country snow skiers race across the course with a forest behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534565.jpg', 'caption': 'A group of snow skiers make their way on the path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088286.jpg', 'caption': 'a person on a skate board getting pushed by someone else ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088286.jpg', 'caption': 'A man is being pushed on a skateboard by another man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088286.jpg', 'caption': 'A man sitting on a skateboard with another man pushing him across a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088286.jpg', 'caption': 'One man is pushing another around on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088286.jpg', 'caption': 'A man is sitting on a skateboard and is being pushed by another man on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375902.jpg', 'caption': 'A woman approaches the finish line on skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375902.jpg', 'caption': 'a woman crossing a black finish line under a blue thing ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375902.jpg', 'caption': 'A woman crossing a finish line on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375902.jpg', 'caption': 'A person that is crossing a finish line in a ski competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375902.jpg', 'caption': 'The female skier has reached the finish line. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507633.jpg', 'caption': 'A man is wearing ski gear on a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507633.jpg', 'caption': 'A man travels uphill through snow on skis and with poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507633.jpg', 'caption': 'A skier travels up a slope on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507633.jpg', 'caption': 'a person on skis climbing up a slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507633.jpg', 'caption': 'A man with skis and poles walking up a snowy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526133.jpg', 'caption': 'A snowboard sits on the ground partially covered in powder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526133.jpg', 'caption': 'a snow board sits on some snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526133.jpg', 'caption': 'A snow covered snowboard sits on the snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526133.jpg', 'caption': 'A snowboard laying on snow covered ground covered in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526133.jpg', 'caption': 'A snowboard lies in the snow, partly covered by snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039009.jpg', 'caption': 'A group of people holding some hot dogs in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039009.jpg', 'caption': 'A group of people are holding corn dogs in containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039009.jpg', 'caption': 'People hold six corn dogs with various mustard designs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039009.jpg', 'caption': 'Corn dog sticks in tray held together by hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039009.jpg', 'caption': 'A group of people are showing their corndogs with designs from mustard on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170181.jpg', 'caption': 'A group of snow boarders on a snowy white hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170181.jpg', 'caption': 'A group of skiers and snowboarders watch an event in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170181.jpg', 'caption': 'Three people standing on a snow covered mountain holding their skis and snowboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170181.jpg', 'caption': 'Three people stand on a snow covered slope holding ski equipment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170181.jpg', 'caption': \"Three people standing on a snowy hill holding their ski's.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332025.jpg', 'caption': 'A woman holding a dog close to a group of people with skiing gear ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332025.jpg', 'caption': 'Some folks in the snow with a dog on a leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332025.jpg', 'caption': 'A woman has a dog on a leash while snowboarders look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332025.jpg', 'caption': 'a person holding onto a dog leash while standing on the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332025.jpg', 'caption': 'Snowboarders bring a dog on a leash onto the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407521.jpg', 'caption': 'there is a man riding a skateboard over a ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407521.jpg', 'caption': 'a person is in the air on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407521.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407521.jpg', 'caption': 'The skateboarders are watching the other person who is doing stunts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407521.jpg', 'caption': 'A guy is doing a trick on a skateboard as others watch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158924.jpg', 'caption': 'Person airborne over a skateboard as the sun is setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158924.jpg', 'caption': 'The silhouette of a man doing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158924.jpg', 'caption': 'the sun is setting as a skateboarder is doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158924.jpg', 'caption': 'A skate boarder performing a trick in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158924.jpg', 'caption': 'A skateboarder jumping during a skateboarding trick at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213455.jpg', 'caption': 'A skateboarder launches himself into the air above his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213455.jpg', 'caption': 'A skater does a trick in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213455.jpg', 'caption': 'The boy is midair and his skateboard is flipped under him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213455.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213455.jpg', 'caption': 'A man is doing tricks on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440093.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440093.jpg', 'caption': 'a person jumping a skate board in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440093.jpg', 'caption': 'Skateboarder and board in mid air at a contoured park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440093.jpg', 'caption': 'There is a man jumping in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440093.jpg', 'caption': 'A man performing a skateboard trick in a skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217329.jpg', 'caption': 'Two men in kitchen preparing hot dog buns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217329.jpg', 'caption': 'Two smiling men prepare hot dog rolls in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217329.jpg', 'caption': 'two men smiling fixing hotdogs and drinking beer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217329.jpg', 'caption': 'The men are preparing a meal in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217329.jpg', 'caption': 'Two men at a counter prepare hotdog buns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212261.jpg', 'caption': 'some people at a white counter are making food ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212261.jpg', 'caption': 'Three people in a kitchen preparing and cooking food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212261.jpg', 'caption': 'a woman standing in a kitchen while preparing food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212261.jpg', 'caption': 'Several people preparing food in a large kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212261.jpg', 'caption': 'a person standing at a counter getting some bread ready for grilled cheese sandwiches ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338552.jpg', 'caption': 'A couple of people riding snowboards down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338552.jpg', 'caption': 'a couple of people are skiing down a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338552.jpg', 'caption': 'two snow boarders racing down a snowy slope ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338552.jpg', 'caption': 'some people snowboarding down a hill by a flag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338552.jpg', 'caption': 'Two snow boarders racing on a slope during a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051376.jpg', 'caption': 'Soup, salad and sandwich sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051376.jpg', 'caption': 'a bowl of soup with a sandwich sits on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051376.jpg', 'caption': 'A meal of a salad, soup, and a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051376.jpg', 'caption': 'A white plate topped with a bowl of soup next to a sandwich and salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051376.jpg', 'caption': 'A sandwich, soup, and salad all sit on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353295.jpg', 'caption': 'Images of 3 unusually long hot dogs sticking out of their buns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353295.jpg', 'caption': 'A ripped towel or cloth with three different hot dogs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353295.jpg', 'caption': 'This piece of paper has three hot dogs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353295.jpg', 'caption': 'A picture of three deluxe hotdogs pinned up with a tack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353295.jpg', 'caption': 'A piece of paper with the images of three hot dogs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500871.jpg', 'caption': 'Clear bowl of carrots with beer in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500871.jpg', 'caption': 'The carrots in the dish are marinating in beer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500871.jpg', 'caption': 'Beer being poured in a container full of hotdogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500871.jpg', 'caption': 'A bunch of hot dogs in a bowl with beer being poured on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500871.jpg', 'caption': 'a pack of hot dogs in beer on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413358.jpg', 'caption': 'A person holding a sausage on a bun with peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413358.jpg', 'caption': 'A hot dog with peppers wrapped in tin foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413358.jpg', 'caption': 'Hot dog wrapped in aluminum foil on a wooden bench area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413358.jpg', 'caption': 'A hand holding a half eaten hotdog above a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413358.jpg', 'caption': 'A closeup view of a hotdog in a bun with condiments. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526040.jpg', 'caption': 'A person on a snowboard has fallen in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526040.jpg', 'caption': 'a man that is on a surfboard in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526040.jpg', 'caption': 'A man riding a snowboard on a snow filled slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526040.jpg', 'caption': 'He was almost sitting in the snow as he came down the run on his snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526040.jpg', 'caption': 'The snowboarder is sitting on the white slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580117.jpg', 'caption': 'Several snow skiers are posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580117.jpg', 'caption': 'A group of people are standing outside in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580117.jpg', 'caption': 'Skiers and snowboarders waving for a picture on a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580117.jpg', 'caption': 'This group of people is excited to be at the ski slopes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580117.jpg', 'caption': 'Group of people posing for the camera in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580117.jpg', 'caption': 'Group of people posing for the camera in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258330.jpg', 'caption': 'A man is jumping on a ski board across some snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258330.jpg', 'caption': 'A person on a snowboard on a snowy path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258330.jpg', 'caption': 'A snowboarder speeds down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258330.jpg', 'caption': 'A man on a snowboard going down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258330.jpg', 'caption': 'A male snowboarder jumping over a small hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166124.jpg', 'caption': 'Five bagels laid out on a oven rack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166124.jpg', 'caption': 'five bagels are sitting on a silver tray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166124.jpg', 'caption': 'Five bagels are on a metal rack. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166124.jpg', 'caption': 'Those bagels are plain with nothing on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166124.jpg', 'caption': 'A photo of freshly baked bagels sitting on a rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294698.jpg', 'caption': 'A girl holding a foot long hot dog in a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294698.jpg', 'caption': 'A girl with a large long sandwich in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294698.jpg', 'caption': 'The girl is about to eat her extra-long hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294698.jpg', 'caption': 'A young lady is holding a foot-long and posing for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294698.jpg', 'caption': 'The young girl orders a sandwich that is really big. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298586.jpg', 'caption': 'a boy that is snowboarding through the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298586.jpg', 'caption': 'The man is doing tricks on his snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298586.jpg', 'caption': 'A snowboarder doing a trick down a snowy street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298586.jpg', 'caption': 'Black and white photograph of person on snowboard in street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298586.jpg', 'caption': 'a person snowboarding down part of a residential street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173375.jpg', 'caption': 'A man riding a snowboard down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173375.jpg', 'caption': 'a man is snowboarding down the slopes wearing a helmet\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173375.jpg', 'caption': 'A man on a snowboard on a slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173375.jpg', 'caption': 'A male snowboarder slides down a snowy slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173375.jpg', 'caption': 'A man on a snowboard going down a mountain slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025467.jpg', 'caption': 'A person sitting on a sled at the top of a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025467.jpg', 'caption': 'A snowboarder sits atop the snowy hill and looks down upon the winter landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025467.jpg', 'caption': 'A man sitting on the snow on top of a board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025467.jpg', 'caption': 'The individual is sitting on the snow covered hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025467.jpg', 'caption': 'A person in a blue coat sits on top of a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223033.jpg', 'caption': 'Two hot dogs on buns sitting on top of a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223033.jpg', 'caption': 'A plate with two hot dogs on buns and a bagel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223033.jpg', 'caption': 'Two hot dogs have been placed next to two bagels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223033.jpg', 'caption': 'A plate full of two hot dogs with different toppings, and a bagel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223033.jpg', 'caption': 'A plate of hot dogs and other food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301029.jpg', 'caption': 'Two cups on a table and a man seated next to the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301029.jpg', 'caption': 'The cruller is on the paper, served with Dunkin Donut coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301029.jpg', 'caption': 'a donut on wrapping paper next to a cup of coffee on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301029.jpg', 'caption': 'A person sitting at a table with two cups and a donut on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301029.jpg', 'caption': 'a cup of coffee next to a donut on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455946.jpg', 'caption': 'A glazed donut sitting on top of a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455946.jpg', 'caption': 'A plain donut on a white paper inside a white container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455946.jpg', 'caption': 'A person holding a glazed donut outside while pointing at it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455946.jpg', 'caption': 'A woman is holding a donut on a napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455946.jpg', 'caption': 'A person holding a tray with a doughnut in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460931.jpg', 'caption': 'A display case in a donut shop filled with donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460931.jpg', 'caption': 'a lot of donuts for sale sitting in a display case ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460931.jpg', 'caption': 'Various varieties of donuts in a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460931.jpg', 'caption': 'Donuts being displayed in store for people to take.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460931.jpg', 'caption': 'An assortment of doughnuts all lined up in a case at a doughnut shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278801.jpg', 'caption': 'A man fallen on the ground while riding a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278801.jpg', 'caption': 'A person waving and snowboarding at the same time', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278801.jpg', 'caption': 'A female snowboarder waves as she sits in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278801.jpg', 'caption': 'A snowboarder is sitting on the snowy ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278801.jpg', 'caption': 'A snowboarder rests on a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307768.jpg', 'caption': 'Pair of snowboarders resting and checking map on snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307768.jpg', 'caption': 'One snowboarder reads a map while two others rest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307768.jpg', 'caption': 'A man wearing a helmet and goggles on a snowboard reads a map while another snowboarder sits behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307768.jpg', 'caption': 'There are two snowboarders one of them is sitting on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307768.jpg', 'caption': 'Two people are pausing for a moment on the slopes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223569.jpg', 'caption': 'A man flying through the air while riding a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223569.jpg', 'caption': 'Person flies off snow covered mountain ledge on snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223569.jpg', 'caption': 'A person jumping in the air with a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223569.jpg', 'caption': 'A snow boarder taking flight while skiing down a slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223569.jpg', 'caption': 'A skier is high in the air in the winter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193968.jpg', 'caption': 'One lady is holding a stuffed rooster and smiling while the other is holding a donut in front of her open mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193968.jpg', 'caption': 'A woman smiles with a plant holder while another eats a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193968.jpg', 'caption': 'There are two women making a joke about chickens and doughnuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193968.jpg', 'caption': 'Two woman, one holding a chicken and one eating a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193968.jpg', 'caption': 'A couple of women holding a chicken while eating a donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216050.jpg', 'caption': 'a person leaning back in the snow on their snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216050.jpg', 'caption': 'A snowboarder rests in the snow on the snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216050.jpg', 'caption': 'A person laying back on a snowboard in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216050.jpg', 'caption': 'A man is relaxing back on his snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216050.jpg', 'caption': 'A snowboarder on the slope laying on his board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445695.jpg', 'caption': 'A hand holding a jelly filled donut over a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445695.jpg', 'caption': 'Someone holding a doughnut that has a bite taken out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445695.jpg', 'caption': 'A chocolate cream filled doughnut with a bite taken out of it .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445695.jpg', 'caption': 'The powder donut is filled chocolate cream and is about to be eaten. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445695.jpg', 'caption': 'Someone is holding a round filled bun in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469982.jpg', 'caption': 'a little boy eating a chocolate doughnut with sprinkles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469982.jpg', 'caption': 'A young boy eating a chocolate doughnut with sprinkles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469982.jpg', 'caption': 'a small boy in a blue and orange sweatshirt eating a donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469982.jpg', 'caption': 'A kid biting into a doughnut in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469982.jpg', 'caption': 'A small boy eating a chocolate donut with sprinkles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067959.jpg', 'caption': 'Box of donuts glazed in different types of toppings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067959.jpg', 'caption': 'One of the donuts in the box has cereal on it, another has oreos, another is partially sprinkled, and another one has chocolate glazed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067959.jpg', 'caption': 'Four donuts in a box with different toppings on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067959.jpg', 'caption': 'A bunch of doughnuts in a box together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067959.jpg', 'caption': 'A box filled with four donuts on top of tissue paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099481.jpg', 'caption': 'A baby boy sitting at a wooden table in front of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099481.jpg', 'caption': 'A little boy at a table with a doughnut on a plate in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099481.jpg', 'caption': 'A young boy frowning at eating a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099481.jpg', 'caption': 'A toddler sitting at a table with a donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099481.jpg', 'caption': 'A boy is halfway through a glazed doughnut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549683.jpg', 'caption': 'A man trying to snowboard in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549683.jpg', 'caption': 'Snowboarder in red and white jacket standing on snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549683.jpg', 'caption': 'A man in the snow on a snow board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549683.jpg', 'caption': 'a man is snow boarding down a hill at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549683.jpg', 'caption': 'The man is practicing his moves on his snowboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195697.jpg', 'caption': 'A person riding a snowboard down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195697.jpg', 'caption': 'A man riding a snowboard down the side of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195697.jpg', 'caption': 'A person in grey and tan jacket riding a snowboard on slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195697.jpg', 'caption': 'a snow boarder skiing down a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195697.jpg', 'caption': 'a young male snowboarding down a snowy hill near evergreen trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226076.jpg', 'caption': 'There is a chicken burger next to a bowl of soup on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226076.jpg', 'caption': 'A close up of a chicken sandwich and a bowl of soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226076.jpg', 'caption': 'Sandwich item with bowl of soup presented on plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226076.jpg', 'caption': 'A hamburger sits on a table beside a bowl of soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226076.jpg', 'caption': 'A plate with a bowl of soup and a sandwhich on the plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003001.jpg', 'caption': 'A table topped with donuts and a small box of even more donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003001.jpg', 'caption': 'Various pastries on napkins that include donuts and donut holes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003001.jpg', 'caption': 'A selection of doughnuts and pastry sitting on waxed sheets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003001.jpg', 'caption': 'A table is laid out with several different doughnuts and pastries. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003001.jpg', 'caption': 'A table with a wide variety of donuts sitting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493004.jpg', 'caption': 'A person in snow gear riding on a snowboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493004.jpg', 'caption': 'A young person is on their ski board on the snowy ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493004.jpg', 'caption': 'A person on a snowboard rides on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493004.jpg', 'caption': 'a snowboarder in a tan jacket and a backpack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493004.jpg', 'caption': 'A man is snowboarding down the hill on a snowy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372233.jpg', 'caption': 'A person is doing something by itself and interesting.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372233.jpg', 'caption': 'A woman with a bun on a plate on top of some food in a bucket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372233.jpg', 'caption': 'a person with a sandwich on a plate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372233.jpg', 'caption': 'a woman preparing food on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372233.jpg', 'caption': ' Woman preparing a hamburger and other food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197499.jpg', 'caption': 'A white doughnut with colored sprinkles sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197499.jpg', 'caption': 'a bag and a donut with white frosting and sprinkles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197499.jpg', 'caption': 'A sprinkled doughnut sitting on a white napkin next to the bag it came in. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197499.jpg', 'caption': 'A doughnut bag with a sprinkle doughnut next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197499.jpg', 'caption': 'A yummy looking do nut next to the bag it came out of ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539787.jpg', 'caption': 'a man and his baby are looking at some donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539787.jpg', 'caption': 'A father holding his baby in front of a box of donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539787.jpg', 'caption': 'A man and a baby looking at donuts with high enthusiasm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539787.jpg', 'caption': 'a man looking at assorted donuts as his baby looks into the camera ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539787.jpg', 'caption': 'A man holding an infant in front of an open box of assorted donuts. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105951.jpg', 'caption': 'A hand holding a piece of meat filled pastry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105951.jpg', 'caption': 'A person holding up some sort of food item.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105951.jpg', 'caption': 'A man eating a pastry with frosting on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105951.jpg', 'caption': 'A man holding some type of fried food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105951.jpg', 'caption': 'Someone eating what looks like a jelly roll.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220111.jpg', 'caption': 'a buncch of food is laying out on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220111.jpg', 'caption': 'A dinner table with various plates of food and a glass of water on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220111.jpg', 'caption': 'Plates with sandwiches, vegetables, and pizza on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220111.jpg', 'caption': 'A white plate topped with food next to other plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220111.jpg', 'caption': 'There are plates with food and drinks on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488832.jpg', 'caption': 'A large sandwich sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488832.jpg', 'caption': 'A long sandwich with tomatoes and cheese on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488832.jpg', 'caption': 'A sub sandwich on a plate on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488832.jpg', 'caption': 'There is a sandwich with mozzarella and tomatoes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488832.jpg', 'caption': 'an image of a sub sandwich with meat and veggies on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206878.jpg', 'caption': 'A powdered and glazed donut laid out to be eaten', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206878.jpg', 'caption': 'Three sugar coated donuts on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206878.jpg', 'caption': 'Three doughnuts covered in powdered sugar on a cooling rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206878.jpg', 'caption': 'a close up view of three doughnuts sprinkled with sugar', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206878.jpg', 'caption': 'Three doughnuts are set on a metal rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184746.jpg', 'caption': 'A person and a table of sandwiches and other food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184746.jpg', 'caption': 'A photo of a person sitting at a table getting ready to eat a delicious meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184746.jpg', 'caption': 'A person is eating bread with a fork on a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184746.jpg', 'caption': 'Food entrees are served in dishes on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184746.jpg', 'caption': 'The way that they are holding the fork is quite peculiar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261426.jpg', 'caption': 'A black square plate topped with a cut in half chicken sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261426.jpg', 'caption': 'THERE IS A SANDWICH WITH MEAT AND LETTUCE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261426.jpg', 'caption': 'A sandwich sits on a plate on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261426.jpg', 'caption': 'Several sandwiches are on a black square plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261426.jpg', 'caption': 'A sandwich is sitting on a black plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161060.jpg', 'caption': 'a bunch of donuts placed around some photos', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161060.jpg', 'caption': 'A couple of Polaroid pictures sticking out of sandwiches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161060.jpg', 'caption': 'a bunch of doughnuts with some pictures over them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161060.jpg', 'caption': 'There are many doughnuts on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161060.jpg', 'caption': 'Two polaroids sit in the middle of stacks of donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490366.jpg', 'caption': 'A surfer sits on his surfboard in the sand close to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490366.jpg', 'caption': 'Near the surf, a man sits hunched over on his board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490366.jpg', 'caption': 'A person sitting on a surfboard on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490366.jpg', 'caption': 'A man sitting on his surfboard on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490366.jpg', 'caption': 'A young man is sitting on his surf board next to the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516893.jpg', 'caption': 'Group of men all playing a soccer match together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516893.jpg', 'caption': 'A group of young men playing a game of soccer on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516893.jpg', 'caption': 'Soccer players fight over a ball while many look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516893.jpg', 'caption': 'Soccer players are fighting for a tight possession.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516893.jpg', 'caption': 'Men are playing soccer while a crowd watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237463.jpg', 'caption': 'The person is holding one of two surfboards on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237463.jpg', 'caption': 'A man that is standing in the sand with a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237463.jpg', 'caption': 'A person holding a surfboard on a beach leaning to look at a second surfboard on the sand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237463.jpg', 'caption': 'A surfer putting his surfboard down on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237463.jpg', 'caption': 'A person with two surfboards on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207366.jpg', 'caption': 'Two young men playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207366.jpg', 'caption': 'Two young men competing in a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207366.jpg', 'caption': 'two soccer players go after a ball during a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207366.jpg', 'caption': 'Two soccer players entangled with one another as they go for the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207366.jpg', 'caption': 'Two soccer players are in action on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205134.jpg', 'caption': 'A slicing up a cake on top of a table with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205134.jpg', 'caption': 'a man in a suit cutting a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205134.jpg', 'caption': 'A man in a hat cutting into a birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205134.jpg', 'caption': 'An older man is cutting the cake while others watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205134.jpg', 'caption': 'a man is cutting in to a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183715.jpg', 'caption': 'A frosted cake that reads \"congratulations kate and luke on your upcoming arrival.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183715.jpg', 'caption': 'A cake is shown with text on it and decorations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183715.jpg', 'caption': 'a cake for a couple having a baby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183715.jpg', 'caption': 'The icing on the large cake has cursive writing on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183715.jpg', 'caption': 'Decorated cake in rainbow colors congratulating a baby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429985.jpg', 'caption': 'a female sitting at a table next to a cake with candles in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429985.jpg', 'caption': 'A woman is smiling at a cake with candles on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429985.jpg', 'caption': 'Various torsos show that there are people behind and to the side of a woman that is smiling and seated in front of a plate with a white lettered cake on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429985.jpg', 'caption': 'there is a woman smiling at a table with a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429985.jpg', 'caption': 'A woman with red hair sits at a table in front of a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340642.jpg', 'caption': 'a brown cake with white icing and some walnut toppings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340642.jpg', 'caption': 'Icing with nuts on top of a cake . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340642.jpg', 'caption': 'Corner of a layer cake with frosting and walnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340642.jpg', 'caption': 'A frosted large cake on a table surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340642.jpg', 'caption': 'Walnut icing on a baked cake - maybe carrot cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511066.jpg', 'caption': 'A woman standing in front of a door with a broken surf board next to her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511066.jpg', 'caption': 'a woman stands in front of a door next to a surf board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511066.jpg', 'caption': 'A woman in gray shorts bows her head and rests her chin on her hand next to the broken remains of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511066.jpg', 'caption': 'A woman standing on a door mat next to a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511066.jpg', 'caption': 'A woman standing in front of an open door next to a board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147154.jpg', 'caption': 'a man wearing an apron in front of a table filled with ingredients', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147154.jpg', 'caption': 'A man in an apron around several differnt plates and bowls of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147154.jpg', 'caption': 'This is a picture of two people who have cooked some delicious dishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147154.jpg', 'caption': 'A man in red apron preparing food at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147154.jpg', 'caption': 'A man and a lady cooking on set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154148.jpg', 'caption': 'A man standing in the ocean while holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154148.jpg', 'caption': 'A young man standing with his surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154148.jpg', 'caption': 'The surfer is carrying the surfboard back to shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154148.jpg', 'caption': 'A young man is in the ocean with a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154148.jpg', 'caption': 'A surfer standing in the ocean holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452866.jpg', 'caption': 'A man and woman cut their special cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452866.jpg', 'caption': 'A man and woman cutting a cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452866.jpg', 'caption': 'A man and a woman holding a knife cutting a cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452866.jpg', 'caption': 'A man and woman are cutting a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452866.jpg', 'caption': 'a man and a woman are cutting into a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039860.jpg', 'caption': 'Surfer in green suit riding breaking wave in open ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039860.jpg', 'caption': 'A surfer in a green wetsuit cresting a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039860.jpg', 'caption': 'A person on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039860.jpg', 'caption': 'a man on a white surfboard surfing a wave in the ocean ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039860.jpg', 'caption': 'A young man in a green outfit ridding a surfboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459721.jpg', 'caption': 'a newly wedded couple cutting their wedding cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459721.jpg', 'caption': 'A couple with a knife cutting into a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459721.jpg', 'caption': 'a just married couple slicing a wedding cake together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459721.jpg', 'caption': 'A bride and groom cutting into their wedding cake together,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459721.jpg', 'caption': 'Bride and Groom shown attempting to cut their cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363577.jpg', 'caption': 'A young girl who is looking at a birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363577.jpg', 'caption': 'A girl sitting at a table with a birthday cake with candles sitting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363577.jpg', 'caption': 'A little girl sitting at a table with a cake in front of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363577.jpg', 'caption': 'A girl looking at a cake with excitement at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363577.jpg', 'caption': 'a young person siting at a table with a cake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039963.jpg', 'caption': 'A bedroom contains a bed, a table with a computer, and speakers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039963.jpg', 'caption': 'A room with speakers, a monitor, headphones, blinds and a bed in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039963.jpg', 'caption': 'A room with a bed, some curtains, a shelf and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039963.jpg', 'caption': 'a bed room with a monitor and speakers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039963.jpg', 'caption': 'A bedroom with a stereo system and several mounted speakers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391915.jpg', 'caption': 'a room in a hotel with two beds a desk and a shutter door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391915.jpg', 'caption': 'A pleasant bedroom with the door open to invite the beautiful day inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391915.jpg', 'caption': 'Two beds in a room that has a balcony.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391915.jpg', 'caption': 'A bedroom with joined beds in a lodge or hotel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391915.jpg', 'caption': 'A bedroom with two beds, a small desk, and a door open to a patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447663.jpg', 'caption': 'A man surfing on a blue green wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447663.jpg', 'caption': 'A man surfing during the day in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447663.jpg', 'caption': 'A man surfs and plays in the foamy ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447663.jpg', 'caption': 'A shirtless man in the ocean surfing a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447663.jpg', 'caption': 'A man rides a small foamy wave on his surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374641.jpg', 'caption': 'A snowy landscape through a sunny window with a bed in the foreground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374641.jpg', 'caption': 'A white bed in front of a window that shows a snowy yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374641.jpg', 'caption': 'The edge of a bed and a window showing a snowy area outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374641.jpg', 'caption': 'A bed is shown next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374641.jpg', 'caption': 'A window in a bedroom sitting beside a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372464.jpg', 'caption': 'a boy that is surfing in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372464.jpg', 'caption': 'A person on a surfboard riding in the water and waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372464.jpg', 'caption': 'A man that is standing on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372464.jpg', 'caption': 'A boy on a surf board ducks under a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372464.jpg', 'caption': 'The young surfboarder maintains his balance as the wave breaks around him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001856.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001856.jpg', 'caption': 'A man in a wetsuit riding a wave on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001856.jpg', 'caption': 'The surfer demonstrates skill in tackling this breaking wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001856.jpg', 'caption': 'A person surfing on a wave with the front end of the surfboard pointing up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001856.jpg', 'caption': 'a man surfing on top of a wave in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483723.jpg', 'caption': 'A guy laying in a hammock with another guy beside him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483723.jpg', 'caption': 'A man rests in a hammock while another man sits nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483723.jpg', 'caption': 'A couple of surfboards sitting in the beach sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483723.jpg', 'caption': 'One of the men is lying in a hammock near surfboards leaning in the sand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483723.jpg', 'caption': 'a couple of surfboards that are stuck in the sand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251794.jpg', 'caption': 'a child blowing the candles out on a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251794.jpg', 'caption': 'Some candles are burning on top of a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251794.jpg', 'caption': 'A girl blowing out candles that are on a birthday cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251794.jpg', 'caption': 'a child is blowing out the candles on the cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251794.jpg', 'caption': 'A girl is blowing out some candles on a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503424.jpg', 'caption': 'Vibrant cake displays in a glass case to view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503424.jpg', 'caption': 'A display case that has an assortment of cakes in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503424.jpg', 'caption': 'Many elaborate and colorful pastries with labels sit on shelves of a display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503424.jpg', 'caption': 'This display includes a large variety of desserts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503424.jpg', 'caption': 'Several cakes and pastries sitting in a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162156.jpg', 'caption': 'A narrow white room with a white mattress on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162156.jpg', 'caption': \"It's a high-tech master bed and bath at a hotel.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162156.jpg', 'caption': 'A bedroom and bathroom with various furniture and a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162156.jpg', 'caption': 'A room where all of the furniture is white except for a red chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162156.jpg', 'caption': 'A room with a large white bed and a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248300.jpg', 'caption': 'A man standing next to a girl eating a piece of cake.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000335473.jpg', 'caption': 'a microwave and a old tv out by the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335473.jpg', 'caption': 'A microwave and a television sitting on the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335473.jpg', 'caption': 'A white microwave oven sitting next to a TV on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202797.jpg', 'caption': 'A faux fire place that has yet to be fully assembled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202797.jpg', 'caption': 'A room with chairs and a clock and a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202797.jpg', 'caption': 'A woodworking project in the middle of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202797.jpg', 'caption': 'A desk is displayed in a living room with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202797.jpg', 'caption': 'There is a wooden fireplace being built in this room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378204.jpg', 'caption': 'A woman in a blue tank top holding a smart phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378204.jpg', 'caption': 'A woman is sitting crossed leg on a deck with her phone in hand ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378204.jpg', 'caption': 'Young woman in green shirt sitting down looking at her phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378204.jpg', 'caption': 'A young woman sits crossed legged on a brick wall while typing on her smartphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378204.jpg', 'caption': 'Young lady sitting cross-legged on a wall texting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375143.jpg', 'caption': 'a women that is sitting on a brick wall with a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375143.jpg', 'caption': 'A young girl sitting on the sidewalk using her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375143.jpg', 'caption': 'A woman sitting on top of a brick wall looking at a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375143.jpg', 'caption': 'A woman sitting on a brick wall using a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375143.jpg', 'caption': 'there is a woman that is sitting and using her phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568587.jpg', 'caption': 'A woman on a cell phone standing on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568587.jpg', 'caption': 'A girl with a backpack texting on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568587.jpg', 'caption': 'A woman holding a smart device in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568587.jpg', 'caption': 'A young woman checks here cell phone on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568587.jpg', 'caption': 'a girl wearing a back pack using her cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428718.jpg', 'caption': 'A beautiful young lady sitting on a cement block in front of a gray car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428718.jpg', 'caption': 'A woman sitting on a ledge, talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428718.jpg', 'caption': 'A girl is talking on the phone in public\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428718.jpg', 'caption': 'A person that is on her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428718.jpg', 'caption': 'A woman sitting on a ledge talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164250.jpg', 'caption': 'Some shirtless guys hanging around near each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164250.jpg', 'caption': 'three men wearing no shirts standing around, one looking at his phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164250.jpg', 'caption': 'Three shirtless men standing near each other with palm trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164250.jpg', 'caption': 'few guys hanging out together on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164250.jpg', 'caption': 'a group of men stand by some booths selling some items ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431746.jpg', 'caption': 'A man holding up a smart phone wih a yellow banana case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431746.jpg', 'caption': 'A man smiles and holds a phone in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431746.jpg', 'caption': 'There is a flip phone in a banana shaped case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431746.jpg', 'caption': 'A smiling man holding an open flip style cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431746.jpg', 'caption': 'a close up of a person holding a cell phone with a banana case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239229.jpg', 'caption': 'a girl with glasses standing in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239229.jpg', 'caption': 'A pretty young lady wearing black glasses in front of a tiled wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239229.jpg', 'caption': 'a smiling white female with black rimmed glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239229.jpg', 'caption': 'A girl with big black rimmed glasses grinning at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239229.jpg', 'caption': 'A smiling woman with glasses in a pantry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468751.jpg', 'caption': 'A woman on a cell phone on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468751.jpg', 'caption': 'Woman in a dress and boots talk on her cell phone while walking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468751.jpg', 'caption': 'Person walking while talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468751.jpg', 'caption': 'A woman walking down a street in a short dress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468751.jpg', 'caption': 'a woman walking down the road while talking on her cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525702.jpg', 'caption': 'A woman sitting talking on a phone next to a flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525702.jpg', 'caption': 'A woman is on the phone next to a flag and a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525702.jpg', 'caption': 'A woman on a cell phone by an American Flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525702.jpg', 'caption': 'A young woman sitting in a chair using a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525702.jpg', 'caption': 'A woman sitting down talking on a phone and writing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134366.jpg', 'caption': 'A young man is using his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134366.jpg', 'caption': 'A guy pushes buttons on his cell phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134366.jpg', 'caption': 'Man of person wearing blue jeans pressing buttons on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134366.jpg', 'caption': \"A person's hand touching keys on a cell phone.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134366.jpg', 'caption': 'A person wearing blue jeans holding a cellphone near their leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522637.jpg', 'caption': 'A man leaning on a brick wall talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522637.jpg', 'caption': 'A man that is leaning against a wall with a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522637.jpg', 'caption': 'A man leaning up against a brick wall while talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522637.jpg', 'caption': 'A boy leaning against a brick wall and talking on his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522637.jpg', 'caption': 'A man on a cell phone leans against a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260695.jpg', 'caption': 'A man who is looking at his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260695.jpg', 'caption': 'A man that is holding a cellphone in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260695.jpg', 'caption': 'A man looks at a cell phone in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260695.jpg', 'caption': 'A young man looks at his cell phone while at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260695.jpg', 'caption': 'A man holding up a smart phone in his right hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104320.jpg', 'caption': 'A close up of a blackberry cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104320.jpg', 'caption': 'A closeup of a smartphone resting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104320.jpg', 'caption': 'A close-up of a phone with a QWERTY keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104320.jpg', 'caption': 'A smart phone device sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104320.jpg', 'caption': 'A BlackBerry like phone is shown, which is black in color.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104320.jpg', 'caption': 'Cell phone lying flat with a tiny tray for \"jumpers\" siting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408578.jpg', 'caption': 'Closeup of a cellphone with a keyboard and a computer keyboard in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408578.jpg', 'caption': 'a close up picture of a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408578.jpg', 'caption': 'An open laptop computer on a table displaying the keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408578.jpg', 'caption': 'A close up shot of a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408578.jpg', 'caption': 'a close up of a phone sitting on some keys ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367313.jpg', 'caption': 'Closeup of a hand holding a black cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367313.jpg', 'caption': 'A person holding up a cell phone displaying menu of icons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367313.jpg', 'caption': 'a person is shown holding on to a phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367313.jpg', 'caption': 'A samsung cell phone being held in a a hand with a missed alerts message on the screen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367313.jpg', 'caption': 'There is a phone showing missed alerts on the screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099581.jpg', 'caption': 'A hand holding a remote control in the palm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099581.jpg', 'caption': 'A hand holds a small, black remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099581.jpg', 'caption': 'someone is holding in their hands a very old mp3 player', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099581.jpg', 'caption': 'a close up of a person holding an electronic device', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099581.jpg', 'caption': 'A GPS made by Samsung being used by a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127801.jpg', 'caption': 'A hand holding a smartphone with a small screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127801.jpg', 'caption': 'A man holding his Sprint cell phone with the words Upstage across the screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127801.jpg', 'caption': 'A person holding a cell phone in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127801.jpg', 'caption': 'A Caucasian hand holding a black cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127801.jpg', 'caption': 'An all black sprint cell phone with a camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368367.jpg', 'caption': 'A smiling girl is talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368367.jpg', 'caption': 'A woman is on the phone on a porch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368367.jpg', 'caption': 'a woman talks on a phone in front of a slide out glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368367.jpg', 'caption': 'a woman talks on her cell phone next to glass doors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368367.jpg', 'caption': 'A girl sitting outside talking on her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031878.jpg', 'caption': 'A group of different appliances sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031878.jpg', 'caption': 'This is a picture if a kitchen with a small fridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031878.jpg', 'caption': 'A makeshift kitchen including a mini-fridge, microwave, and coffee brewer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031878.jpg', 'caption': 'a refrigerator, microwave and coffee maker in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031878.jpg', 'caption': 'a black microwave on a white box in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250210.jpg', 'caption': 'A crock pot on top of a microwave on top of a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250210.jpg', 'caption': 'A crock pot and a microwave sitting on a fridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250210.jpg', 'caption': 'a close up of a microwave on an appliance ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250210.jpg', 'caption': \"There's a crock pot on the top of that MicroWave.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250210.jpg', 'caption': 'A crockpot sitting on top of a microwave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025758.jpg', 'caption': 'A lady holding a pan with a big turkey in an open oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025758.jpg', 'caption': 'A woman is taking the cooked turkey out of the oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025758.jpg', 'caption': 'Woman pulling large roaster with roast chicken in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025758.jpg', 'caption': 'A woman is taking a turkey out of the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025758.jpg', 'caption': 'Woman removing a roast turkey and stuffing from a home oven,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255842.jpg', 'caption': 'A refrigerator in a kitchen next to cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255842.jpg', 'caption': 'A kitchen wooden cabinet next to a white fridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255842.jpg', 'caption': 'A white refrigerator has black writing on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255842.jpg', 'caption': 'Two tiny stuffed decorations and a cereal box and storage container sit atop a refrigerator, close to a hand-scrawled message on the door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255842.jpg', 'caption': 'A kitchen with wooden cabinets and a white refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328354.jpg', 'caption': 'A dilapidated room with a plaster chunked floor is equipped with debris ridden chairs and a tiny vintage refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328354.jpg', 'caption': 'Two chairs and a refrigerator are in a room with crumbling walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328354.jpg', 'caption': 'An open refrigerator in a home in disrepair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328354.jpg', 'caption': 'Abandoned building interior with open refrigerator and two chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328354.jpg', 'caption': 'An old cement house has two dusty looking chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015725.jpg', 'caption': 'A woman sitting in front of a white refrigerator freezer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015725.jpg', 'caption': 'the woman is sitting on the floor touching the fridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015725.jpg', 'caption': 'A woman in a red sweatshirt sitting on the floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015725.jpg', 'caption': 'A woman in a red shirt sits on the floor arranging magnets on a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015725.jpg', 'caption': 'A young lady reading the writing on a refrigerator door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334073.jpg', 'caption': 'A tall maroon clock in the middle of park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334073.jpg', 'caption': 'A pole with a clock on top in the middle of a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334073.jpg', 'caption': 'A clock on a pedestal at the entrance to a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334073.jpg', 'caption': 'A clock tower with Roman numerals is on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334073.jpg', 'caption': 'The red clock is in the center of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256301.jpg', 'caption': 'A person stands on a public market sign while others look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256301.jpg', 'caption': 'A woman in black stands up near a group of large, red letters and a large clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256301.jpg', 'caption': 'A person is posed up high on a neon sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256301.jpg', 'caption': 'A large red neon sign with a circular red clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256301.jpg', 'caption': 'A woman is posing for a picture in a large neon sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084410.jpg', 'caption': 'an odd looking blender with three serving glasses ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084410.jpg', 'caption': 'The vase is on display in the museum.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084410.jpg', 'caption': 'A drink maker sitting on a silver counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084410.jpg', 'caption': 'A blender on display next to some small glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084410.jpg', 'caption': 'A blender sitting next to a counter near a plaque.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354041.jpg', 'caption': 'There is a blender with a green mixture in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354041.jpg', 'caption': 'A green substance is in an electric blender.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354041.jpg', 'caption': 'This is a top view of a blender with a green liquid in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354041.jpg', 'caption': 'A glass pitcher on a blender filled with green liquid.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354041.jpg', 'caption': 'A blender with a green liquid in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279103.jpg', 'caption': 'A blender has some sort of liquid inside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279103.jpg', 'caption': 'The blender is full pink stuff with dots of black in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279103.jpg', 'caption': 'A blender containing a pink smoothie, resting on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279103.jpg', 'caption': 'A glass blender filled with pink goo in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279103.jpg', 'caption': 'a purple smoothie inside of a blender bleneded', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131920.jpg', 'caption': 'A kitchen counter with a blender of ground gingersnaps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131920.jpg', 'caption': 'A blender with a mixture in it sitting on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131920.jpg', 'caption': 'a cluttered counter with a blender and a toaster ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131920.jpg', 'caption': 'an electronic blender on a counter near a toaster', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131920.jpg', 'caption': 'A blender on a counter next to a cup, cookies and a soda. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565198.jpg', 'caption': 'A little girl holding a blow dryer next to her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565198.jpg', 'caption': 'A little kid gets help using a hair dryer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565198.jpg', 'caption': 'Small child in blue shirt holds up blowdryer in hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565198.jpg', 'caption': 'An adult helps a young child hold a hair dryer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565198.jpg', 'caption': 'A little girl is blow drying her hair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043073.jpg', 'caption': 'A young boy wearing a blue shirt standing next to a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043073.jpg', 'caption': 'An adult using a hair dryer on a child', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043073.jpg', 'caption': 'Woman using a blow dryer on a distracted child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043073.jpg', 'caption': 'a little girl getting her hair dry with a blow dryer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043073.jpg', 'caption': 'a child with long wet hair has his hair blow dried', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080834.jpg', 'caption': 'A woman sitting in a living room in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080834.jpg', 'caption': 'a woman sitting on the bed while she brushes her hair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080834.jpg', 'caption': 'A woman on a bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080834.jpg', 'caption': 'The woman is playing with her hair while on the sofa bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080834.jpg', 'caption': 'A woman sitting on a pullout couch combing her hair with her fingers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577160.jpg', 'caption': 'A lovely dinner and a bottle of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577160.jpg', 'caption': 'A table with a bottle of wine and a plate of food including a sweet potato and pineapple salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577160.jpg', 'caption': 'A very fancy looking dish of food on a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577160.jpg', 'caption': 'A sandwich with various toppings next to a sweet potato.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577160.jpg', 'caption': 'a couple of big slabs of meat with foot on top of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278365.jpg', 'caption': 'Lady with a slice of piece in front of a stack of pizza boxes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278365.jpg', 'caption': 'Friends eating takeout pizza on the back deck at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278365.jpg', 'caption': 'a woman eating pizza on a plate watching some one or something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278365.jpg', 'caption': 'A woman in a blue sweatshirt reaching for a slice of pizza/', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278365.jpg', 'caption': 'A man and a woman sit at a table, the woman has a plate of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547493.jpg', 'caption': 'A white plate topped with different types of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547493.jpg', 'caption': 'Plate with five different appetizers on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547493.jpg', 'caption': 'A plate of faux sushi sits on a restaurant table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547493.jpg', 'caption': 'A combination of creamy, fish and bean foreign food is on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547493.jpg', 'caption': 'A plate with a variety of breads that are topped, a vegetable puree, and a creamy salad of peas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373810.jpg', 'caption': 'Two teddy bears that are hanging on a line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373810.jpg', 'caption': 'this is stuffed teddy bears sitting in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373810.jpg', 'caption': 'two little teddy bears attached to a clothes line with clothes pins ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373810.jpg', 'caption': 'Pair of colorful stuffed bears hanging on line in backyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373810.jpg', 'caption': 'Two teddy bears are hung by an ear on a clothesline', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159842.jpg', 'caption': 'A smiling little girl hugging a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159842.jpg', 'caption': 'A child smiling as they hold a teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159842.jpg', 'caption': 'Smiling girl in pigtails hugging a stuffed bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159842.jpg', 'caption': 'a close up of a kid holding a studded animal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159842.jpg', 'caption': 'A young girl holds a teddy bear in front of the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009262.jpg', 'caption': 'A cart of finger foods including sandwiches with a group of teddy bears around the plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009262.jpg', 'caption': 'a number of stuffed animals near many plates of pastries ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009262.jpg', 'caption': 'A group of teddy bears on a cart loaded with food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009262.jpg', 'caption': 'The teddy bears are posed as if they are eating. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009262.jpg', 'caption': 'A display of teddy bears and sugary snacks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185698.jpg', 'caption': 'Teddy bears are on a table with pieces of cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185698.jpg', 'caption': 'A table topped with platters filled with cake and food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185698.jpg', 'caption': 'a bunch of cupcakes and pieces of cake, on a table with three stuffed bears', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185698.jpg', 'caption': 'Four stuffed bears are seated next to a selection of pastries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185698.jpg', 'caption': 'Teddy bears having a picnic of lamingtons and cup cakes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468203.jpg', 'caption': 'A table with teddy bears, sandwiches and other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468203.jpg', 'caption': 'A group of three bears sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468203.jpg', 'caption': 'a number of stuffed animals sitting near pastries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468203.jpg', 'caption': 'A table containing an arrangement of teddy bears, a teddy bear book and some desserts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468203.jpg', 'caption': 'Stuffed teddy bears looking over variety of desert treats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011712.jpg', 'caption': 'A clock that reads 9:11 is sitting against the wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011712.jpg', 'caption': 'A clock that is on the wall next to a curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011712.jpg', 'caption': 'a corner of a room with a clock up against the ceiling edge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011712.jpg', 'caption': 'A small black clock hanging on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011712.jpg', 'caption': 'A corner of a room with gray walls and gray curtains has a black clock hanging.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389622.jpg', 'caption': 'A large black and silver clock in a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389622.jpg', 'caption': 'a small clock that is in side of a case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389622.jpg', 'caption': 'A square black clock is on a clear glass table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389622.jpg', 'caption': 'A large metal clock in a clear display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389622.jpg', 'caption': 'A wind up clock with key in a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029019.jpg', 'caption': \"Big Ben towering over the city of London with it's massive clock.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029019.jpg', 'caption': 'An old photo of the clock in the Tower of London.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029019.jpg', 'caption': 'A large and tall clock in a big city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029019.jpg', 'caption': 'A old photo of a large clock tower in Britain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029019.jpg', 'caption': 'A large clock tower in the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001577.jpg', 'caption': 'A watery glass jar full of blooming flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001577.jpg', 'caption': 'A vase filled with yellow and white flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001577.jpg', 'caption': 'A glass jar is filling with white and yellow flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001577.jpg', 'caption': 'A glass vase is holding a bunch of flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001577.jpg', 'caption': 'Tall glass mug shaped vase with yellow flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022324.jpg', 'caption': 'A glass mug being used a vase for white and yellow flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022324.jpg', 'caption': 'A vase that has flowers inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022324.jpg', 'caption': 'Daffodils with white petals sit in a bunch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022324.jpg', 'caption': 'A vase filled with flowers sitting next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022324.jpg', 'caption': 'A group of yello and white daffodils in a vase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066154.jpg', 'caption': 'an assortment of some colorful vases on display on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066154.jpg', 'caption': 'An assortment of small, multicolored ceramic pots in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066154.jpg', 'caption': 'pot like models on a table well molded', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066154.jpg', 'caption': 'A photo of a dozen little painted gourds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066154.jpg', 'caption': 'A group of hand painted vases are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099828.jpg', 'caption': 'A vase filled with white and yellow flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099828.jpg', 'caption': 'A rock sitting on a table with flowers growing out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099828.jpg', 'caption': 'Several white flowers in a small pot designed to look like a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099828.jpg', 'caption': 'A rock vase that has flowers inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099828.jpg', 'caption': 'There is something captured here in this photo.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205474.jpg', 'caption': 'A vase filled with lots of flowers on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205474.jpg', 'caption': 'Wilting roses and greenery in a metal vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205474.jpg', 'caption': 'Wilted flowers are in a vase on a stainless steel counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205474.jpg', 'caption': 'A vase with some drooping flowers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205474.jpg', 'caption': 'Odd plant and flower arrangement in a vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400847.jpg', 'caption': 'A glass vase with some red water inside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400847.jpg', 'caption': 'A clear red vase on table next to a plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400847.jpg', 'caption': 'A vase is red and made of glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400847.jpg', 'caption': 'The large glass vase is a dark red color.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400847.jpg', 'caption': 'A red glass vase next to a some sticks by it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537692.jpg', 'caption': 'A collection of scissors and candles place on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537692.jpg', 'caption': 'A tray of scissors is on a table with a lamp and candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537692.jpg', 'caption': 'a tray filled with scissors and a lamp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537692.jpg', 'caption': 'A group of scissors are on a glass tabletop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537692.jpg', 'caption': 'Many large scissors sit on a tray on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559277.jpg', 'caption': 'A poodle is laying on the back of a green couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559277.jpg', 'caption': 'a dog lays on the back of a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559277.jpg', 'caption': 'A dog sleeping on the top edge of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559277.jpg', 'caption': 'A dog is sitting on a couch looking over the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559277.jpg', 'caption': 'A dog with a pink bow on head, leaning over a couch in livingroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328745.jpg', 'caption': 'Two brown bears sitting on top of a black and white checkered bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328745.jpg', 'caption': 'Stuffed animals of various sizes grouped together on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328745.jpg', 'caption': 'Stuffed animals stacked together on a bed with a checkered sheet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328745.jpg', 'caption': 'a close up of many stuffed animals on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328745.jpg', 'caption': 'THERE ARE A LOT OF STUFF TOYS ON THE BED', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386559.jpg', 'caption': 'A man sitting down on a chair at a table with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386559.jpg', 'caption': 'In the background people appear to be selecting from a buffet, while in the foreground a young man smiles, seated before an empty plate that rests on a table with glassware, while close to him rests a full plate and a hand with a devise in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386559.jpg', 'caption': 'A smiling man eating at a table with people behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386559.jpg', 'caption': 'A man that is sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386559.jpg', 'caption': 'This man looks pleased with the food he has been eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043961.jpg', 'caption': 'Some people are sitting at a table and making sandwiches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043961.jpg', 'caption': 'A group of people sitting around a table with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043961.jpg', 'caption': 'A group of people eating together at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043961.jpg', 'caption': 'Group of people sitting down at a table and eating together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043961.jpg', 'caption': 'A family sits down to a hearty meal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128224.jpg', 'caption': 'A brioche, cantaloupe and cup of tea on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128224.jpg', 'caption': 'There is a glass of alcohol sitting beside the bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128224.jpg', 'caption': 'a close up of fruit and a cup on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128224.jpg', 'caption': 'A croissant, cantaloupe, and a mug of hot tea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128224.jpg', 'caption': 'A glass of beer beside a melon and a croissant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066360.jpg', 'caption': 'Two croissants are on a plate with orange juice and coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066360.jpg', 'caption': 'Usually people use jam for croissants like what we see on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066360.jpg', 'caption': 'There is a chocolate drink, orange juice, croissant, and jelly for breakfast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066360.jpg', 'caption': 'A plate of food and some cups of drink on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066360.jpg', 'caption': 'A breakfast of croissants, jam, orange juice, and coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247317.jpg', 'caption': 'Two people are finishing a meal in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247317.jpg', 'caption': 'two people sitting at a table with plates and cups', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247317.jpg', 'caption': 'Two people sit at a table and one has a dark shirt while the other a white shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247317.jpg', 'caption': 'A woman contemplating something with a coffee cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247317.jpg', 'caption': 'Friends having a cup of tea at the end of a long meal at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229688.jpg', 'caption': 'A woman with beautiful breast sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229688.jpg', 'caption': 'a person sitting at a table with food and a drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229688.jpg', 'caption': 'Young women gazing pensively left while sitting in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229688.jpg', 'caption': 'A woman sits beside a brick wall at a small table in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229688.jpg', 'caption': 'A woman is resting her head on her hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393511.jpg', 'caption': 'A bunch of people at a table eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393511.jpg', 'caption': 'People sitting at a table with soup and drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393511.jpg', 'caption': 'People sitting at a table and eating soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393511.jpg', 'caption': 'Men and women sitting at a table with bowls of soup and drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393511.jpg', 'caption': 'a number of people at a table with plates of food ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064599.jpg', 'caption': 'A wooden table topped with white plates filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064599.jpg', 'caption': 'A table with six plates of food and a hand pointing to one of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064599.jpg', 'caption': 'Dinner plates bearing food are arranged in a formation as someone touches one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064599.jpg', 'caption': 'Several plates of food arranged on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064599.jpg', 'caption': 'Six plates of the same gourmet dish on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045094.jpg', 'caption': 'A man drinking wine at a wine tasting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045094.jpg', 'caption': 'A man and a woman drinking a red wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045094.jpg', 'caption': 'Two people enjoy the aroma of their wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045094.jpg', 'caption': 'A man and a woman sitting down, testing wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045094.jpg', 'caption': 'A man and woman taking a drink of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494433.jpg', 'caption': 'A glass of red and white wine ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494433.jpg', 'caption': 'A glass of wine is sitting next to another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494433.jpg', 'caption': 'Several wine glasses stand next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494433.jpg', 'caption': 'A close up of wine glasses with small amounts of wine in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494433.jpg', 'caption': 'Several glasses of wine displayed on table indoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393267.jpg', 'caption': 'Several people are standing at a table looking at wine bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393267.jpg', 'caption': 'A woman standing in front of a table surrounded by a crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393267.jpg', 'caption': 'A group of people at a table filled with wine bottles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393267.jpg', 'caption': 'Eager people standing in front of tables at an exhibition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393267.jpg', 'caption': 'several people looking at many bottles of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463837.jpg', 'caption': 'A group of men sitting around a table together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463837.jpg', 'caption': 'some people are sitting together at a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463837.jpg', 'caption': 'People are sitting around a bar with wine glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463837.jpg', 'caption': 'Several people standing and sitting at a bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463837.jpg', 'caption': 'A group of people who are sitting at a bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321971.jpg', 'caption': 'A man and woman in a vineyard with bottles and glasses around them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321971.jpg', 'caption': 'A couple are standing next to some wine barrels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321971.jpg', 'caption': 'A man and woman standing by some wine glasses and bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321971.jpg', 'caption': 'A man and woman standing next to each other near a pile of barrels of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321971.jpg', 'caption': 'a man and a woman are standing at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077296.jpg', 'caption': 'A man in a black outfit sleeping on a small bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077296.jpg', 'caption': 'A man lays on a bench and covers his eyes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077296.jpg', 'caption': 'An old man is sleeping on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077296.jpg', 'caption': 'A person laying on a small bench in the countryside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077296.jpg', 'caption': 'A man is laying on a small bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573843.jpg', 'caption': 'A crane operates over the city being built', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573843.jpg', 'caption': 'A man that is sitting down on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573843.jpg', 'caption': 'this is a man sitting on a bench on a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573843.jpg', 'caption': 'a man is sitting on a wood bench outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573843.jpg', 'caption': 'A man sitting on a bench in front of a building undergoing construction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260247.jpg', 'caption': 'A man sitting in a chair under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260247.jpg', 'caption': 'Man with cap sitting in a patio area by himself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260247.jpg', 'caption': 'A man sits beneath an umbrella in an outdoor patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260247.jpg', 'caption': 'a man sitting on a patio underneath an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260247.jpg', 'caption': 'A man is sitting outside under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536027.jpg', 'caption': 'A person walking along wet ground holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536027.jpg', 'caption': 'The person with the umbrella is walking away from the scene.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536027.jpg', 'caption': 'a person walking fast on a sidewalk with a green umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536027.jpg', 'caption': 'A diagonal view of someone walkig along a wet street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536027.jpg', 'caption': 'A person walking on the street holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555983.jpg', 'caption': 'A blurry motion picture of a person doing a wheelie on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555983.jpg', 'caption': 'A person is performing a wheelie on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555983.jpg', 'caption': 'A man sitting on a motorcycle doing a stunt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555983.jpg', 'caption': 'A man doing stunts on his motorcycle at a show.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555983.jpg', 'caption': 'A man is riding a motorcycle on one wheel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475725.jpg', 'caption': 'A woman hugs a gray cat to her chest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475725.jpg', 'caption': 'A woman holding a cat in her arms with a smile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475725.jpg', 'caption': 'a woman holding a cat in her arms', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475725.jpg', 'caption': 'A woman smiling while holding a cat in her hands. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475725.jpg', 'caption': 'A woman is holding a gray and white cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392991.jpg', 'caption': 'A white cake with chocolate being poured over the top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392991.jpg', 'caption': 'Liquid dark chocolate being poured over a white cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392991.jpg', 'caption': 'A spoon with chocolate being poured on a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392991.jpg', 'caption': 'This cake is being doused in liquid chocolate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392991.jpg', 'caption': 'The chocolate is being poured onto the cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415841.jpg', 'caption': 'A kitchen with a refrigerator, sink, drawers and cabinets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415841.jpg', 'caption': 'A refrigerator next to a sink in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415841.jpg', 'caption': 'A shot of a fridge next to the wooden cabinets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415841.jpg', 'caption': 'A white refrigerator has a freezer on top and cooler on the bottom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415841.jpg', 'caption': 'A refrigerator that is in a kitchen next to granite counter tops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365822.jpg', 'caption': 'a kitchen with a window some cupboards ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365822.jpg', 'caption': 'A kitchen with a window that has bars on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365822.jpg', 'caption': 'A kitchen with white cabinets and a black stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365822.jpg', 'caption': 'A lightly colored kitchen showing counters and cabinets, with a sliding glass patio door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365822.jpg', 'caption': 'A light is shining through a kitchen window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509807.jpg', 'caption': 'A kitchen counter with dishes dryin g on the stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509807.jpg', 'caption': 'A partial view of a kitchen with a oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509807.jpg', 'caption': 'a towel with a big chunk of cheese on it above an oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509807.jpg', 'caption': 'A kitchen with wood counter tops and some food items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509807.jpg', 'caption': 'A kitchen with drawers and an oven, and items on the counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522779.jpg', 'caption': 'A kitchen seen is pictured while food is being prepared.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522779.jpg', 'caption': 'A kitchen range with food cooking in the oven and on the stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522779.jpg', 'caption': 'a white oven and a black stove and some pans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522779.jpg', 'caption': 'A kitchen with food cooking on the range and in the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522779.jpg', 'caption': 'Food in the middle of preparation, cooking on the stove and oven, in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347113.jpg', 'caption': 'A kitchen with a wooden table with a cat sleeping on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347113.jpg', 'caption': 'The cat is sitting on the old butcher block.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347113.jpg', 'caption': 'A tabby cat sleeping on a wooden island in an old looking kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347113.jpg', 'caption': 'this is a wood table in a cluttered kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347113.jpg', 'caption': 'kitchen with a wooden kitchen island and checkered floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051533.jpg', 'caption': 'Many pots and pans are hooked on a kitchen wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051533.jpg', 'caption': 'A bunch of pans that are hanging on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051533.jpg', 'caption': 'The pans are hanging on the wall near the door. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051533.jpg', 'caption': 'A large number of pans are hanging on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051533.jpg', 'caption': 'A WALL FULL OF POTS AND PANS IN THE KITCHEN.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308730.jpg', 'caption': 'A kitchen with a stainless steel stove.and white cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308730.jpg', 'caption': 'A kitchen with dishes, trash cans and other items, along with two windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308730.jpg', 'caption': 'A kitchen with white cabinets and wooden trim.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308730.jpg', 'caption': 'A kitchen with a commercial stove and double sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308730.jpg', 'caption': 'A large kitchen with two trashcans, a large gas stove, and many dishes organized and put up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331268.jpg', 'caption': 'A kitchen filled with plants and lots of clutter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331268.jpg', 'caption': 'a kitchen cluttered with cups and house plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331268.jpg', 'caption': 'The interior of a plant filled kitchen with white cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331268.jpg', 'caption': 'a untidy kitchen with plants, glasses, dishes, and more.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331268.jpg', 'caption': 'This is a photo of a cluttered kitchen that has a lot of stuff sitting around it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262054.jpg', 'caption': 'A large kitchen filled with white appliances with lots of counter space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262054.jpg', 'caption': 'Dish towels hang from a stove handle in a kitchen with wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262054.jpg', 'caption': 'A kitchen with a stove, a microwave above it and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262054.jpg', 'caption': 'A clean kitchen is shown with three towels hanging on the cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262054.jpg', 'caption': 'A large kitchen with a built-in stove, oven and microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096107.jpg', 'caption': 'A kitchen filled with appliances and track lighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096107.jpg', 'caption': 'A clean kitchen with rubber gloves hanging from the cabinet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096107.jpg', 'caption': 'Kitchen scene, very large , brightly lit with white counter tops, lots of cabinet space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096107.jpg', 'caption': 'This a very big kitchen with wood cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096107.jpg', 'caption': 'A pair of yellow kitchen gloves hang from the cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037367.jpg', 'caption': 'A laptop that is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037367.jpg', 'caption': 'A laptop is set up on a dining room table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037367.jpg', 'caption': 'a dining room table with a laptop and scattered papers sitting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037367.jpg', 'caption': 'A laptop is set up at the dining room table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037367.jpg', 'caption': 'A laptop and glass of water are on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508481.jpg', 'caption': 'A stove top with a tea kettle sitting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508481.jpg', 'caption': 'A kitchen with a stove and a kettle on the stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508481.jpg', 'caption': 'A kitchen stove with a whistling tea pot on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508481.jpg', 'caption': 'a silver stove a white tea pot lights and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508481.jpg', 'caption': 'A tea kettle sitting on top of a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540556.jpg', 'caption': 'A midair shot of a guy doing a trick in a skateboard halfpipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540556.jpg', 'caption': 'A man is skateboarding on a ramp in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540556.jpg', 'caption': 'Man on a skateboard preforming a stunt at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540556.jpg', 'caption': 'A person jumping up in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540556.jpg', 'caption': 'A guy is performing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535506.jpg', 'caption': 'She just finished chopping vegetables with the knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535506.jpg', 'caption': 'A woman in a kitchen at the sink holding a knife. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535506.jpg', 'caption': 'A lady with dark brown hair has a knife in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535506.jpg', 'caption': 'A woman holding a knife in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535506.jpg', 'caption': 'a woman is standing with a plate in the kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409581.jpg', 'caption': 'A boy carrying a surfboard on a busy sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409581.jpg', 'caption': 'a guy holding a surfboard as he walks down the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409581.jpg', 'caption': 'A man carries a surfboard with a pink towel hanging from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409581.jpg', 'caption': 'A young person is carrying a surfboard and towel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409581.jpg', 'caption': 'A young man is carrying his surf board on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215691.jpg', 'caption': 'A small kitchen featuring an under the counter washing machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215691.jpg', 'caption': 'The kitchen is clean and ready for us to use. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215691.jpg', 'caption': 'A kitchen area that has white cabinets and a black counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215691.jpg', 'caption': 'A kitchen with a sink, dishwasher and a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215691.jpg', 'caption': 'A corner of a kitchen with shiny white cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104326.jpg', 'caption': 'A pinewood and green modern themed kitchen area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104326.jpg', 'caption': 'A kitchen and dining room area with a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104326.jpg', 'caption': 'A green kitchen with wooden counters and bright lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104326.jpg', 'caption': 'A bright room with green walls and cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104326.jpg', 'caption': 'An empty kitchen area painted green with bulbous lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569103.jpg', 'caption': 'A small piece of cake on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569103.jpg', 'caption': 'A berry pastry sitting by itself on a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569103.jpg', 'caption': 'A closeup view of a baked blueberry cake or dessert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569103.jpg', 'caption': 'A delicious look coffee cake appears to be made with blackberries and has a crumb topping. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569103.jpg', 'caption': 'A piece of cake with fruit baked into it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298578.jpg', 'caption': 'A group of people on a court with tennis rackets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298578.jpg', 'caption': 'A young man holding a tennis racquet on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298578.jpg', 'caption': 'a group of people playing tennis out side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298578.jpg', 'caption': 'A boy on a tennis court with other players.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298578.jpg', 'caption': 'A young man with a tennis racquet in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104392.jpg', 'caption': 'a modern kitchen with an oven, stove, and a fridge ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104392.jpg', 'caption': 'There is a small island in a small kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104392.jpg', 'caption': 'A very clean kitchen with multiple appliances and an island.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104392.jpg', 'caption': 'A clean, empty kitchen with very new and modern appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104392.jpg', 'caption': 'A all wooden kitchen area with a glass stove top .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042492.jpg', 'caption': 'A kitchen with a center stove top island.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042492.jpg', 'caption': 'Man standing next to kitchen island with orange top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042492.jpg', 'caption': 'there is a man standing by an island in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042492.jpg', 'caption': 'A man is talking on the phone on the kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042492.jpg', 'caption': 'A man looking at a magazine on his kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022158.jpg', 'caption': 'A kitchen with white appliances and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022158.jpg', 'caption': 'A shot of a small black and white kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022158.jpg', 'caption': 'A picture of a small clean kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022158.jpg', 'caption': 'A basic shot of a kitchen fully usable. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022158.jpg', 'caption': 'A kitchen that has a checkered pattern floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511111.jpg', 'caption': 'A glass of Orange juice next to a juicer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511111.jpg', 'caption': 'A orange and a juicer on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511111.jpg', 'caption': 'A juicer is used to make fresh orange juice. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511111.jpg', 'caption': 'A glass of orange juice sitting under a juicer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511111.jpg', 'caption': 'A juicer has a glass and an orange on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135356.jpg', 'caption': 'A man drying a pan with a dish towel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135356.jpg', 'caption': 'A man drying a pan in the kitchen of a small apartment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135356.jpg', 'caption': 'A man is in the kitchen drying a frying pan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135356.jpg', 'caption': 'A man is cleaning pots in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135356.jpg', 'caption': 'A man in a narrow kitchen area wiping a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438024.jpg', 'caption': 'A city with a river in the middle with boats docked', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438024.jpg', 'caption': 'an image of several boats docked in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438024.jpg', 'caption': 'A row of boats on a river next to multiple buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438024.jpg', 'caption': 'Boats on a canal of water going between rows of buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438024.jpg', 'caption': 'Several boats that are tied up in a canal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103306.jpg', 'caption': 'A bathroom with a shower and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103306.jpg', 'caption': 'A white shower curtain and a sink in a bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103306.jpg', 'caption': 'A shower curtain is closed and is next to a white sink and black cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103306.jpg', 'caption': 'A very simple bathroom with a sink and a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103306.jpg', 'caption': 'A closed shower curtain with sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329534.jpg', 'caption': 'The pair of shoes is on the bathroom floor near the cabinet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329534.jpg', 'caption': 'A bathroom that has a yellow floor mat in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329534.jpg', 'caption': 'This all white bathroom has a round yellow rug that stands out very much.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329534.jpg', 'caption': 'A bathroom with a toilet, cabinet and rug. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329534.jpg', 'caption': 'A small bathroom with a toilet next to a cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447038.jpg', 'caption': 'A bathroom showing a sink and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447038.jpg', 'caption': 'A bathroom with toilet, mirror and double sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447038.jpg', 'caption': 'this photo is blurry but shows two bathroom sinks', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000425870.jpg', 'caption': 'A man and a young boy play a wii game together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425870.jpg', 'caption': 'A man is teaching a young boy to play the wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425870.jpg', 'caption': 'a man and a small kid play a video game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425870.jpg', 'caption': 'a person guiding a babys hands at a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425870.jpg', 'caption': 'Small child with red pants holding up a white controller to a TV. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230982.jpg', 'caption': 'An overweight man leans back in order to play a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230982.jpg', 'caption': 'The person is facing a glass door and holding an object. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230982.jpg', 'caption': 'a male in a white shirt is playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230982.jpg', 'caption': 'a man in a yellow shirt in front of some glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230982.jpg', 'caption': 'A young man plays a video game standing up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082558.jpg', 'caption': 'A living area with a fan and furniture covered in white blankets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082558.jpg', 'caption': 'A room that the furniture is covered for home improvements.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082558.jpg', 'caption': 'A fan is featured in a yellow room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082558.jpg', 'caption': 'A ceiling fan in a room that is being prepped for painting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082558.jpg', 'caption': 'A yellow room with a ceiling fan and covered furniture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279138.jpg', 'caption': 'Two women sitting on the floor with gifts in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279138.jpg', 'caption': 'A girl has presents in front of her near another woman and a dog on a living room floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279138.jpg', 'caption': 'Two girls wrapping presents on a living room floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279138.jpg', 'caption': 'Two people sitting on the floor next to a pile of gifts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279138.jpg', 'caption': 'two females sitting on the carpet opening presents', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173464.jpg', 'caption': 'a light a few ceiling fans a bicycle a couch and windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173464.jpg', 'caption': 'A full view of a living room in a house. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173464.jpg', 'caption': 'A view of a living room from across the room, there are bikes everywhere.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173464.jpg', 'caption': 'A room with a wooden floor and blue walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173464.jpg', 'caption': 'A living room with blue walls and white trim.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001626.jpg', 'caption': 'Two smiling young people playing a game of Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001626.jpg', 'caption': 'A man and woman playing a video game together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001626.jpg', 'caption': 'A man and woman in a living room play against each other on a Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001626.jpg', 'caption': 'Two people are playing video games in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001626.jpg', 'caption': 'Two people play a game on a Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355179.jpg', 'caption': 'A little girl covering her mouth leaning on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355179.jpg', 'caption': 'young girl with hand by mouth next to chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355179.jpg', 'caption': 'An adorable little girl holding her hand over her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355179.jpg', 'caption': 'A little girl is covering her mouth by a chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355179.jpg', 'caption': 'A young girl covering her mouth as if she did something incorrectly.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434976.jpg', 'caption': 'A little girl standing in front of a TV holding a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434976.jpg', 'caption': 'A young girl playing a motion controlled video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434976.jpg', 'caption': 'A young child enjoying a video game in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434976.jpg', 'caption': 'A child standing in front of a television holding a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434976.jpg', 'caption': 'a young child standing by a tv playing wii bowling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234251.jpg', 'caption': 'A young child holding a Nintendo Wii game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234251.jpg', 'caption': 'A girl is standing next to a chair holding a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234251.jpg', 'caption': 'A very young child holding a remote in its hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234251.jpg', 'caption': 'Little boy using a Wii remote control in the living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234251.jpg', 'caption': 'A child stands near a chair and holds a Wii remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338007.jpg', 'caption': 'A man wearing glasses holding a Wii controller in one of his hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338007.jpg', 'caption': 'A young man holding a remote in a room with signs on the wall of the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338007.jpg', 'caption': 'A man holding up a video game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338007.jpg', 'caption': 'A teenage boy holding a controller for the Wii gaming system. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338007.jpg', 'caption': 'A young man making a statement in a public room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367398.jpg', 'caption': 'A man with a remote in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367398.jpg', 'caption': 'Black and white photograph of a man with a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367398.jpg', 'caption': 'A boy using his Wii controller to play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367398.jpg', 'caption': 'A man untangles his Wii controller in his very messy bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367398.jpg', 'caption': 'A man in a bedroom holds a Wii remote and bends down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576253.jpg', 'caption': 'a man with eye glasses who is holding a wii remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576253.jpg', 'caption': 'A young man wearing glasses and a red shirt holding a small white device.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576253.jpg', 'caption': 'A young man wearing a red sweatshirt is holding his Wii remotes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576253.jpg', 'caption': 'boy posing in a boxing stance with his Wii controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576253.jpg', 'caption': 'boy with glasses and red shirt holding electronics', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050882.jpg', 'caption': 'A fat man is playing golf on the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050882.jpg', 'caption': 'A man prepares to hit the ball in Wii golf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050882.jpg', 'caption': 'A man is playing a Wii golf game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050882.jpg', 'caption': 'A man holding a white Nintendo Wii game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050882.jpg', 'caption': 'A man lines up his shot while playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032362.jpg', 'caption': 'Two men playing a video game in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032362.jpg', 'caption': 'Two men in a room playing on a Wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032362.jpg', 'caption': 'two men standing and pointing devices at a tv set', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032362.jpg', 'caption': 'Two men standing in a room playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032362.jpg', 'caption': 'A couple of men playing a video game in an office setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475887.jpg', 'caption': 'A monitor, two tablets and a laptop computer sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475887.jpg', 'caption': 'A picture of four computer and tablet devices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475887.jpg', 'caption': 'a couple of different kinds of computers are next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475887.jpg', 'caption': 'There is a desktop, laptop, phone and tablets being displayed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475887.jpg', 'caption': 'assorted electronic devices sitting together in a photo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260486.jpg', 'caption': 'A desktop computer sitting on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260486.jpg', 'caption': 'A computer is turned on on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260486.jpg', 'caption': '\\nA desktop computer sits upon a cluttered desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260486.jpg', 'caption': 'A desk containing a computer monitor and keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260486.jpg', 'caption': 'Computer station with one computer and many accessories.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278121.jpg', 'caption': 'Computer on the desk at nighttime in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278121.jpg', 'caption': 'Two computer screens sit on a desk, and one is turned on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278121.jpg', 'caption': 'A keyboard and two monitors sitting on a desk in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278121.jpg', 'caption': 'A desk with two computer monitors and a keyboard on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278121.jpg', 'caption': 'two monitors and keyboard sitting next to a big window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281376.jpg', 'caption': 'The two monitors are sitting among the laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281376.jpg', 'caption': 'Several computer monitors and keyboards sitting on the same desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281376.jpg', 'caption': 'A desk with two laptops, two computers, headphones and a cell phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281376.jpg', 'caption': 'Two laptops and two desktops make up this computer station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281376.jpg', 'caption': 'A table full of laptops and two monitors are powered on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482774.jpg', 'caption': 'A close up of a computer keyboard that has only buttons', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482774.jpg', 'caption': 'A white computer keyboard sits on a gray desk top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482774.jpg', 'caption': 'The keyboard is white and is partially shown in the picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482774.jpg', 'caption': 'The computer keyboard seems to have a light inside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482774.jpg', 'caption': 'A white keyboard is sitting on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285558.jpg', 'caption': 'Several young people sitting in a living room with the lights off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285558.jpg', 'caption': 'A GROUP OF PEOPLE ARE SITTING TOGETHRE IN A LIVING ROOM', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285558.jpg', 'caption': 'a group of teens sitting in a living room while one looks at a phone book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285558.jpg', 'caption': 'Several people are sitting and visiting in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285558.jpg', 'caption': 'Picture of some people talking in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012887.jpg', 'caption': 'A living room filled with furniture and a black piano.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012887.jpg', 'caption': 'A living room with piano, sofa, and table in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012887.jpg', 'caption': 'A room with couches, tables and potted plant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012887.jpg', 'caption': 'A living room with a piano in it and carpeted floors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012887.jpg', 'caption': 'An elegant living room scene with a large black grand piano', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236604.jpg', 'caption': 'A elegant and spacious living room in white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236604.jpg', 'caption': 'An ornate living room set sits in a large house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236604.jpg', 'caption': 'A fancy living room displays a couch and coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236604.jpg', 'caption': 'a living room with a couple of couches inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236604.jpg', 'caption': 'Large elegantly set up living room in a large house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525682.jpg', 'caption': 'A group of people lounging in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525682.jpg', 'caption': 'A woman sitting on a couch next to a young man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525682.jpg', 'caption': 'A man and two women sitting in a dimly lit living room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525682.jpg', 'caption': 'This image is of people lounging around in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525682.jpg', 'caption': 'three people relaxing and chilling in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538912.jpg', 'caption': 'A picture of buildings with a clock tower in front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538912.jpg', 'caption': 'A architecture picture of a clock tower and the surrounding buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538912.jpg', 'caption': 'A grey clock tower above grassy area and building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538912.jpg', 'caption': 'A municipal building with a tall clock tower framed against a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538912.jpg', 'caption': 'A tall clock tower in front of a group of buildings in a park like area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335132.jpg', 'caption': 'a large tower that has a clock on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335132.jpg', 'caption': 'a tall clock tower with trees in the foreground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335132.jpg', 'caption': 'A large clock tower above some snowy trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335132.jpg', 'caption': 'A black and white shot shows evergreens, bare shade trees, and bushes that slightly obstruct the view of a building with a low roof in comparison to its clock tower, which stands more than twice as tall as the evergreens, against a grey sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335132.jpg', 'caption': 'A clock tower jutting skyward on a snowy winter day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519598.jpg', 'caption': 'A clock reads almost 3 o clock above a dining room table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519598.jpg', 'caption': 'A large clock mounted to the side of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519598.jpg', 'caption': 'A clock displayed on the wall above a table with a laptop on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519598.jpg', 'caption': 'An empty living room with the sunlight coming in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519598.jpg', 'caption': 'View of a dining room table at 2:50.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060179.jpg', 'caption': 'A man on skies with a parachute attempting to ski with it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060179.jpg', 'caption': 'a person riding skis and holding a parachute ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060179.jpg', 'caption': 'A person on a snowy field handling a red chute.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060179.jpg', 'caption': 'A man flying a kite over a snow covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060179.jpg', 'caption': 'The man wrestles in the snow with the large red tent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023200.jpg', 'caption': 'A man is flying a kite in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023200.jpg', 'caption': 'people on a beach flying kites in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023200.jpg', 'caption': 'A group of people flying a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023200.jpg', 'caption': 'A person flying a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023200.jpg', 'caption': 'A person flying a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525619.jpg', 'caption': 'A kite is flying in the air at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525619.jpg', 'caption': 'A grassy field with a kite in the sky in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525619.jpg', 'caption': 'Person in a green park fling a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525619.jpg', 'caption': 'BOY IN THE PARK, INCLUDING A KITE AND A DOG', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525619.jpg', 'caption': 'a kite flying in the air over a field of green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105782.jpg', 'caption': 'A dog chasing a kite that is flying.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105782.jpg', 'caption': 'A kite is flying over a dog in a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105782.jpg', 'caption': 'The dog is chasing the kite in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105782.jpg', 'caption': 'a cat a kite some grass some cars and buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105782.jpg', 'caption': 'A dog jumping up into the air under a colorful kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160239.jpg', 'caption': 'A large inflatable whale sitting on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160239.jpg', 'caption': 'A kite fashioned to look like a whale on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160239.jpg', 'caption': 'a large whale kite some buildings and people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160239.jpg', 'caption': 'Very large balloon depicting whale on display at beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160239.jpg', 'caption': 'this is a whale balloon in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288673.jpg', 'caption': 'A group of people at the beach flying kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288673.jpg', 'caption': 'A group of people standing next to a palm tree forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288673.jpg', 'caption': 'A hang glider gliding over a beach with palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288673.jpg', 'caption': 'A small group of people fly a kite next to palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288673.jpg', 'caption': 'People on a beach near palm trees flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368242.jpg', 'caption': 'a person is flying a kite in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368242.jpg', 'caption': 'The boy is running as he tries to fly his kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368242.jpg', 'caption': 'A person running with a kite in the tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368242.jpg', 'caption': 'A boy is flying a kite in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368242.jpg', 'caption': 'A small boy flying a lite in a big grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021036.jpg', 'caption': 'A cool looking kite that is on the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021036.jpg', 'caption': 'Kites are flying around and are anchored on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021036.jpg', 'caption': 'Several large kites being flown at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021036.jpg', 'caption': 'There is a very large ballon flying over the beach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021036.jpg', 'caption': 'An inflatable cartoon balloon on a beach in front of buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237464.jpg', 'caption': 'A group of people flying kites over a beach next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237464.jpg', 'caption': 'People on a beach flying kites and sitting under umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237464.jpg', 'caption': 'A crowded beach with many kites flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237464.jpg', 'caption': 'a beach with many fly kites being flown around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237464.jpg', 'caption': 'Variety of clouds flown on semi crowded beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245414.jpg', 'caption': 'a little girl walking on a beach with an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245414.jpg', 'caption': 'A little girl holding a kite on dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245414.jpg', 'caption': 'A young girl on a beach flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245414.jpg', 'caption': 'A young child is carrying her kite while outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245414.jpg', 'caption': 'A small child holding a kite and eating a treat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490415.jpg', 'caption': 'A person flies a kite in a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490415.jpg', 'caption': 'Guy out in the park flying a triangle tubed kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490415.jpg', 'caption': 'A man stands n a field flying a triangular prism kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490415.jpg', 'caption': 'A man is flying a kite while others bicycle in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490415.jpg', 'caption': 'A man in a park area flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167337.jpg', 'caption': 'A pitcher getting ready to hit a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167337.jpg', 'caption': 'a man uses a bat gets ready to try and hit a ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167337.jpg', 'caption': 'A baseball player holding a bat next to home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167337.jpg', 'caption': 'people in the field playing baseball one holding a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167337.jpg', 'caption': 'A player at bat in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558608.jpg', 'caption': 'A kite that is laying down in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558608.jpg', 'caption': 'Several people flying things in the air on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558608.jpg', 'caption': 'A very large kite and people are on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558608.jpg', 'caption': 'A closeup of a kite with other kites flying in the background on the beach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558608.jpg', 'caption': 'A big kite lays on the beach as others fly in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551910.jpg', 'caption': 'A man flying a kite in a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551910.jpg', 'caption': 'a man flying a box kite on a clear day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551910.jpg', 'caption': 'A man flying a large kite with two strings for controlling it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551910.jpg', 'caption': 'Guy stands on the beach flying a rectangle kite high up in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551910.jpg', 'caption': 'A man in black vest flying a kite on beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188411.jpg', 'caption': 'a person that is flying a kite through the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188411.jpg', 'caption': 'A person flying a kite into a large tree in a paddock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188411.jpg', 'caption': 'Person playing with a kite in a park in front of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188411.jpg', 'caption': 'A man is flying a kite high above a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188411.jpg', 'caption': 'The woman is looking at the kite above the tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503569.jpg', 'caption': 'a couple of people that are flying some kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503569.jpg', 'caption': 'People playing with kites in a park on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503569.jpg', 'caption': 'A small girl flying a kite on a sandy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503569.jpg', 'caption': 'a woman playing with a kite hods it in front of her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503569.jpg', 'caption': 'a girl in a white shirt is flying a red kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137300.jpg', 'caption': 'A man flying a kite on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137300.jpg', 'caption': 'Man flying yellow kite in a a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137300.jpg', 'caption': 'Kite flying, unusual designed, orange oval shaped with man dressed in blue jacket, head cap but wearing shorts, on grass plateau, mountain back ground partly cloudy blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137300.jpg', 'caption': 'A person standing in a green field over looking a valley and mountains flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137300.jpg', 'caption': 'A PERSON FLYING A KITE IN A REMOTE AREA.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501242.jpg', 'caption': 'A woman with good posture sits at a wooden desk with an open laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501242.jpg', 'caption': 'A woman sitting at her desk working on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501242.jpg', 'caption': 'a woman sitting at her computer desk working with her computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501242.jpg', 'caption': 'A young woman sitting at a wooden desk watching Youtube on a laptop computer at home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501242.jpg', 'caption': 'The girl posing for the photo is sitting at a desk with a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073120.jpg', 'caption': 'Bunch of people out on the small hill flying kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073120.jpg', 'caption': 'People move about the grass under a partly cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073120.jpg', 'caption': 'A large grassy field is shown with several people enjoying the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073120.jpg', 'caption': 'Group of people on grassy field near castle by seashore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073120.jpg', 'caption': 'People flying kites in a large green park by the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160580.jpg', 'caption': 'A clock that is on the side of a tower above a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160580.jpg', 'caption': 'Adults looking out from balcony of building on cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160580.jpg', 'caption': 'A strip of stores in a building with a clock tower on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160580.jpg', 'caption': 'People on a balcony in a building in black and white', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160580.jpg', 'caption': 'a black and white photo of a building clock and people and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028192.jpg', 'caption': 'A person standing next to the ocean while flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028192.jpg', 'caption': 'A person is flying a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028192.jpg', 'caption': 'A person flying a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028192.jpg', 'caption': 'The person is flying his kite on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028192.jpg', 'caption': 'A person flies a kite along a cloudy beach on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483564.jpg', 'caption': 'A table topped with a personal note and a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483564.jpg', 'caption': 'A broken clock and a note from a maid to a hotel guest regarding the damage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483564.jpg', 'caption': 'a close up of a note written on a piece of paper ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483564.jpg', 'caption': 'a small cock with a note next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483564.jpg', 'caption': 'A note that is next to a broken watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343642.jpg', 'caption': 'A large metal clock in the middle of a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343642.jpg', 'caption': 'A gold clock on a marble pedestal with a statute above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343642.jpg', 'caption': 'A gold object sits behind some guard ropes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343642.jpg', 'caption': 'A very upscale room decorated with gold and marble.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343642.jpg', 'caption': 'An elaborate marble clock roped off in a hallway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280036.jpg', 'caption': 'A child on a beach flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280036.jpg', 'caption': 'A boy is flying a kite on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280036.jpg', 'caption': 'A boy in black sweater standing on beach flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280036.jpg', 'caption': 'A young boy who is on the beach flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280036.jpg', 'caption': 'A child is standing on a beach looking up at a kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393031.jpg', 'caption': 'A guy up to bat in a action in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393031.jpg', 'caption': 'A pitcher and batter in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393031.jpg', 'caption': 'A pitcher throwing a baseball at a player at bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393031.jpg', 'caption': 'A young man holding a baseball while wearing a uniform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393031.jpg', 'caption': 'A pitcher throws a pitch to an awaiting batter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385514.jpg', 'caption': 'A baseball player swinging his bat at a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385514.jpg', 'caption': 'Batter taking a swing at the ball during baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385514.jpg', 'caption': 'A baseball player hit the ball with his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385514.jpg', 'caption': 'A baseball player strikes a ball with his baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385514.jpg', 'caption': 'The baseball player is hoping for a hit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162189.jpg', 'caption': 'Baseball players standing at home plate making a play at a ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162189.jpg', 'caption': 'A man in a baseball uniform holding a wooden bat in both hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162189.jpg', 'caption': 'A man holds a bat out in front of him with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162189.jpg', 'caption': 'A batter is punting the ball at a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162189.jpg', 'caption': 'A batter hits a ball and the catcher prepares for a miss', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529515.jpg', 'caption': 'A man watching a baseball go by while holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529515.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529515.jpg', 'caption': 'Man watching ball come past him with baseball bat raised', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529515.jpg', 'caption': 'A man with a bat that is standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529515.jpg', 'caption': 'A baseball, umpire, and catcher standing at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243775.jpg', 'caption': 'A clock on side of building with skyline in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243775.jpg', 'caption': 'A large white clock mounted to the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243775.jpg', 'caption': 'A clock that is hanging over a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243775.jpg', 'caption': 'An ornate clock hands on an iron post near city buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243775.jpg', 'caption': 'A clock hanging off the side of building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214742.jpg', 'caption': 'A man that is holding a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214742.jpg', 'caption': 'A fat zombie in the grocery store and a man with a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214742.jpg', 'caption': 'The large man is walking down the grocery aisle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214742.jpg', 'caption': 'Two men standing in a store aisle with one holding a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214742.jpg', 'caption': 'Two actors are posing in a supermarket aisle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390718.jpg', 'caption': 'a group of baseball players playing baseball at a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390718.jpg', 'caption': 'a man is holding a base ball bat and striking the ball at a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390718.jpg', 'caption': 'a person hitting a baseball with their bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390718.jpg', 'caption': \"A group of men play baseball wearing uniforms from the 1800's.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390718.jpg', 'caption': 'A baseball player wearing an old fashioned uniform hitting the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261026.jpg', 'caption': 'A large white clock tower sitting in the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261026.jpg', 'caption': 'A group of buildings and people with umbrellas walking near a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261026.jpg', 'caption': 'A IMAGE OF A CITY PARKING LOT WITH CARS IN IT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261026.jpg', 'caption': 'People walk with umbrellas on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261026.jpg', 'caption': 'A large white building with a big clock tower at one corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360447.jpg', 'caption': 'A bearded ginger stands outside of a batting cage while holding a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360447.jpg', 'caption': 'A man holding a bat outside of a batting cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360447.jpg', 'caption': 'A man holds a bat awaiting his turn in the batting cages.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360447.jpg', 'caption': 'A man stands outside a batting cage with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360447.jpg', 'caption': 'a man holds a baseball bat near a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241551.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241551.jpg', 'caption': 'A batter stepping up to the plate at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241551.jpg', 'caption': 'An umpire and bats man wait on a ball to be thrown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241551.jpg', 'caption': 'A batter prepares to take his place at home base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241551.jpg', 'caption': 'A baseball player, umpire and a catcher at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086738.jpg', 'caption': 'A catcher is returning the ball to the pitcher while the batter waits. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086738.jpg', 'caption': 'A baseball player at bat in a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086738.jpg', 'caption': 'A baseball player is getting ready to bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086738.jpg', 'caption': 'A baseball game in progress with the batter up to plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086738.jpg', 'caption': \"Spectators watching a professional baseball game's action closely\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262242.jpg', 'caption': 'A woman standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262242.jpg', 'caption': 'A woman picking up a ball with a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262242.jpg', 'caption': 'Three people with racquets stand on a tennis court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262242.jpg', 'caption': 'a person with a tennis racket picks up a tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262242.jpg', 'caption': 'A woman tries to scoop a tennis ball with her racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450599.jpg', 'caption': 'A man in sandals playing tennis with two rackets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450599.jpg', 'caption': 'a man holding two tennis racquets on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450599.jpg', 'caption': 'A man holding two tennis rackets stands poised on a court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450599.jpg', 'caption': 'A tennis player is holding two rackets in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450599.jpg', 'caption': 'a guy waiting to hit a ball with two rackets in his hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291460.jpg', 'caption': ' A man is placing items on a pizza in a pan ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291460.jpg', 'caption': 'There is a man cutting something up over what looks like a homemade pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291460.jpg', 'caption': 'A man in a kitchen putting toppings on a pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291460.jpg', 'caption': 'The man is cutting ingredients onto a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291460.jpg', 'caption': 'A man is preparing a pizza on a trey.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273155.jpg', 'caption': 'female tennis player running to intercept the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273155.jpg', 'caption': 'A woman standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273155.jpg', 'caption': 'A woman in a white dress holding a racquet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273155.jpg', 'caption': 'A tennis player running and looking up to find the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273155.jpg', 'caption': 'A tennis player is getting ready to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467752.jpg', 'caption': 'A woman throwing in tennsi ball in the air holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467752.jpg', 'caption': 'Lady throwing up ball to hit with tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467752.jpg', 'caption': 'A woman serving a tennis ball on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467752.jpg', 'caption': 'A girl preparing to hit a tennis ball with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467752.jpg', 'caption': 'The femqle tennis player is serving the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542681.jpg', 'caption': 'Player preparing to serve ball while referees look on during match play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542681.jpg', 'caption': 'A tennis match in session while the crowd looks on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542681.jpg', 'caption': 'a male tennis player is on the court about to hit the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542681.jpg', 'caption': 'A man standing on a tennis court holding a racquet and a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542681.jpg', 'caption': 'A group of people on a court playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416489.jpg', 'caption': 'A woman standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416489.jpg', 'caption': 'Woman in a white outfit swinging at a tennis ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416489.jpg', 'caption': 'A woman is on a tennis court getting ready to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416489.jpg', 'caption': 'Woman playing tennis at the Australian Open tournament', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416489.jpg', 'caption': 'a blond woman wearing white is playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432293.jpg', 'caption': 'An uncooked pizza sitting on top of a wooden spatula.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432293.jpg', 'caption': 'A wooden board with a pizza to be cooked on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432293.jpg', 'caption': 'A hand tossed pizza is shown on a pizza board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432293.jpg', 'caption': 'There is an uncooked pizza on a pizza peel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432293.jpg', 'caption': 'A pizza sits on top of a wooden paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338600.jpg', 'caption': 'Man with tennis racket on green turf in front of a goal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338600.jpg', 'caption': 'this man is playing tennis in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338600.jpg', 'caption': 'A man is on the ground at a tennis court with his hand extended and racket out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338600.jpg', 'caption': 'A tennis player falling to the ground and wincing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338600.jpg', 'caption': 'A man holding a tennis racquet on top of a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350447.jpg', 'caption': 'A woman on a court with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350447.jpg', 'caption': 'there is a female tennis player playing on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350447.jpg', 'caption': 'A tennis player in a white dress stands on the baseline with her racket in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350447.jpg', 'caption': 'A woman swinging her tennis racket on the tennis court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350447.jpg', 'caption': 'A woman playing tennis reaches forward with her racket while spectators watch from bleachers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306335.jpg', 'caption': 'A beautiful young lady holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306335.jpg', 'caption': 'A woman running with a tennis racket ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306335.jpg', 'caption': 'an image of a female tennis player returning a serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306335.jpg', 'caption': 'a tennis player holding a racket on a tennis court ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306335.jpg', 'caption': 'People watching a professional tennis match on a grass court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155380.jpg', 'caption': 'an image of a church that is on a steeple', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155380.jpg', 'caption': 'a tower on top of a building with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155380.jpg', 'caption': 'A brick building with a clock on its front exterior.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155380.jpg', 'caption': 'A clock on the side of a building near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155380.jpg', 'caption': 'A cobblestone building with a tower protruding from the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203845.jpg', 'caption': 'An old brown building has a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203845.jpg', 'caption': 'A series of buildings are shown down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203845.jpg', 'caption': 'Some stone buildings stand with colorful flags flying between them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203845.jpg', 'caption': 'A small city is shown with old churches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203845.jpg', 'caption': 'There are some buildings and a clock on one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270570.jpg', 'caption': 'A computer and a laptop on a desk next to a tobacco pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270570.jpg', 'caption': 'A laptop computer is attached to an external monitor and keyboard on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270570.jpg', 'caption': 'The lap top keyboard light-up feature makes the keys easier to see.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270570.jpg', 'caption': 'THIS IS A MESSY DESK WITH BOTH A LAP TOP AND DESK TOP COMPUTER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270570.jpg', 'caption': 'A desk with computer equipment, books and a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432258.jpg', 'caption': 'an open laptop sitting on a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432258.jpg', 'caption': 'An open laptop sitting on top of desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432258.jpg', 'caption': 'An old laptop computer sitting on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432258.jpg', 'caption': 'A laptop with a picture on its screen on a desktop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432258.jpg', 'caption': 'An open laptop with an image on the screen, sitting on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008934.jpg', 'caption': 'a laptop head phones and an mp3 player', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008934.jpg', 'caption': 'A laptop and accessories are sitting on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008934.jpg', 'caption': 'A laptop computer sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008934.jpg', 'caption': 'A laptop is connected with many wires in order to charge the equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008934.jpg', 'caption': 'Bright, but minimal, light shows a wood surface with a laptop and a scattering of peripheral equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539355.jpg', 'caption': 'there is a green clock in the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539355.jpg', 'caption': 'A green clock sitting in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539355.jpg', 'caption': 'A large green clock with figures on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539355.jpg', 'caption': 'a photo of a green street clock with gold numbers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539355.jpg', 'caption': 'A green clock with a running scene on the bottom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414296.jpg', 'caption': 'A large metal clock hanging off the side of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414296.jpg', 'caption': 'That clock seems to be mounted on a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414296.jpg', 'caption': 'There is a big clock on the building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414296.jpg', 'caption': 'Fancy clock with human figures for parts, stands outside of building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414296.jpg', 'caption': 'a close up of a clock on a pole on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554711.jpg', 'caption': 'A woman laying in bed while using a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554711.jpg', 'caption': 'A woman in a polka dot top laying in a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554711.jpg', 'caption': 'A woman laying in a bed with a laptop computer open and on her lap area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554711.jpg', 'caption': 'A woman propped up in bed using a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554711.jpg', 'caption': 'a lady on her bed with a laptop smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221571.jpg', 'caption': 'a dark brown clay pot with a snake design on one side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221571.jpg', 'caption': 'A large vase that has been placed outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221571.jpg', 'caption': 'A brown vase sitting inside of rocks next to a set of green plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221571.jpg', 'caption': 'The large vase is on the ground outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221571.jpg', 'caption': 'The big brown vase is sitting outside on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320180.jpg', 'caption': 'an image of a woman sitting down on a couch with laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320180.jpg', 'caption': 'a person sitting on a couch with a lap top on their lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320180.jpg', 'caption': 'a close up of person sitting with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320180.jpg', 'caption': 'Closeup of a person whose legs show a lot of veins.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320180.jpg', 'caption': 'A lady sitting on a couch with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476398.jpg', 'caption': 'A woman watching her computer screen in a dark room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476398.jpg', 'caption': 'A woman sits with an open laptop computer on her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476398.jpg', 'caption': 'a woman wearing a black top is looking at a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476398.jpg', 'caption': 'A woman is covering her mouth reacting to something she is watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476398.jpg', 'caption': 'A woman is in the dark with her hand to her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129784.jpg', 'caption': 'a man that is typing on his laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129784.jpg', 'caption': 'A man sitting in front of a laptop computer at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129784.jpg', 'caption': 'A man working on a computer at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129784.jpg', 'caption': 'A man is working on his laptop and papers are lying about.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129784.jpg', 'caption': 'A man is using his laptop in a library', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227901.jpg', 'caption': 'A couple of people sitting down by a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227901.jpg', 'caption': 'A girl working on a laptop next to a man on an music player.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227901.jpg', 'caption': 'A woman sitting next to a man using a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227901.jpg', 'caption': 'A woman and a man enjoying their audio devices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227901.jpg', 'caption': 'Two people with headphones are sitting against the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578861.jpg', 'caption': 'A woman is talking on the phone in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578861.jpg', 'caption': 'A woman sitting at a table in front of a laptop talking on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578861.jpg', 'caption': 'A lady at a table with a laptop computer talking on her telephone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578861.jpg', 'caption': 'Woman talking on cellphone in front of personal computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578861.jpg', 'caption': 'A woman sitting at a computer desk talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405007.jpg', 'caption': 'A European street of historic red-brick buildings and a spire rising in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405007.jpg', 'caption': 'a big building that has a clock tower on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405007.jpg', 'caption': 'City square of old brick buildings and clock tower in middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405007.jpg', 'caption': 'Several people are walking through a town square.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405007.jpg', 'caption': 'A nice european city with some towers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140860.jpg', 'caption': 'a person sitting on the ground with a laptop ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140860.jpg', 'caption': 'A man is seated on a floor with a computer and some papers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140860.jpg', 'caption': 'A male college student sits on a classroom floor looking over notes with a laptop on his lap. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140860.jpg', 'caption': 'The young man is setting in the floor with his computer ear an outlet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140860.jpg', 'caption': 'Student sitting on the floor using a plugged in laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315603.jpg', 'caption': 'A man with a laptop on his desk is sitting in front of a computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315603.jpg', 'caption': 'A man is sitting at a desk with a desktop computer on it while he uses a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315603.jpg', 'caption': 'He must need two computers for his job.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315603.jpg', 'caption': 'a man and his laptop at a desk in an office', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315603.jpg', 'caption': 'A man in a chair holding a laptop in his lap at a desk with a standard compute on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207180.jpg', 'caption': 'A group of people walking around a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207180.jpg', 'caption': 'an ornate bus station with a grand clock in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207180.jpg', 'caption': 'A large long hallway with many doors to the sides and a large window at the end with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207180.jpg', 'caption': 'A terminal with benches and several people walking around', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207180.jpg', 'caption': 'A very large building with the sun shining through the windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314694.jpg', 'caption': 'A young bot sitting at a desk using a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314694.jpg', 'caption': 'Smiling boy in red shirt using laptop on the kitchen table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314694.jpg', 'caption': 'Young boy with red shirt and jeans sits at desk in front of laptop computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314694.jpg', 'caption': 'A young boy stares at the computer screen while he does his homework in the cluttered kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314694.jpg', 'caption': 'A young boy using a lap top by a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037707.jpg', 'caption': \"A cat sitting on a laptop computer with it's mouse reaching for the mouse pad.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037707.jpg', 'caption': \"A cat stretches it's paw out across a laptop keyboard\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037707.jpg', 'caption': 'A black and white cat partially sitting on a laptop sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037707.jpg', 'caption': 'A cat with its paws on a laptop keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037707.jpg', 'caption': 'A cat rests its paw near the trackpad of a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160480.jpg', 'caption': 'a woman sits in a chair while using a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160480.jpg', 'caption': 'A women is sitting on the floor with a coffee and laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160480.jpg', 'caption': 'A woman sitting near a window indoors and using her laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160480.jpg', 'caption': 'A woman sitting on a beanbag chair on her laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160480.jpg', 'caption': 'A woman that is sitting down with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370765.jpg', 'caption': \"Two dogs destroying a brown teddy bear by ripping out it's stuffing.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370765.jpg', 'caption': 'Two dogs with a ripped up teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370765.jpg', 'caption': 'A dog laying beside a teddy bear with it stuffing coming out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370765.jpg', 'caption': 'Dogs sit near destroyed stuffed animal on carpet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370765.jpg', 'caption': '2 dogs sit on a wooden floor near the toy they destroyed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357633.jpg', 'caption': 'An alcoholic beverage besides a laptop within a restaurant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357633.jpg', 'caption': 'a laptop on a wooden table near a drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357633.jpg', 'caption': 'A laptop sitting on a picnic table with a glass of beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357633.jpg', 'caption': 'A laptop is on a table with a frosty beverage nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357633.jpg', 'caption': 'A beverage in a glass on a table next to a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066394.jpg', 'caption': 'A brass clock mounted onto a building near a patch of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066394.jpg', 'caption': 'A clock with roman numerals that is attached to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066394.jpg', 'caption': 'A decorative clock hanging on a stone building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066394.jpg', 'caption': 'A fancy clock graces the corner of this old building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066394.jpg', 'caption': 'A public clock with ornate art deco figurines of women supporting it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164005.jpg', 'caption': 'A baby is sitting on a bed playing with a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164005.jpg', 'caption': 'A baby using a laptop computer on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164005.jpg', 'caption': 'A baby sitting in front of a laptop computer on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164005.jpg', 'caption': 'A baby girl plays with a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164005.jpg', 'caption': 'Small child sits on a bed and touches a laptop keyboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125228.jpg', 'caption': 'A baby sitting on a bed using a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125228.jpg', 'caption': 'a toddler playing with a laptop on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125228.jpg', 'caption': 'A baby on a bed looks like it is typing on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125228.jpg', 'caption': 'A small baby is on a bed with a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125228.jpg', 'caption': 'A baby is playing on a laptop and having fun. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496379.jpg', 'caption': 'A baby sits on a bed and plays with a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496379.jpg', 'caption': 'A baby is amused by the open laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496379.jpg', 'caption': 'A baby playing with a laptop on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496379.jpg', 'caption': 'A baby is on a bed playing with a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496379.jpg', 'caption': 'A baby sitting on a baby reaching for a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488977.jpg', 'caption': 'A baby is playing in bed with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488977.jpg', 'caption': 'A baby is sitting and has her hands on a laptop keyboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488977.jpg', 'caption': 'A small child in pajamas playing with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488977.jpg', 'caption': 'a baby with a yellow onsie on playing with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488977.jpg', 'caption': 'A baby sitting on a clean bed touches a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085826.jpg', 'caption': 'A baby sits on a bed, laughing, with a laptop computer open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085826.jpg', 'caption': 'A baby girl smiling while sitting in front of an open laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085826.jpg', 'caption': 'a baby sitting on a bed by a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085826.jpg', 'caption': 'The baby is sitting on the bed reaching for the laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085826.jpg', 'caption': 'A bay smiles sitting on a bed looking at a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477474.jpg', 'caption': 'A laptop open with images on the screen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477474.jpg', 'caption': 'A laptop on laying on a bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477474.jpg', 'caption': 'A laptop on sitting on a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477474.jpg', 'caption': 'A laptop can even be used while in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477474.jpg', 'caption': 'A laptop computer sitting on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335473.jpg', 'caption': 'The microwave and the television were set at the street for recycling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335473.jpg', 'caption': 'A television and microwave are on the sidewalk.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000447038.jpg', 'caption': 'A bathroom with sinks, toilet, and cabinets in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447038.jpg', 'caption': 'a white sink in a bathroom with tile floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550597.jpg', 'caption': 'A white sink sitting next to a toilet near a tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550597.jpg', 'caption': 'A couple of towels that are sitting on a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550597.jpg', 'caption': 'A black and white photo of a bathroom, with a toilet, sink, and tub all in a line against a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550597.jpg', 'caption': 'A towel is hung above the toilet in a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550597.jpg', 'caption': 'A black and white bathroom scene includes a sink, a toilet, and a bathtup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374707.jpg', 'caption': 'a glass walled shower in a home bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374707.jpg', 'caption': 'A bathroom with a toilet, tiled floor, and a see-through shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374707.jpg', 'caption': 'a bathroom that has a toilet and a shower in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374707.jpg', 'caption': \"The glass shower enclosure doesn't leave anything to the imagination.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374707.jpg', 'caption': 'A bathroom with a toilet and stand up shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531111.jpg', 'caption': 'A bathroom with a black and white checkered floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531111.jpg', 'caption': 'The bathroom has black and white checkered flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531111.jpg', 'caption': 'A bathroom with a checkered floor and an enclosed shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531111.jpg', 'caption': 'A towel hanging on a shower stall in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531111.jpg', 'caption': 'A towel hanging on the bar in the bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577564.jpg', 'caption': 'A white toilet sitting next to a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577564.jpg', 'caption': 'A small bathroom with toilet and sink in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577564.jpg', 'caption': 'A toilet and a sink next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577564.jpg', 'caption': 'A lavatory stall with a toilet and a urinal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577564.jpg', 'caption': 'a all white bathroom with the toilet seat up ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356299.jpg', 'caption': 'A white sink in a bathroom under a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356299.jpg', 'caption': 'A bathroom has decorative tile on the floor and is clean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356299.jpg', 'caption': 'An inside view of a bathroom with colorful tiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356299.jpg', 'caption': 'A bathroom with a glass shower door, a sink and a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356299.jpg', 'caption': 'a bath room with a sink a mirror and a shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176275.jpg', 'caption': 'Someone is taking a basic shot of the bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176275.jpg', 'caption': 'A person with a camera inside of a mirror in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176275.jpg', 'caption': 'A clean bathroom is pleasantly decorated with wallpaper and decorations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176275.jpg', 'caption': 'A bathroom with a white tub and a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176275.jpg', 'caption': 'A bathroom that has a sink and a small mirror above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442726.jpg', 'caption': 'A long line a men on bicycles in a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442726.jpg', 'caption': 'A group of men are racing on bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442726.jpg', 'caption': 'A group of bicycle riders travelling down a street.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442726.jpg', 'caption': 'a group of men riding bikes down a road and wearing helmets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442726.jpg', 'caption': 'very many cyclists on the race with helmets on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131063.jpg', 'caption': 'A large bathroom features tiled walls, two mirrors and two sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131063.jpg', 'caption': 'a bathroom with two sinks mirrors and some bottles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131063.jpg', 'caption': 'A couple of sinks and mirrors in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131063.jpg', 'caption': 'A bathroom vanity with double sinks and double mirrors surrounded by tile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131063.jpg', 'caption': 'A bathroom view depicting a vanity with two sinks and two mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220446.jpg', 'caption': 'A standing toilet hole filled with nasty filthy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220446.jpg', 'caption': 'there is a very dirty rusted outline of a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220446.jpg', 'caption': 'A empty pipe hole where a toilet used to be.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220446.jpg', 'caption': 'a old bathroom with a toilet missing in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220446.jpg', 'caption': 'A rusted area in the floor where a toilet used to sit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195897.jpg', 'caption': 'A restroom with a toilet basin, toilet paper and a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195897.jpg', 'caption': 'A small bathroom has a toilet and small sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195897.jpg', 'caption': 'A white toilet sitting under a window next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195897.jpg', 'caption': 'An entire bathroom that is completely white including a toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195897.jpg', 'caption': 'A white bathroom cubicle with a compact toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460944.jpg', 'caption': 'A toilet and toilet paper roll sit in a partially constructed bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460944.jpg', 'caption': 'a bathroom being remodeled around the sink and toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460944.jpg', 'caption': 'An unfinished bathroom with a toilet and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460944.jpg', 'caption': 'A bathroom that looks incomplete and has concrete walls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460944.jpg', 'caption': 'A bathroom toilet in a small room being remodeled ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107427.jpg', 'caption': 'A toilet in a small room with a window and unfinished walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107427.jpg', 'caption': 'A white toilet bowl in a room with a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107427.jpg', 'caption': 'A small bathroom is being renovated and the walls are stripped.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107427.jpg', 'caption': 'A white toilet and window in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107427.jpg', 'caption': 'A toilet that is in a bathroom with unpainted walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126941.jpg', 'caption': 'A toilet room in the process of being renovated ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126941.jpg', 'caption': 'A commode in a bathroom that is in the middle of being remodeled', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126941.jpg', 'caption': 'An open toilet in a room that is undergoing construction. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126941.jpg', 'caption': 'THERE IS A TOILET THAT IS IN THE BATHROOM ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126941.jpg', 'caption': 'A white toilet sitting inside of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247184.jpg', 'caption': 'A bathroom being remodeled with a white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247184.jpg', 'caption': 'An old bathroom with a toilet and unpainted walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247184.jpg', 'caption': 'A nasty view of a clean white toilet in the image. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247184.jpg', 'caption': 'A toilet sits in an unfinished water closet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247184.jpg', 'caption': 'SMALL BATHROOM UNDER REMODEL,WITH JUST A TOILET AND ONE ROLL OF TOILET PAPER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012323.jpg', 'caption': 'A toilet and two rolls of toilet paper in a small room with ledge and window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012323.jpg', 'caption': 'A toilet inside a small bathroom being remodled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012323.jpg', 'caption': 'a bath room with a toilet and two rolls of toilet paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012323.jpg', 'caption': 'The bathroom with a toilet having an unfinished wall behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012323.jpg', 'caption': 'A picture of a toilet seat with the lid up in an unfinished bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363830.jpg', 'caption': 'A big bathroom with a couch a bathtub in the middle of the room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363830.jpg', 'caption': 'A spacious bathroom has an old fashioned claw tub with shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363830.jpg', 'caption': 'A claw foot tub with a shower surround stands in a Victorian home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363830.jpg', 'caption': 'An unusual shower and tub combination in a colorful bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363830.jpg', 'caption': 'A bathrub is in the middle of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365503.jpg', 'caption': 'A bath room with an old fashioned looking tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365503.jpg', 'caption': 'The large bathtub has a bright window near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365503.jpg', 'caption': 'a bath room with a bath tub a window and tiled floors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365503.jpg', 'caption': 'A bathtub next to a tile floor and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365503.jpg', 'caption': 'a bathtub in a bathroom next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435937.jpg', 'caption': 'its sunny outside and you can see the shadows of benches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435937.jpg', 'caption': 'Benches are casting shadows onto the side walk as a man rides a bike in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435937.jpg', 'caption': 'A man riding on a bike near several patio chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435937.jpg', 'caption': 'A man on a bicycle riding past a small line of tables and chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435937.jpg', 'caption': 'A bicyclist pedaling through a cobblestone courtyard with benches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168626.jpg', 'caption': 'A white toilet sitting in a bathroom next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168626.jpg', 'caption': 'a beautiful bathroom with a white toilet bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168626.jpg', 'caption': 'a bath room with a toilet a toilet paper holder and a stand up shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168626.jpg', 'caption': 'A large open bathroom with tile floors and shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168626.jpg', 'caption': 'An empty bathroom with a toilet and hand rails', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313063.jpg', 'caption': 'A bathroom with a sink, toilet, tub and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313063.jpg', 'caption': 'a bathroom with a toilet sitting next to a bath tub ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313063.jpg', 'caption': 'A bathroom with a green bathmat over the edge of the tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313063.jpg', 'caption': 'a bath room with a toilet a bath tub and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313063.jpg', 'caption': 'This bathroom has a wood floor and wood on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441196.jpg', 'caption': 'A man taking a selfie in a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441196.jpg', 'caption': 'A person standing in front of a mirror talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441196.jpg', 'caption': 'a man standing by a mirror while taking a selfie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441196.jpg', 'caption': 'A man taking a picture of himself in a reflection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441196.jpg', 'caption': 'A man takes a profile picture of himself in a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214727.jpg', 'caption': 'A man standing in a bathroom in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214727.jpg', 'caption': 'A man taking a photo of himself in a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214727.jpg', 'caption': 'A persons reflection in the bathroom mirror holding a camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214727.jpg', 'caption': 'A black man is taking a mirror selfie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214727.jpg', 'caption': 'A man with a red shirt taking a sideways picture in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310532.jpg', 'caption': 'A white sink and toilet in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310532.jpg', 'caption': \"A small and clean bathroom thanks is in someone's house. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310532.jpg', 'caption': 'A white tub sitting next to a white sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310532.jpg', 'caption': 'A very classic bathroom that is decorated in brown and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310532.jpg', 'caption': 'The bathroom has an older sleek look ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292819.jpg', 'caption': 'a bicycle sits on its stand in the middle of a grassy, wooded area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292819.jpg', 'caption': 'a bike standing up on the ground next to a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292819.jpg', 'caption': 'A large bike parked in the woods by a set of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292819.jpg', 'caption': 'bicycle parked on a grassy hill by tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292819.jpg', 'caption': 'a bike that is parked out in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366867.jpg', 'caption': 'A bath tub sitting next to a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366867.jpg', 'caption': 'A small bathroom with a white bathtub, white pedestal sink, white tile walls, and black tile floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366867.jpg', 'caption': 'A corner of a rest room with a window in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366867.jpg', 'caption': 'A white bathroom with toilet, pedestal sink and bathtub and a window over the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366867.jpg', 'caption': 'A white sink and bathtub sit in a clean, empty bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225847.jpg', 'caption': 'A white sink in a bathroom under a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225847.jpg', 'caption': 'A bathroom sink in front of an open window and next to a shower.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225847.jpg', 'caption': 'a bathroom with blue tile walls and window above the sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225847.jpg', 'caption': \"This bathroom's window is open near the sink.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225847.jpg', 'caption': 'A blue and white bathroom with a pedestal sink under a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239376.jpg', 'caption': 'The bathroom is equipped with several new appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239376.jpg', 'caption': 'The bathroom is clean and ready to use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239376.jpg', 'caption': 'A bathroom has a tub, and a washing machine in front of a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239376.jpg', 'caption': 'a bath room with a bath tub a washing machine and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239376.jpg', 'caption': 'The bathroom is a washing machine in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042383.jpg', 'caption': 'A white toilet sitting next to a white bath tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042383.jpg', 'caption': 'A shower curtain that is hanging in a bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042383.jpg', 'caption': 'A tiny bathroom has a brightly colored shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042383.jpg', 'caption': 'a bathroom with a toilet and tub inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042383.jpg', 'caption': 'A bathroom with a toilet, paper roll, bowl brush and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400123.jpg', 'caption': 'Bathroom decorated in blues and greens with a mirror over the vanity.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400123.jpg', 'caption': 'A minimally cluttered bathroom view shows a white sink and toilet, mirror, towel ring, a blue wall and a shower space with a patterned but not colorful shower curtain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400123.jpg', 'caption': 'A clean bathroom is seen in this image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400123.jpg', 'caption': 'A bathroom with a green hand towel and blue walls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400123.jpg', 'caption': 'A towel that is hanging near a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567220.jpg', 'caption': 'An open door leading to a bathroom toilet, with a shower rack and bureau visible.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567220.jpg', 'caption': 'A bathroom has a red circular rug by the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567220.jpg', 'caption': 'A picture of a bathroom with a toilet, rug, and shelving on the door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567220.jpg', 'caption': 'A bathroom with a toilet that has a crooked tank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567220.jpg', 'caption': 'Small bathroom with a toilet, shower, and utility rack on the door. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047559.jpg', 'caption': 'there is a small bathroom that is white and has a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047559.jpg', 'caption': 'A toilet is sitting in a corner of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047559.jpg', 'caption': 'A white toilet in a very small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047559.jpg', 'caption': 'Small bathroom with only a toilet and throw rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047559.jpg', 'caption': 'A view of a toilet from the adjoining room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028790.jpg', 'caption': 'A door open to a bathroom with the vanity showing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028790.jpg', 'caption': 'There is a bright window in the small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028790.jpg', 'caption': 'A litter box sits on the floor of this small bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028790.jpg', 'caption': 'A door opens into a narrow room with towels and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028790.jpg', 'caption': 'A narrow bathroom is tidy and comes equipped with a litterbox.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354724.jpg', 'caption': 'A street filled with lots of traffic next to white homes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354724.jpg', 'caption': 'four cars stopped at a red traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354724.jpg', 'caption': 'A street light and street sign hanging over an intersection with cars going through.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354724.jpg', 'caption': 'A few cars are driving down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354724.jpg', 'caption': 'Group of cars passing by a long row of apartment buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209788.jpg', 'caption': 'A red traffic light sitting at the corner of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209788.jpg', 'caption': 'An automobile stopped at a traffic light by a grey building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209788.jpg', 'caption': 'A red light on the side of an old building near an alley way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209788.jpg', 'caption': 'A traffic light hanging on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209788.jpg', 'caption': 'A traffic light on the side of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459408.jpg', 'caption': 'A bathroom under construction with a white tub next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459408.jpg', 'caption': 'A bathroom is being torn day during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459408.jpg', 'caption': 'A bathroom has a tub with demolished walls in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459408.jpg', 'caption': 'A bathtub filled with debris in a bathroom with some walls torn out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459408.jpg', 'caption': 'the bathroom is not constructed and garbage is in the tub. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429025.jpg', 'caption': 'A group of people walk around in a business area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429025.jpg', 'caption': 'On the street at night with a crowd of people and a utility pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429025.jpg', 'caption': 'A light pole sitting next to a street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429025.jpg', 'caption': 'Many people walk down a busy street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429025.jpg', 'caption': 'A busy gas station with groups of people coming through.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271035.jpg', 'caption': 'a cat laying inside of a bathroom sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271035.jpg', 'caption': 'A curious cat looking in a sink of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271035.jpg', 'caption': 'a cat that is drinking out of a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271035.jpg', 'caption': 'The black and orange cat is standing on the bathroom sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271035.jpg', 'caption': 'Cat drinking water from a sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416668.jpg', 'caption': 'A black cat is huddled in the bathroom sink for a perfect fit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416668.jpg', 'caption': 'A large black cat sits inside of an empty bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416668.jpg', 'caption': 'a black cat sitting in a sink in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416668.jpg', 'caption': 'The black cat is alert, lying in front of the bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416668.jpg', 'caption': 'a black cat sitting in a bathroom sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188651.jpg', 'caption': 'The picture of a cat under a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188651.jpg', 'caption': 'A white and broncat is sitting under a car ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188651.jpg', 'caption': 'A cat lays on the ground underneath a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188651.jpg', 'caption': 'a cat chillin under a car, asking to get run over', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188651.jpg', 'caption': 'A white cat is sitting under a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252203.jpg', 'caption': 'A couple of dogs sitting in the front seats of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252203.jpg', 'caption': 'There is a dog in a car licking at the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252203.jpg', 'caption': 'A dog with his tongue out sits ion a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252203.jpg', 'caption': 'an image of a dog sitting in the passenger seat of a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252203.jpg', 'caption': 'Two dogs sitting on a car seat wanting to get out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237777.jpg', 'caption': 'Two elephants standing next to each other in a jungle forest. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237777.jpg', 'caption': 'Two elephants playing in the water and mud.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237777.jpg', 'caption': 'Two elephants are walking through the mud in a clearing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237777.jpg', 'caption': 'Two elephants getting a drink from muddy water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237777.jpg', 'caption': 'Two brown elephants walking through mud in a jungle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486521.jpg', 'caption': 'A hood lifted on a Chevrolet vehicle with a teddy bear on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486521.jpg', 'caption': 'A car with the hood up and a teddy bear inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486521.jpg', 'caption': 'A show car parked with its hood open and a teddy bear tucked into the engine well.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486521.jpg', 'caption': 'a car wit hits hood open and a stuffed animal in the engine area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486521.jpg', 'caption': 'A vintage Chevrolet automobile with a toy bear under its hood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573962.jpg', 'caption': 'A picture of rush hour traffic on the streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573962.jpg', 'caption': 'A look through a window at a very busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573962.jpg', 'caption': 'A picture taken from inside a taxi of a crowded Asian street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573962.jpg', 'caption': 'a person drives as a bunch of other cars drive on a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573962.jpg', 'caption': 'A street with traffic on it as seen out of a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473623.jpg', 'caption': 'A white porcelain toilet with the lid down, in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473623.jpg', 'caption': 'A bathroom with a white porcelin toilet on a tile floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473623.jpg', 'caption': 'A toilet sits alone on a tile floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473623.jpg', 'caption': 'A white toilet sitting in a bathroom next to a door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473623.jpg', 'caption': 'Small white toilet sitting in a small corner next to a wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052087.jpg', 'caption': 'A man getting a drink from a water fountain that is a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052087.jpg', 'caption': 'A boy drinking water from a toilet water fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052087.jpg', 'caption': 'A young man drinking from a water fountain in the shape of a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052087.jpg', 'caption': 'A young person has his face close to the toilet bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052087.jpg', 'caption': 'A man taking a drink from a water fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324492.jpg', 'caption': 'A colorful clock tower sitting int he middle of a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324492.jpg', 'caption': 'A purple clock tower in the middle of a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324492.jpg', 'caption': 'A statue with a clock on it near a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324492.jpg', 'caption': 'A large toy like clock tower in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324492.jpg', 'caption': 'A large tall tower with a clock on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480215.jpg', 'caption': 'A bathroom with tile flooring and walls, and a white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480215.jpg', 'caption': 'A clean toilet in a small tiled bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480215.jpg', 'caption': 'A white toilet sitting in a bathroom next to a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480215.jpg', 'caption': 'A white toilet with an external hygiene nozzle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480215.jpg', 'caption': 'A toilet with a spray hose attached to it sits in a white bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306444.jpg', 'caption': 'A bathroom scene with focus on the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306444.jpg', 'caption': 'A bathroom with a toilet, sink and red tile flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306444.jpg', 'caption': 'A bathroom with white fixtures, a red tiled floor and a black counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306444.jpg', 'caption': 'A bathroom with a small odd shaped toilet next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306444.jpg', 'caption': 'The view of a sink and a toilet in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504948.jpg', 'caption': 'A blue motorcycle parked outside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504948.jpg', 'caption': 'A motorcycle parked outside of a building underneath a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504948.jpg', 'caption': 'A motorcycle is shown on the sidewalk next to window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504948.jpg', 'caption': 'Brick sidewalk with parked motorcycle, firehose in wall and street sign with arrow and foreign words. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504948.jpg', 'caption': 'A motorcycle parked behind a one way stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019451.jpg', 'caption': 'A road where cars and motorcycle are parked at the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019451.jpg', 'caption': 'A set of motorcycles parked in front of a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019451.jpg', 'caption': 'a street sign in front of a motorcycle and car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019451.jpg', 'caption': 'Two motorcycles parked in a \"no parking\" zone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019451.jpg', 'caption': 'Two motorcycles parked by a sign at the curb ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069494.jpg', 'caption': 'A white toilet and towel in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069494.jpg', 'caption': 'A single bathroom with toilet, shower and window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069494.jpg', 'caption': 'A white toilet sitting under a window in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069494.jpg', 'caption': 'a bathroom with a toilet sink and a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069494.jpg', 'caption': 'A toilet that is seated in front of a bathroom window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205573.jpg', 'caption': 'A motorcycle stopped on the road during nighttime in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205573.jpg', 'caption': 'a man wearing a white helmet is riding a red motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205573.jpg', 'caption': 'A man on a motorcycle stopped at a stop light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205573.jpg', 'caption': 'A motorcyclist stopped at an intersection of a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205573.jpg', 'caption': 'A photo of a person on a motorcycle on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075857.jpg', 'caption': 'A church filled with rows of wooden seats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075857.jpg', 'caption': 'The inside of a church with wooden pews and a stained glass window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075857.jpg', 'caption': 'A church with a large altar and high ceilings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075857.jpg', 'caption': 'A very large and pretty church full of wooden pews.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075857.jpg', 'caption': 'A view along the transept of an older style church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545735.jpg', 'caption': 'A woman holding a yellow umbrella next to a cathedral.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545735.jpg', 'caption': 'A smiling young woman with open yellow umbrella standing in front of a castle-like building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545735.jpg', 'caption': 'A woman is standing outside a castle holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545735.jpg', 'caption': 'there is a woman holding a umbrella in front of a castle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545735.jpg', 'caption': 'The woman is standing outside of the large buildings with her umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381382.jpg', 'caption': 'A partially eaten slice of cake with a spoon on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381382.jpg', 'caption': 'A late with cake, ice cream and two spoons on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381382.jpg', 'caption': 'Piece of partially eaten chocolate cake on a white plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381382.jpg', 'caption': 'A half eaten chocolate dessert sits on a plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381382.jpg', 'caption': 'a plate with a half eaten cake on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290070.jpg', 'caption': 'Motorcycle on platform to be worked on in garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290070.jpg', 'caption': 'A motorcycle on a table in the shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290070.jpg', 'caption': 'An orange motorcycle on a motorcycle work stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290070.jpg', 'caption': 'A motorcycle up on platform in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290070.jpg', 'caption': 'A motorcycle up on a shop table in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433919.jpg', 'caption': 'Many packages of toilet paper are unwrapped next to the toilet in a messy bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433919.jpg', 'caption': 'A bathroom has toilet paper on the floor and some rags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433919.jpg', 'caption': 'An area shows a room with a toilet with red wrappers on the floor and another room with a washing machine in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433919.jpg', 'caption': 'A small and dirty toilet saperate bathroom area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433919.jpg', 'caption': 'A shot of a separated bathroom with its toilet and shower separated. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287151.jpg', 'caption': 'View of a narrow bathroom with white vanity and commode with brown tile', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287151.jpg', 'caption': 'a bathroom with a sink a toilet and a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287151.jpg', 'caption': 'A modern bathroom with one window, toilet and vanity.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287151.jpg', 'caption': 'A bathroom with a window, toilet and counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287151.jpg', 'caption': 'A white bathroom with a tiled floor and one latticed window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299550.jpg', 'caption': 'A white ceramic sink next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299550.jpg', 'caption': 'there is a brown box on the toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299550.jpg', 'caption': 'A sink is next to a toilet with a card box on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299550.jpg', 'caption': 'a bathroom with a sink and toilet inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299550.jpg', 'caption': 'A pedestal sink and a toilet in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549817.jpg', 'caption': 'The toilet is in a room with exposed pipes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549817.jpg', 'caption': 'A dirty toilet bowl in a room with pipes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549817.jpg', 'caption': 'Dirty open toilet surrounded by a green metal cabinet and exposed metal pipes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549817.jpg', 'caption': 'A dirty toilet in a small bathroom surrounded by pipes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549817.jpg', 'caption': 'A toilet sits in a room that appears to be partially abandoned.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454642.jpg', 'caption': 'Two people are riding motor scooters in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454642.jpg', 'caption': 'two people riding scooters on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454642.jpg', 'caption': 'Some people riding motorcycles in a wide street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454642.jpg', 'caption': 'a parked motorcycle and two people riding motorcycles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454642.jpg', 'caption': 'Two people riding on mopeds in a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184557.jpg', 'caption': 'A cat with its paws halfway into an open toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184557.jpg', 'caption': 'A cat that is half in a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184557.jpg', 'caption': 'An orange tabby kitten explores the toilet in a bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184557.jpg', 'caption': 'A cat hangs into the inside of a toilet bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184557.jpg', 'caption': 'A cat sitting on top of a toilet seat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271970.jpg', 'caption': \"A small white church with a clock on the side of it's tower sitting on the end of a street \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271970.jpg', 'caption': 'A church with a clock on the tower is at the entry to a neighborhood. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271970.jpg', 'caption': 'A white building that looks like a church', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271970.jpg', 'caption': 'The town has a small church in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271970.jpg', 'caption': 'A white building with a clock on its side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412592.jpg', 'caption': 'A bowl full of broccoli with spoons on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412592.jpg', 'caption': 'A bowl that has broccoli and spoons in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412592.jpg', 'caption': 'A white bowl filled with broccoli and a couple of spoons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412592.jpg', 'caption': 'A spotted glass bowl contains spoons and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412592.jpg', 'caption': 'A bowl is filled with fresh chopped broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479440.jpg', 'caption': 'A white cat sitting on the floor next to a feeding dish and a mat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479440.jpg', 'caption': 'a white cat sitting on the floor next to her food bowls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479440.jpg', 'caption': 'A white kitty cat sitting on a floor near a dish and a red towel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479440.jpg', 'caption': 'A white cat sits on the floor beside a brown towel. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479440.jpg', 'caption': 'A white fluffy cat sitting on the floor next to a towl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025708.jpg', 'caption': 'A macaroni dish with broccoli, onion and tomato', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025708.jpg', 'caption': 'A bowl of pasta, broccoli, onion, and carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025708.jpg', 'caption': 'A bowl filled with pasta, veggies and seasoning.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025708.jpg', 'caption': 'A photo of a homemade swirly pasta with broccoli, carrots, and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025708.jpg', 'caption': 'some noodles are mixed in a blue bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187647.jpg', 'caption': 'Two brown teddy bears sitting on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187647.jpg', 'caption': 'Two teddy bears on a wooden table holding chocolate bars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187647.jpg', 'caption': 'a close up of two stuffed animals siting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187647.jpg', 'caption': 'two stuffed animal bears sitting next to a candy bar and a flower pot on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187647.jpg', 'caption': 'Two teddy bears with candy bars sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092173.jpg', 'caption': 'A black and white cat laying on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092173.jpg', 'caption': 'THERE IS A CAT THAT IS LYING DOWN ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092173.jpg', 'caption': 'there is a cat laying on a pillow on top of a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092173.jpg', 'caption': 'a cat lying on a green piece of material on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092173.jpg', 'caption': 'A black and white cat laying on the carrying case of a computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048786.jpg', 'caption': 'a group of people on motorcycles drive down the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048786.jpg', 'caption': 'Several motorcyclists parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048786.jpg', 'caption': 'a number of people riding motorcycles on a highway ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048786.jpg', 'caption': 'A group of bikers are riding down the road in traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048786.jpg', 'caption': 'A road shot has a radio antennae and a small section of windshield, a brown hillside, the vanishing road beside it, bikers, close to the antennae, and far away, and off in the distance, signs, a car, and a big blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148737.jpg', 'caption': 'A cat sitting on a hard wood floor in front of a large library of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148737.jpg', 'caption': 'A cat sitting on the wood floor cleaning itself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148737.jpg', 'caption': 'a cat on a wooden floor in front of a tall book shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148737.jpg', 'caption': 'A cat is on the floor by a large bookcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148737.jpg', 'caption': 'A cat lying on a hard wood floor in front of a bookshelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577526.jpg', 'caption': 'A black and white cat is laying on a green pillow on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577526.jpg', 'caption': 'A cat laying on a pillow on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577526.jpg', 'caption': 'a close up of a cat laying on a pillow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577526.jpg', 'caption': 'A black and white cat is lying on a green pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577526.jpg', 'caption': 'Black and white cat laying on a green pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399942.jpg', 'caption': 'A row of parked motorcycles sitting next to a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399942.jpg', 'caption': 'A bunch of motorized bikes and motorcycles in front of a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399942.jpg', 'caption': 'Many motorcycles parked outside a Asian themed building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399942.jpg', 'caption': 'Motorcycles parked outside a pagoda style building among trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399942.jpg', 'caption': 'A group of motorcycles that are on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181296.jpg', 'caption': 'A person that is sitting on top of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181296.jpg', 'caption': 'A man wearing riding gear on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181296.jpg', 'caption': 'A man in full riding gear on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181296.jpg', 'caption': 'There is a man sitting on a red motorcycle wearing a black helmet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181296.jpg', 'caption': 'A motorcycle rider with a helmet and safety gear on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547583.jpg', 'caption': 'A train door is open of a white and red train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547583.jpg', 'caption': 'A open door on a large white train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547583.jpg', 'caption': 'a red white and black train and its door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547583.jpg', 'caption': 'A passenger train parked at a train station next to a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547583.jpg', 'caption': 'The train doors are opened for the passengers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031000.jpg', 'caption': 'Many oranges have been placed inside a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031000.jpg', 'caption': 'A bowl full of oranges that still have stems', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031000.jpg', 'caption': 'Eight oranges sitting in a white bowl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031000.jpg', 'caption': 'a while bowl full of oranges with the stems on them ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031000.jpg', 'caption': 'Seven oranges stacked together in a white bowl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279806.jpg', 'caption': 'A dirt bike rider doing a stunt jump in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279806.jpg', 'caption': 'A man riding a dirt bike becomes airborne.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279806.jpg', 'caption': 'A motorcyclist is in mid air hanging on to the handlebars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279806.jpg', 'caption': 'A person performs a stunt jump on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279806.jpg', 'caption': 'Daring guy does tricks mid air on motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135690.jpg', 'caption': 'A man riding on the back of a dirt bike in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135690.jpg', 'caption': 'A person on a motorcycle high in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135690.jpg', 'caption': 'The motocross rider performs a jump in mid-air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135690.jpg', 'caption': 'A person jumping high in the air holding onto the back of a dirt bike. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135690.jpg', 'caption': 'A man on a motorcycle is in mid air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522198.jpg', 'caption': 'a person riding a dirt bike in the air with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522198.jpg', 'caption': 'A motorcycle rider and his bike fly through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522198.jpg', 'caption': 'Professional motorcycle stunt rider midair with bike in blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522198.jpg', 'caption': 'a person flying through the air holding onto the handles of a dirt bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522198.jpg', 'caption': 'A motorcycle and rider are in mid air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422870.jpg', 'caption': \"Two motorcycles sitting in a trailer that's being pulled behind an RV.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422870.jpg', 'caption': 'a camper and motorcycles on a trailer on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422870.jpg', 'caption': 'two motorcycles on the back of a trailer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422870.jpg', 'caption': 'A motor home is pulling flat bed with motor bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422870.jpg', 'caption': 'a trailer truck riding down the street lifting two motorcycles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524887.jpg', 'caption': 'Two racing motorcycles and riders racing at a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524887.jpg', 'caption': 'A couple of men racing motorcycles next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524887.jpg', 'caption': 'two motorcycles with stickers on them racing down a track ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524887.jpg', 'caption': 'Two people that are racing on some fast motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524887.jpg', 'caption': 'Two people on motorcycles are in a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510636.jpg', 'caption': 'a woman is sitting under an umbrella outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510636.jpg', 'caption': 'A woman sitting under an umbrella in the middle of a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510636.jpg', 'caption': 'A woman that is sitting under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510636.jpg', 'caption': 'The woman sitting at the table looks bored.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510636.jpg', 'caption': 'A woman sitting at a table next to an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490582.jpg', 'caption': 'A man and a woman on a motorcycle in helmets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490582.jpg', 'caption': 'a lady driving a motor cycle with a man behind her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490582.jpg', 'caption': 'two people siting on a dirt bike wearing helmets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490582.jpg', 'caption': 'a man and a woman sitting on a black and yellow motor bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490582.jpg', 'caption': 'Two people in helmets on a parked motorcycle and a small palm tree to the side of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260409.jpg', 'caption': 'A person in a helmet standing by their motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260409.jpg', 'caption': 'A motorcyclist stands next to a motorcycle at a lookout over a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260409.jpg', 'caption': 'A person with his motorcycle by the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260409.jpg', 'caption': 'A person posing next to their motorcycle by the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260409.jpg', 'caption': 'A motorcyclist in his helmet parked along side a road near the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271680.jpg', 'caption': 'A cute orange cat sitting on top of a structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271680.jpg', 'caption': 'A cat that is laying down on a roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271680.jpg', 'caption': 'an orange and white cat and some bushes and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271680.jpg', 'caption': 'A cat with a stare that could kill looking straight ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271680.jpg', 'caption': 'A cat is sitting on some wood under the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092115.jpg', 'caption': 'A train sitting next to a platform in a tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092115.jpg', 'caption': 'a train door open at the railway station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092115.jpg', 'caption': 'A door on a train opened at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092115.jpg', 'caption': 'A train stopped at a platform with its doors open. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092115.jpg', 'caption': 'a close up of a train at a platform with its doors open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466229.jpg', 'caption': 'a dog that is laying next to another person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466229.jpg', 'caption': 'A dog sleeping next to someone playing video games', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466229.jpg', 'caption': 'A dog sleeps on the lap of his owner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466229.jpg', 'caption': 'A dog sleeping in the covers of a bed with owner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466229.jpg', 'caption': 'a close up of a dog laying on a person ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562875.jpg', 'caption': 'A white dresser with an attached mirror in a room with yellow walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562875.jpg', 'caption': 'A dresser that has a mirror over it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562875.jpg', 'caption': 'there is a dresser that has a mirror and many things on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562875.jpg', 'caption': 'A room with yellow walls and a dresser with a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562875.jpg', 'caption': 'A dresser in a room that is painted bright yellow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550722.jpg', 'caption': 'A TV sitting on top of a wooden dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550722.jpg', 'caption': 'A room with a television, stereo, speakers and laptop in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550722.jpg', 'caption': 'The laptop is across the room from a television with stereo speakers beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550722.jpg', 'caption': 'A living room with television, laptop, and stereo in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550722.jpg', 'caption': 'Someone is watching a soccer match on TV while on the computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231402.jpg', 'caption': 'A motorcycle passing by a yellow dump truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231402.jpg', 'caption': 'A scene of a busy street with pedestrians and vehicles on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231402.jpg', 'caption': 'A group of vehicles traveling in heavy traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231402.jpg', 'caption': 'a motorcycle sitting next to a dump truch on the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231402.jpg', 'caption': 'a person riding a motorcycle near a large truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038929.jpg', 'caption': 'A large jet sitting on top of an airport tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038929.jpg', 'caption': 'A large white and red Avianca airplane is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038929.jpg', 'caption': 'A RED AND WHITE AVLANCA PLANE LOADING BAGGAGE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038929.jpg', 'caption': 'An airline jet being loaded with luggage at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038929.jpg', 'caption': 'Luggage is being loaded into the open doors of a plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469492.jpg', 'caption': 'An old fashioned biplane with its propeller spinning.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469492.jpg', 'caption': 'An old propellor airplane with targets on the wings is in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469492.jpg', 'caption': 'A vintage biplane is shown closeup from below.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469492.jpg', 'caption': 'A single engine plane in the sky on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469492.jpg', 'caption': 'An aircraft is flying overhead in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163361.jpg', 'caption': 'A colorful airplane flying though a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163361.jpg', 'caption': 'A tellow, red, white and blue airplane against a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163361.jpg', 'caption': 'A multicolored plane is flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163361.jpg', 'caption': 'a multicolored airplane is flying in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163361.jpg', 'caption': 'A multiple colored plane flying in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570349.jpg', 'caption': 'BLACK, BLUE, WHITE, RED, ORANGE RED AND YELLOW AIRPLANE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570349.jpg', 'caption': 'A picture of a colorful plane flying in the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570349.jpg', 'caption': 'A multi-colored airplane makes its way through the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570349.jpg', 'caption': 'Shot of bottom side of jet flying against a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570349.jpg', 'caption': 'A plane flies over, painted in right colors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471562.jpg', 'caption': 'A picture of an airplane and a large tower at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471562.jpg', 'caption': 'A small white airplane on a open lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471562.jpg', 'caption': 'An airplane that has landed in an airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471562.jpg', 'caption': 'a couple of four passenger air planes on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471562.jpg', 'caption': 'A very tall traffic control tower sitting in an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280360.jpg', 'caption': 'A blue airplane flies in a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280360.jpg', 'caption': 'The airplane has two propeller on each wing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280360.jpg', 'caption': 'An airplane in the air with four propellers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280360.jpg', 'caption': 'A jumbo sized airplane with four engines in the middle of flight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280360.jpg', 'caption': 'A propeller plane that is flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227940.jpg', 'caption': 'a airplane on a runway with the door open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227940.jpg', 'caption': 'A small plane is getting ready for a flight', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227940.jpg', 'caption': 'A small aircraft is parked at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227940.jpg', 'caption': 'An airplane with its doors open with a man sitting on the plane. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227940.jpg', 'caption': 'A small white airplane that is parked at the airport ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445643.jpg', 'caption': 'The back side of an airplane sitting on a runway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445643.jpg', 'caption': 'A jet airplane on the tarmac at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445643.jpg', 'caption': 'A very big commercial plane parked on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445643.jpg', 'caption': 'A small airplane is taking off at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445643.jpg', 'caption': 'Worker standing under the tail of a large passenger plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402798.jpg', 'caption': 'a close up of the tail section of a large passenger airplane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402798.jpg', 'caption': 'A red and white airplane is on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402798.jpg', 'caption': 'The tail end of an airplane and some baggage carts on an airstrip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402798.jpg', 'caption': 'This picture shows the back wing of a airplane that is red and white', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402798.jpg', 'caption': 'Commercial jetliner with a kangaroo design on its tail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556597.jpg', 'caption': 'a big jumbo jet sits parked next to another plane ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556597.jpg', 'caption': 'some large air planes on a run way', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556597.jpg', 'caption': 'A plane is parked along an airport terminal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556597.jpg', 'caption': 'A plane is sitting still on the runway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556597.jpg', 'caption': 'Several airplanes are lined up on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230232.jpg', 'caption': 'A picture of a group of fighter jets flying together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230232.jpg', 'caption': 'A group of nine small planes flies through the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230232.jpg', 'caption': 'Nine planes are flying in a military formation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230232.jpg', 'caption': 'nine fighter jets flying very close together like ducks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230232.jpg', 'caption': 'Several airplanes near each other fly through the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187989.jpg', 'caption': 'A group of jets are flying together in a tight formation', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187989.jpg', 'caption': 'The blue angels show off their tricks in an air show', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187989.jpg', 'caption': 'A formation of airplanes flying under a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187989.jpg', 'caption': 'A team of ten jet pilots flying in formation at an air show.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187989.jpg', 'caption': 'planes are flying together in a line in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283495.jpg', 'caption': 'A large jetliner flying under a cloud filled sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283495.jpg', 'caption': 'A plane flies above the tree tops in a greenish sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283495.jpg', 'caption': 'The plane is taking off over the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283495.jpg', 'caption': 'A large commercial plane flying overhead in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283495.jpg', 'caption': 'Jumbo jet flying over a group of trees.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000573455.jpg', 'caption': 'A field with cows and bulls grazing int the grass and a fence in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573455.jpg', 'caption': 'a bunch of cows that are walking in grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573455.jpg', 'caption': 'A big herd of cute cows in a big grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399893.jpg', 'caption': \"an elephant standing by some trees with it's trunk in the air \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399893.jpg', 'caption': 'an elephant with its mouth open and some bushes and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399893.jpg', 'caption': 'An elephant stands in grass in front of trees and shrubs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399893.jpg', 'caption': 'An elephant lifts his trunk in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399893.jpg', 'caption': 'An African elephant raises its trunk from the bush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121534.jpg', 'caption': 'A couple of hipsters standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121534.jpg', 'caption': 'A young man and woman are posing together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121534.jpg', 'caption': 'I am unable to see the image above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121534.jpg', 'caption': 'A man and a woman standing together near the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121534.jpg', 'caption': 'a couple of people standing together by a wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482062.jpg', 'caption': 'Three zebras are running up a grassy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482062.jpg', 'caption': 'Zebras are on the top of a grassy hill overlooking a bright blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482062.jpg', 'caption': 'A few zebras running along a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482062.jpg', 'caption': 'Three zebras are running in a grassy hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482062.jpg', 'caption': 'A couple of zebras are grazing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445944.jpg', 'caption': 'A man with a suit stands behind a row of chairs in the middle of the afternoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445944.jpg', 'caption': 'A man in a black suit standing on a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445944.jpg', 'caption': 'A formally dressed man standing near several rows of folding chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445944.jpg', 'caption': 'A man wearing a black suit and tie holding a chain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445944.jpg', 'caption': 'A man is holding a white chain outside wear many chairs are set up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003326.jpg', 'caption': 'A couple paddling in a canoe on a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003326.jpg', 'caption': 'a man and a woman rowing a boat through the water of a lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003326.jpg', 'caption': 'two people are on a canoe on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003326.jpg', 'caption': 'A woman riding on the back of a boat with a paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003326.jpg', 'caption': 'Two people row a boat in a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376937.jpg', 'caption': 'A boat floating on a lake next to a tree covered shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376937.jpg', 'caption': 'A ship on the water on a foggy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376937.jpg', 'caption': 'A sailboat sitting on a lake surrounded by fog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376937.jpg', 'caption': 'A sailboat sits alone on the shore on a foggy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376937.jpg', 'caption': 'an image of a boat that is in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136173.jpg', 'caption': 'An elephant statue has pink accouterments on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136173.jpg', 'caption': 'A sculpture of a green elephant with red markings on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136173.jpg', 'caption': 'An elephant is sitting on a surface with a design on its trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136173.jpg', 'caption': ' An shot of a nice looking elephant nick-knack ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136173.jpg', 'caption': 'A picture of a toy elephant on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288729.jpg', 'caption': 'THERE IS A DESIGN OF AN ELEPHANT ON THE SHELF', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288729.jpg', 'caption': 'The cake is decorated like a tent with an elephant in the door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288729.jpg', 'caption': 'A circus decor topper for a cake is being displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288729.jpg', 'caption': 'A model circus tent with an elephant and a boy riding on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288729.jpg', 'caption': 'A cake shaped like a little bear sitting in the entrance to a tent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289781.jpg', 'caption': 'the boat is tied up on the lake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289781.jpg', 'caption': 'A boat tied up at the shore of a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289781.jpg', 'caption': 'A boat parked in a harbor next to smaller buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289781.jpg', 'caption': 'A boat is parked in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289781.jpg', 'caption': 'A painting of a boat on the water with buildings on the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356478.jpg', 'caption': 'A baby elephant in dirt area next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356478.jpg', 'caption': 'A baby elephant is walking in the dirt. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356478.jpg', 'caption': 'A baby elephant running on a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356478.jpg', 'caption': 'A cow walking in the sand towards the fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356478.jpg', 'caption': 'The elephant is walking along the trail near the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326217.jpg', 'caption': 'A man sitting on top of a boat with lots of supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326217.jpg', 'caption': 'People in Oriental country selling food on raft', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326217.jpg', 'caption': 'A person in a boat loaded with fresh fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326217.jpg', 'caption': 'Several people in boats full of vegetables and fruit, with a market in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326217.jpg', 'caption': 'A person with a hat sitting in a boat with several fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024609.jpg', 'caption': 'A woman riding on a boat filled with supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024609.jpg', 'caption': 'A lady is observing the containers of food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024609.jpg', 'caption': 'A woman sitting in a boat filled with fruit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024609.jpg', 'caption': 'A person sitting in a small, narrow boat filled with produce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024609.jpg', 'caption': 'A person sitting on a small boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515038.jpg', 'caption': 'a man wearing a nice shirt tie with a view of the chest area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515038.jpg', 'caption': 'a man wearing a striped tie and a dress shirt ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515038.jpg', 'caption': 'We are looking at a closeup of a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515038.jpg', 'caption': 'The man is taking a picture of his ugly tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515038.jpg', 'caption': 'A person with a black, grey and green striped tie on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293425.jpg', 'caption': 'A few people are getting to know one another in affection. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293425.jpg', 'caption': 'two men sitting at a table and talking to others ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293425.jpg', 'caption': 'Two men are sitting at a world economic panel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293425.jpg', 'caption': 'A man speaking at the World Economic Forum with someone else in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293425.jpg', 'caption': 'A couple of men sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173385.jpg', 'caption': 'An elephant is walking on a pile of sand outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173385.jpg', 'caption': 'An elephant is by a tire and a pile of dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173385.jpg', 'caption': 'An elephant stands in an exhibit near a wall with some rocks and a tire nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173385.jpg', 'caption': 'an elephant holding straw with its trunk and walking in a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173385.jpg', 'caption': 'An elephant in captivity walks past a mound of sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394458.jpg', 'caption': 'Two baby gray elephants standing in front of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394458.jpg', 'caption': 'Two elephants are touching each other on thier trunks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394458.jpg', 'caption': 'Two elephants touching trunks with each other in grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394458.jpg', 'caption': 'Two elephants touching each other during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394458.jpg', 'caption': 'the two elephants torching each other with their long mouths ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261050.jpg', 'caption': 'A man sitting on top of a hair next to a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261050.jpg', 'caption': 'a person wearing a suit and tie sitting in a chair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261050.jpg', 'caption': 'A man in a black suit sits in an uncomfortable chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261050.jpg', 'caption': 'a man in a suit sitting in a white chair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261050.jpg', 'caption': 'A man sitting in a chair wearing a suit and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404687.jpg', 'caption': 'A smiling young man sits in a chair with ties on his shoulder. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404687.jpg', 'caption': 'a man sitting on a couch with a tie drapped over his shoulder', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404687.jpg', 'caption': 'A smiling young man sitting with several neckties over his shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404687.jpg', 'caption': 'A man is sitting down with two ties on his shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404687.jpg', 'caption': 'The guy has three ties on his shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118124.jpg', 'caption': 'A man with glasses and a tie clip sits in his car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118124.jpg', 'caption': 'A man wearing a tie driving a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118124.jpg', 'caption': 'A man in a camp shirt, necktie, and glasses driving a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118124.jpg', 'caption': 'A man wearing a purple neck tie and glasses while sitting in a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118124.jpg', 'caption': 'A young man in a black shirt and purple tie driving an automobile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562155.jpg', 'caption': 'A person in a car wearing dark glasses, a shirt, and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562155.jpg', 'caption': 'A woman with short black hair and square glasses wears a tie and a gray shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562155.jpg', 'caption': 'A person sitting in a car wearing glasses and a tie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562155.jpg', 'caption': 'A person sitting in a car wearing a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562155.jpg', 'caption': 'a person wearing glasses and a tie in a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046508.jpg', 'caption': 'A man riding an elephant down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046508.jpg', 'caption': 'Man in carrier on top of Indian elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046508.jpg', 'caption': 'A elephant being ridden by a little boy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046508.jpg', 'caption': 'A man hitching a ride on an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046508.jpg', 'caption': 'An man is riding an elephant on the walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450370.jpg', 'caption': 'an elephant walking through the weeds in the forest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450370.jpg', 'caption': 'A baby elephant walking through a forest next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450370.jpg', 'caption': 'Elephant in a forest with a lot of underbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450370.jpg', 'caption': 'An elephant walking through tall grass near trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450370.jpg', 'caption': 'An elephant standing in scrub brush in a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502419.jpg', 'caption': 'Two photographs of elephants in a rocky area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502419.jpg', 'caption': 'Two shots of elephants near rocks and a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502419.jpg', 'caption': 'An elephant inside of their enclosure playing with logs and eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502419.jpg', 'caption': 'Elephants move about an enclosed habitat surrounded by a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502419.jpg', 'caption': 'Split photo showing elephants in zoo like enclosures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471497.jpg', 'caption': 'a small elephant walks in a lush forest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471497.jpg', 'caption': 'Elephant walking through the wooded area full of trees and tall plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471497.jpg', 'caption': 'Multiple elephants walking through a heavily wooded area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471497.jpg', 'caption': 'Three elephants roaming through many trees and bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471497.jpg', 'caption': 'A baby elephant is seen walking through the jungle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097748.jpg', 'caption': 'A man sitting on the head of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097748.jpg', 'caption': 'A person is riding on top of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097748.jpg', 'caption': 'A man riding on top of a baby elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097748.jpg', 'caption': 'An Asian man sitting on an elephants head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097748.jpg', 'caption': 'A boy is riding an elephant in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287366.jpg', 'caption': 'A man sitting outside under an umbrella using a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287366.jpg', 'caption': 'a man that is under a blue umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287366.jpg', 'caption': 'A man in a suite sitting in a chair with a laptop and holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287366.jpg', 'caption': 'A young man dressed in a suit sits under an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287366.jpg', 'caption': 'A man sitting on a chair with a laptop holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029727.jpg', 'caption': 'a young boy is holding up some balloons ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029727.jpg', 'caption': 'a small kid holds on to some balloons ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029727.jpg', 'caption': 'a small boy in a blue shirt with a flag and some balloons', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029727.jpg', 'caption': 'Boy holding American flag and bunch of balloons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029727.jpg', 'caption': 'The child is sitting holding an American flag and balloons. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553320.jpg', 'caption': 'View of outdoor seating area in backyard from garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553320.jpg', 'caption': 'An outdoor table and chairs in a garden area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553320.jpg', 'caption': 'This backyard has alot of shrubbery with a small sitting area in the middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553320.jpg', 'caption': 'A view of a court yard with a table and chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553320.jpg', 'caption': 'A table and some chairs near some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020395.jpg', 'caption': 'A photo of a marina with boats at dusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020395.jpg', 'caption': 'A moon lit harbor filled with lots of small boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020395.jpg', 'caption': 'The moon overlooking the boats in the harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020395.jpg', 'caption': 'Sail boats moored in the water with a full moon over head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020395.jpg', 'caption': 'Sailboats in a marina under a full moon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381529.jpg', 'caption': 'two men in suits standing next to each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381529.jpg', 'caption': 'A couple of people that are posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381529.jpg', 'caption': 'Two men in suits and ties posing for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381529.jpg', 'caption': 'Two men next to each other making faces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381529.jpg', 'caption': 'Two men sitting next to each other in front of a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177856.jpg', 'caption': 'A crowd of people riding on top of a yellow and white boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177856.jpg', 'caption': 'A bunch of folks on a very nice looking speed boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177856.jpg', 'caption': 'Several people on a boat with life jackets on in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177856.jpg', 'caption': 'a yellow and white boat is out in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177856.jpg', 'caption': 'a small boat in a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364299.jpg', 'caption': 'An animal walking through a river on water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364299.jpg', 'caption': 'A boat makes a large splash in a quiet body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364299.jpg', 'caption': 'A power boat on a body of water with a large water spray behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364299.jpg', 'caption': 'A boat races over a pond with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364299.jpg', 'caption': 'The boat makes a big splash in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188414.jpg', 'caption': 'A person with long blonde hair wearing a blue shirt with a brown tie and blue white flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188414.jpg', 'caption': 'A person has a blue shirt and a tie with flowers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188414.jpg', 'caption': 'A woman wearing a blue dress shirt and brown necktie that has a design on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188414.jpg', 'caption': \"A woman wearing a men's neck tie over her ample breast.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188414.jpg', 'caption': 'A woman wearing a floral tie, trousers, and a fitted shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419144.jpg', 'caption': 'a group of elephants standing around with some people sitting on their backs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419144.jpg', 'caption': 'a bunch of elephants are standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419144.jpg', 'caption': 'A group of elephants with people riding them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419144.jpg', 'caption': 'Elephants and riders standing in grassy area in old photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419144.jpg', 'caption': 'A group of people ride on top of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483275.jpg', 'caption': \"A group of elephants with one elephant raising it's trunk and dust and dirt coming up behind it.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483275.jpg', 'caption': 'Three elephants kick up dust as they walk through the flat by the bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483275.jpg', 'caption': \"A heard of elephants with one's trunk raised.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483275.jpg', 'caption': 'Elephants walk together through the grass kicking up dust.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483275.jpg', 'caption': 'Elephants in a national park blowing dust around', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532669.jpg', 'caption': 'A display case in front of a store filled with umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532669.jpg', 'caption': 'a number of opened umbrellas behind a display glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532669.jpg', 'caption': 'A bunch of umbrellas that are behind a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532669.jpg', 'caption': 'A shop with umbrellas that are viewable through the glass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532669.jpg', 'caption': 'a store front with an array of colorful umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396820.jpg', 'caption': 'A woman holding an umbrella in a square.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396820.jpg', 'caption': 'A lady holding a bag and covering herself with umbrella on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396820.jpg', 'caption': 'a close up of a person holding an open umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396820.jpg', 'caption': 'A woman smiles on a street while holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396820.jpg', 'caption': 'A girl with a yellow umbrella smiles for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433156.jpg', 'caption': 'A rack with lots of umbrellas sitting in front of a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433156.jpg', 'caption': 'A bunch of umbrellas sitting in a basket in a store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433156.jpg', 'caption': 'A basket of umbrellas are displayed in a clothing store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433156.jpg', 'caption': 'A display with umbrellas sits in the center of a store. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433156.jpg', 'caption': 'a rack full of closed umbrellas outside a shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478374.jpg', 'caption': 'A small herd of elephants walking together through a watering hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478374.jpg', 'caption': 'A large elephant and three small elephants walk through a shallow river on an open plain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478374.jpg', 'caption': 'A group of elephants walk through the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478374.jpg', 'caption': 'A group of elephants in water next to grassy area and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478374.jpg', 'caption': 'A herd of elephants walking along a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059752.jpg', 'caption': 'Numerous boats in a street lined body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059752.jpg', 'caption': 'A very long river filled with many boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059752.jpg', 'caption': 'Rows of boats are docked along a waterway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059752.jpg', 'caption': 'A group of boats that are sitting in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059752.jpg', 'caption': 'A bunch of boats along side a river bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198782.jpg', 'caption': 'A young man with curly hair looking off to the side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198782.jpg', 'caption': 'A man with curly hair sitting on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198782.jpg', 'caption': 'A man with curly red hair looks away from the camera on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198782.jpg', 'caption': 'A man with a tie is looking at something ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198782.jpg', 'caption': 'A man in a tie and vest looking to his right.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434078.jpg', 'caption': 'A large group of people on a couple boats in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434078.jpg', 'caption': 'two rafts with people with life vests one boat is red the other white', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434078.jpg', 'caption': 'Two inflatable boats are at full capacity on water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434078.jpg', 'caption': 'Two boats with people wearing orange flotation devices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434078.jpg', 'caption': 'Groups of people on boats ride on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550872.jpg', 'caption': 'A herd lf elephants walking across a grass covered forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550872.jpg', 'caption': 'Elephants out in the wild eating grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550872.jpg', 'caption': 'Two elephants that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550872.jpg', 'caption': 'What does the elephant have at the end of his trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550872.jpg', 'caption': 'A group of elephants walking through a grassy area with thick trees behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203024.jpg', 'caption': 'this is a man talking wearing a suit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203024.jpg', 'caption': 'Two men standing beside each other both wearing ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203024.jpg', 'caption': 'two people wearing suits and ties near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203024.jpg', 'caption': 'A person that is wearing glasses and a suit and tie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203024.jpg', 'caption': 'Two people wearing suits stand next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206362.jpg', 'caption': 'A large elephant walking through a lush forest hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206362.jpg', 'caption': \"a giant elephant with it's snout up eating \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206362.jpg', 'caption': 'An elephant with dried out ski standing against a shrubbery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206362.jpg', 'caption': 'An elephant with dried out skin standing by a shrubbery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206362.jpg', 'caption': 'an elephant is standing over by some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206362.jpg', 'caption': 'a elephant with tusks walking through the brush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451356.jpg', 'caption': 'some elephants are walking across a grassy field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451356.jpg', 'caption': 'A herd of elephants walking in grassy area with skyline in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451356.jpg', 'caption': 'A very large herd of elephants in a big grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451356.jpg', 'caption': 'A group of elephants walking in a huge field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451356.jpg', 'caption': 'A group of elephants is walking across a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144379.jpg', 'caption': 'A guy is standing in an airport with several bags of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144379.jpg', 'caption': 'A male standing behind eight pieces of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144379.jpg', 'caption': 'A man standing up in an airport with a group of bags and backpacks in front of him on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144379.jpg', 'caption': 'A man is standing near several bags of luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144379.jpg', 'caption': 'A man stands alone with many luggage bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534151.jpg', 'caption': 'an elephant in a field of grass with trees near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534151.jpg', 'caption': 'An elephants steps out from behind the brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534151.jpg', 'caption': 'The elephant is standing behind a shrub and a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534151.jpg', 'caption': 'An elephant stands, partially obscured by a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534151.jpg', 'caption': 'A large grey elephant standing in a field next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568040.jpg', 'caption': 'an image of two elephants doing down the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568040.jpg', 'caption': 'Some elephants are standing in the middle of a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568040.jpg', 'caption': 'Two elephants in the field moving along during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568040.jpg', 'caption': \"An elephant and it's baby in a field of grass.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568040.jpg', 'caption': 'Two elephants walking in a grassy field next to a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128849.jpg', 'caption': \"A woman kneeling down near an elephant to touch it's trunk.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128849.jpg', 'caption': 'The people are attending to the elephants while others watch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128849.jpg', 'caption': 'Two people petting a group of fenced in elephants.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128849.jpg', 'caption': 'Man and woman petting a large group of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128849.jpg', 'caption': 'some people messing around with some elephants ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387328.jpg', 'caption': 'This must be the Boston Commons on a spring day when there is a light drizzle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387328.jpg', 'caption': 'People walking around a lake with swans and geese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387328.jpg', 'caption': 'People in a park by a pond with swans and ducks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387328.jpg', 'caption': 'There are some people walking with umbrellas by people sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387328.jpg', 'caption': 'there are many people by the river hiding umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256630.jpg', 'caption': 'a building that has some umbrellas in front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256630.jpg', 'caption': 'Several people dining outdoors, near a pool, beneath multicolored parasols.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256630.jpg', 'caption': 'Groups of people sit at outdoor tables covered with umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256630.jpg', 'caption': 'The people are eating outside by the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256630.jpg', 'caption': 'Several tables with umbrellas near a lake with animals in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302219.jpg', 'caption': 'A trunk full of backpacks and other bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302219.jpg', 'caption': 'The back of a car packed for vacation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302219.jpg', 'caption': 'The back of a car loaded with suitcases and boots', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302219.jpg', 'caption': 'The back of the car is full of duffel bags and a pair of boots. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302219.jpg', 'caption': 'A trunk is packed with backpacks and boots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431165.jpg', 'caption': 'A baby elephant standing in front of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431165.jpg', 'caption': 'An elephant is standing near a dirt mount in an exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431165.jpg', 'caption': 'Grey elephant standing next to a large sand dune in a pen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431165.jpg', 'caption': 'An elephant standing alone inside of an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431165.jpg', 'caption': 'The baby elephant is alone in the pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004229.jpg', 'caption': 'Two adults and one baby elephant walking in the wilderness', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004229.jpg', 'caption': 'A group of elephants in an open grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004229.jpg', 'caption': 'Two adults and one baby elephant standing in tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004229.jpg', 'caption': 'A herd of elephants playing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004229.jpg', 'caption': 'Three elephants in a field next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149785.jpg', 'caption': 'A small elephant is walking in an enclosure by the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149785.jpg', 'caption': 'THIS IS A PICTURE OF A VERY YOUNG BABY ELEPHANT WALKING ALONG A FENCE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149785.jpg', 'caption': 'An elephant walking along a fence line away from the camera man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149785.jpg', 'caption': 'An elephant walking in an enclosure in the sun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149785.jpg', 'caption': 'An elephant walks next to a fence in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292140.jpg', 'caption': 'Two adult elephants and a child elephant walking in the woods. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292140.jpg', 'caption': 'Two adult and one baby elephant walking in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292140.jpg', 'caption': 'A couple of large elephants and a baby are in the wild. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292140.jpg', 'caption': 'two adult elephants walk with a baby elephants ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292140.jpg', 'caption': 'Three elephants walking down a dirt coated hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124614.jpg', 'caption': 'A group of people standing next to bags of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124614.jpg', 'caption': 'Four people standing in a room with luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124614.jpg', 'caption': 'A family getting ready to leave to go somewhere. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124614.jpg', 'caption': 'These travelers have their luggage in a hotel lobby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124614.jpg', 'caption': 'People in a hotel standing near many different luggage containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404461.jpg', 'caption': 'A woman standing in an alley way holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404461.jpg', 'caption': 'A person stands under an umbrella on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404461.jpg', 'caption': 'A woman on the street holding an open umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404461.jpg', 'caption': 'A lady with a hat and a bag standing on a street sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404461.jpg', 'caption': 'Woman folding umbrella on the narrow city streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108761.jpg', 'caption': 'A small dog standing next to a potted plant wearing a collar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108761.jpg', 'caption': 'Little dog has been playing in the flower pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108761.jpg', 'caption': 'A dog standing near a potted plant outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108761.jpg', 'caption': 'A small dogs with a wet mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108761.jpg', 'caption': 'A fluffy white dog stands next to a planter in the back yard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244124.jpg', 'caption': 'A elephant that is standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244124.jpg', 'caption': 'An elephant in a ditch like area with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244124.jpg', 'caption': 'An elephant with an aged look standing in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244124.jpg', 'caption': 'An elephant is standing outside by a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244124.jpg', 'caption': 'An elephant standing around in a pen, during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163041.jpg', 'caption': 'Elephant emerging from tree line walking through forest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163041.jpg', 'caption': 'An elephant with tusks walking through the woods. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163041.jpg', 'caption': 'View of adult elephant seen through the trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163041.jpg', 'caption': 'An large grey elephant walks beside a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163041.jpg', 'caption': 'A close shot of a elephant near bushy landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371427.jpg', 'caption': 'A picture of a person a dog and a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371427.jpg', 'caption': 'A woman with a larg brown horse and a tan and white dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371427.jpg', 'caption': 'A woman holds her horses head while a dog sits nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371427.jpg', 'caption': 'A woman in a red coat with a horse and a dog in front of stacks of hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371427.jpg', 'caption': 'a person standing near a horse and a dog ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336568.jpg', 'caption': 'A black dog running in a pen with a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336568.jpg', 'caption': 'A horse and a dog running together in an exercise yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336568.jpg', 'caption': 'A dog is running alongside a horse in a corral.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336568.jpg', 'caption': 'A horse and a dog playing together in a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336568.jpg', 'caption': 'a dog running next to a horse at a farm ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108338.jpg', 'caption': 'Two elephants are standing by the trees in the wild. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108338.jpg', 'caption': 'A couple of elephants standing next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108338.jpg', 'caption': 'Two elephants are standing in the grass near a tree..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108338.jpg', 'caption': 'A couple elephants walking by a tree after sunset. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108338.jpg', 'caption': 'A couple of elephants standing by some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092534.jpg', 'caption': 'A baby elephant walking in sand at the zoo ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092534.jpg', 'caption': 'A small elephant walking in front of a larger elephant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092534.jpg', 'caption': 'A baby elephant is pictured walking through the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092534.jpg', 'caption': 'this baby elephant is dragging its feet in the dirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092534.jpg', 'caption': 'a baby elephant walking in front of his mama', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549297.jpg', 'caption': 'A young boy standing with luggage as adults are socializing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549297.jpg', 'caption': 'A young child in a tie with a suitcase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549297.jpg', 'caption': 'A young child carrying a small piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549297.jpg', 'caption': 'A boy carrying a mini-suitcase outside and wearing a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549297.jpg', 'caption': 'The young boy is in the yard, with his hand on his luggage, while adults focus on other things in the back ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114926.jpg', 'caption': 'Couple of elephants standing near the gate at their zoo habitat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114926.jpg', 'caption': 'A couple of elephants standing next to each other .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114926.jpg', 'caption': 'Two elephants stand with trunks against large tubular fencing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114926.jpg', 'caption': 'a close up of an elephant with another elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114926.jpg', 'caption': 'A elephant pressing its trunk against a gate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188078.jpg', 'caption': 'A black piece of luggage sitting next to a tire donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188078.jpg', 'caption': 'A suitcase lying on the ground with a spare tire and jack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188078.jpg', 'caption': 'A suitcase on the road next to a tire jack and tire', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188078.jpg', 'caption': 'black luggage,black wheel, and cartage out side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188078.jpg', 'caption': 'A black case on the ground with a small tire and jack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553721.jpg', 'caption': 'A dog wearing a leash laying next to an orange frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553721.jpg', 'caption': 'A dog with a collar on laying down next to a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553721.jpg', 'caption': 'A dog lies in the grass next to a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553721.jpg', 'caption': 'A frisbee on the ground next to a dog sitting in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553721.jpg', 'caption': 'A dog that is laying on the ground next to a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463628.jpg', 'caption': 'That doll has really dark and black eyes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463628.jpg', 'caption': 'A doll with huge eyes and black hair with blunt bangs holds a red umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463628.jpg', 'caption': 'A doll with dark eyes holding a red umbrella in front of a flowery background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463628.jpg', 'caption': 'an emo doll holding a red umbrella next to a black and white wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463628.jpg', 'caption': 'A small doll has a red fan and black hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489940.jpg', 'caption': 'A black and brown dog is laying on the pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489940.jpg', 'caption': 'A brown and black puppy sits in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489940.jpg', 'caption': 'A brown dog laying on a step near a door mat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489940.jpg', 'caption': 'A young German Shepard puppy perks his ears up while lying down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489940.jpg', 'caption': 'A dog on the floor and a carpet behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433652.jpg', 'caption': 'A small teddy bear is on a strange chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433652.jpg', 'caption': 'A toy sleigh filled with plush items and a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433652.jpg', 'caption': 'A sleigh is crafted with gifts and a teddy with pillow and blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433652.jpg', 'caption': \"A polymer clay sculpture of a teddy bear and gifts in Santa's sleigh.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433652.jpg', 'caption': 'A plush couch with green and black stripes and a red blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147488.jpg', 'caption': 'A woman with outstretched hands and an umbrella above her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147488.jpg', 'caption': 'A little girl that is throwing a umbrella in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147488.jpg', 'caption': 'A girl is standing in a mud puddle holding an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147488.jpg', 'caption': 'A girl standing in a puddle throwing an umbrella in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147488.jpg', 'caption': 'Woman throwing umbrella into air on frozen lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525376.jpg', 'caption': 'A couple of bags in the back of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525376.jpg', 'caption': 'A photo of black luggaes in the back trunk of a car ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525376.jpg', 'caption': 'Luggage and other essentials in the trunk of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525376.jpg', 'caption': 'Luggage nestled in the open trunk of a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525376.jpg', 'caption': 'Two suitcases are placed in the trunk of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209664.jpg', 'caption': 'A person walking along a dock holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209664.jpg', 'caption': 'A person is walking along a dock with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209664.jpg', 'caption': 'Black and white photo of a person with an umbrella on a dock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209664.jpg', 'caption': 'A person with an umbrella walks on the docks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209664.jpg', 'caption': 'A person dressed in black, holding an umbrella, standing on dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339787.jpg', 'caption': 'Adult with suitcase with purple tag at indoor facility.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339787.jpg', 'caption': 'A person holding a suitcase with a tag on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339787.jpg', 'caption': \"Someone's hand rests on a large piece of black luggage.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339787.jpg', 'caption': \"A person's hand on a black carry-on style bag with a pink tag on the handle.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339787.jpg', 'caption': \"A bag of luggage with a purple tag hanging off it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212761.jpg', 'caption': 'A group of people walking down a wet sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212761.jpg', 'caption': 'People walk with umbrellas near a large glass building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212761.jpg', 'caption': 'People with umbrellas are walking down the street in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212761.jpg', 'caption': 'a bunch of men are walking down a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212761.jpg', 'caption': 'A group of people walking down the street with umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012897.jpg', 'caption': 'The people are at the airport with their bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012897.jpg', 'caption': 'adults and children in walkways near escalators with luggage lined up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012897.jpg', 'caption': 'a group of people that have a lot of bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012897.jpg', 'caption': 'A large group of people are by some escalators.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012897.jpg', 'caption': 'a number of people standing around a large group of luggage bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395402.jpg', 'caption': 'A small tricolor terrier dog in a pink collar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395402.jpg', 'caption': 'A dog sitting and alert looking a something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395402.jpg', 'caption': 'A dog pays attention to something out of frame.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395402.jpg', 'caption': 'A close up view of a very cute scruffy dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395402.jpg', 'caption': 'A small dog with a collar in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112573.jpg', 'caption': 'three adult brown bears standing around staring at something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112573.jpg', 'caption': 'there are three brown bears standing outside together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112573.jpg', 'caption': 'Filtered photograph of three brown bears under sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112573.jpg', 'caption': 'Three bears that are sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112573.jpg', 'caption': 'Three brown bears beside each other with a blue background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292266.jpg', 'caption': \"The cruel dog owners stapled the frisbee to the dog's head in a cruel effort to compose a funny picture.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292266.jpg', 'caption': 'A dog with large ears pokes his nose through a wheel with red spokes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292266.jpg', 'caption': 'A very cute dog with his nose in a big red circle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292266.jpg', 'caption': \"A dog with it's head sticking through a frisbee.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292266.jpg', 'caption': 'A brown dog with its head stuck in a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530226.jpg', 'caption': 'A large white polar bear walking through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530226.jpg', 'caption': 'A polar bear is standing in some snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530226.jpg', 'caption': 'A polar bear in the snow near water licking his paw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530226.jpg', 'caption': 'a polar bear on snow near a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530226.jpg', 'caption': 'a polar bear standing in the snow with its reflection in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461156.jpg', 'caption': 'A small dog sitting on a wooden chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461156.jpg', 'caption': 'A dog sitting in a wooden rocking chair outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461156.jpg', 'caption': 'A tiny gray and white dog sits in a rustic wooden chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461156.jpg', 'caption': 'a little dog sitting on a small chair made of wood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461156.jpg', 'caption': 'A small dog is sitting on an old-fashioned rocking chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026159.jpg', 'caption': 'A brown bear standing next to a giant rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026159.jpg', 'caption': 'A bear sitting on a paved rock ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026159.jpg', 'caption': 'a brown bear sitting by a big rock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026159.jpg', 'caption': 'A large bear is sitting near a rock in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026159.jpg', 'caption': 'Looking down at a bear that is sitting by a big rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474465.jpg', 'caption': 'A guy reaches for a Frisbee at a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474465.jpg', 'caption': 'A young man catching a frisbee on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474465.jpg', 'caption': 'a man on the beach reaching up for a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474465.jpg', 'caption': 'a man playing with a disc on the beach or near a small lake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474465.jpg', 'caption': 'A man is catching a frisbee on a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286606.jpg', 'caption': 'a girl holding a frisbee in a pretty dress in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286606.jpg', 'caption': 'a little girl holding a frisbee walking next to a grown up ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286606.jpg', 'caption': 'A young girl is holding a yellow frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286606.jpg', 'caption': 'A girl in a flower dress playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286606.jpg', 'caption': 'A young girl holds onto a small toy Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405529.jpg', 'caption': 'Boy in bathing suit at beach playing ring toss game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405529.jpg', 'caption': 'guy catches a frisbee ring on a stick while playing the game on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405529.jpg', 'caption': 'Boy in swimsuit playing with a frisbee on a beach.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405529.jpg', 'caption': 'a person on a beach with a pipe and a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405529.jpg', 'caption': 'a child at the beach is running an playing with a circular object ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035778.jpg', 'caption': 'A zebra statue in front of a business sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035778.jpg', 'caption': 'A fake zebra is standing under a sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035778.jpg', 'caption': 'A zebra statue standing under a large sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035778.jpg', 'caption': 'A statue of a zebra in front of a store. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035778.jpg', 'caption': 'A zebra statue outside of a building zoomed in closely.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463787.jpg', 'caption': 'Four black and white zebras standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463787.jpg', 'caption': 'In a grassy field, zebras gather and socialize', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463787.jpg', 'caption': 'two zebras standing together while putting their heads on each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463787.jpg', 'caption': 'A couple zebras touching noses over the back of a third zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463787.jpg', 'caption': 'A line of four zebras standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295097.jpg', 'caption': 'A dog chewing on a object held in a hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295097.jpg', 'caption': 'A dog biting on a red piece of cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295097.jpg', 'caption': 'A black and white dog playing with someone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295097.jpg', 'caption': 'an image of a dog biting a bone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295097.jpg', 'caption': 'A cute little dog biting on something a person is holding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211423.jpg', 'caption': 'A sharp, sawtoothed blade on this tool has some hair on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211423.jpg', 'caption': 'a device with hair on it on a wooden floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211423.jpg', 'caption': 'A metal contraption laying down covered in animal fur.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211423.jpg', 'caption': 'A conventional shaving tool on a table filled with leftover hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211423.jpg', 'caption': 'A metal tool sitting on top of a wooden deck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114352.jpg', 'caption': 'A man holding a white frisbee while standing on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114352.jpg', 'caption': 'A man standing outside holding a frisbee in his hands. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114352.jpg', 'caption': 'a man is outside holding onto a frisbee disc', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114352.jpg', 'caption': 'A smiling man in the park with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114352.jpg', 'caption': 'A MAN IS HAVING A GOOD TIME PLAYING FRISBE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407274.jpg', 'caption': 'a girl jumping in the air to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407274.jpg', 'caption': 'A girl jumping to catch the frisbee thrown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407274.jpg', 'caption': 'A womqn jumping in the air to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407274.jpg', 'caption': 'Woman leaping in air to catch flying disc in large open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407274.jpg', 'caption': 'The woman in the red shirt jumps up to catch a Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197163.jpg', 'caption': 'Three zebra standing on a road in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197163.jpg', 'caption': 'Three zebras walking along a dirt road in the savannah', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197163.jpg', 'caption': 'Three zebra are standing on an old gravel road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197163.jpg', 'caption': 'Three zebras are in a large grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197163.jpg', 'caption': 'Three young zebras standing in a Savannah plain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150413.jpg', 'caption': 'Two dogs survey the framing of a house addition', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150413.jpg', 'caption': 'Two dogs standing near an unfinished room add on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150413.jpg', 'caption': 'Two white dogs wandering around an unfinished house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150413.jpg', 'caption': 'This house is getting an additional room and two dogs are near it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150413.jpg', 'caption': 'two dogs standing next to the wooden frame of an unfinished room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057814.jpg', 'caption': 'A sleeping grey husky wearing a green bandana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057814.jpg', 'caption': 'A husky with a bandana is laying on the floor sleeping. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057814.jpg', 'caption': 'a close up of a dog laying on a wooden surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057814.jpg', 'caption': 'A husky is sleeping while wearing a green bandana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057814.jpg', 'caption': 'A dog that is laying down sleeping on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339470.jpg', 'caption': 'A dog standing on a bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339470.jpg', 'caption': 'a brown Labrador is getting ready to jump off a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339470.jpg', 'caption': 'A brown dog on a white bed with window in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339470.jpg', 'caption': 'A dog is standing on a bed near a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339470.jpg', 'caption': 'A dog standing on a bed looking down at the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260774.jpg', 'caption': 'A brown dog laying on a pillow on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260774.jpg', 'caption': 'a dog resting on the floor next to a pillow and a shelf of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260774.jpg', 'caption': 'A brown dog laying on some clothes and a pillow on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260774.jpg', 'caption': 'A dog sleeps on the ground in someones bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260774.jpg', 'caption': 'a dog laying down on a bag and pillow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504341.jpg', 'caption': 'An adorable dot resting on a beach near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504341.jpg', 'caption': 'A dog resting on the beach at dusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504341.jpg', 'caption': 'A Shiba Inu laying down on a beach by the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504341.jpg', 'caption': 'The dog is one the beach lying on the wet sand, his paw prints showing how he played in the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504341.jpg', 'caption': 'A pretty dog is laying in wet sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556505.jpg', 'caption': 'A wet black dog with its face covered in sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556505.jpg', 'caption': 'A dog is shown with sand on its nose.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556505.jpg', 'caption': \"The black dog's nose is covered in sand.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556505.jpg', 'caption': 'A close up of a black dog with sand on its nose.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556505.jpg', 'caption': 'a wet black dog has some sand on its nose', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455557.jpg', 'caption': 'some zebras are eating green grass and a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455557.jpg', 'caption': 'Four zebras are grazing in the open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455557.jpg', 'caption': 'Four zebras are grazing on a grassy green field.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000576412.jpg', 'caption': 'A cake in the shape of a train. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576412.jpg', 'caption': 'A large Thomas the Tank Engine birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576412.jpg', 'caption': 'A home made thomas the train birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402909.jpg', 'caption': 'a mirror reflecting the platform at a train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402909.jpg', 'caption': 'A train parked next to the empty train station .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402909.jpg', 'caption': 'A mirror hanging from a building, showing the reflection of a different building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402909.jpg', 'caption': 'A mirror and a train at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402909.jpg', 'caption': 'A red train is parked in a train station next to a hill with houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434279.jpg', 'caption': 'The large blue train is covered with rust.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434279.jpg', 'caption': 'A rusted train parked on the rail road .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434279.jpg', 'caption': 'A blue railroad train sitting on the railroad tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434279.jpg', 'caption': 'The last rail car sitting on the train tracks and attached to the car in front of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434279.jpg', 'caption': 'A blue train going down the train tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136584.jpg', 'caption': 'A bird perched on top of a wooden power pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136584.jpg', 'caption': 'a black bird standing on top of a power pole ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136584.jpg', 'caption': 'A bird is on the top of a telephone pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136584.jpg', 'caption': 'A black bird perches at the top of a telephone pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136584.jpg', 'caption': 'A vulture is perched atop a telephone pole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409914.jpg', 'caption': 'A monitor showing a film on an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409914.jpg', 'caption': 'A television screen shows some visual entertainment with subtitles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409914.jpg', 'caption': 'A television is on the ceiling of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409914.jpg', 'caption': 'The television is turned on the television in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409914.jpg', 'caption': 'A monitor is mounted on the ceiling inside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520482.jpg', 'caption': 'Two birds who are looking out of the cage they are in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520482.jpg', 'caption': 'Two birds in an enclosed area outside during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520482.jpg', 'caption': 'An outdoor cage with tall, thin colorful birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520482.jpg', 'caption': 'Some long necked birds with feathers in a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520482.jpg', 'caption': 'two large birds strutting inside of a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100354.jpg', 'caption': 'The lamb is nursing for milk from his mother.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100354.jpg', 'caption': \"The baby boat is drinking milk from it's mother.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100354.jpg', 'caption': 'A baby sheep that is nursing from an adult sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100354.jpg', 'caption': 'a group of sheep stand inside of a caged area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100354.jpg', 'caption': 'A baby goat drinking milk from a mother goat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101304.jpg', 'caption': 'Two birds standing side by side on a branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101304.jpg', 'caption': 'Two birds standing beside each other on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101304.jpg', 'caption': 'Two birds sitting on narrow branch next to each other looking opposite ways', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101304.jpg', 'caption': 'Two brown and black birds with ruffled feathers are standing on a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101304.jpg', 'caption': 'a close up of two birds on a branch of a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286493.jpg', 'caption': 'Subway train pulling into the station for boarding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286493.jpg', 'caption': 'Blue and grey 95th street subway train in the subway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286493.jpg', 'caption': 'The train is riding through the inside of a tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286493.jpg', 'caption': 'A public transit train going through a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286493.jpg', 'caption': 'A passenger train moving through an underground tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546804.jpg', 'caption': 'A silver passenger train traveling past another train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546804.jpg', 'caption': 'a pair of trains are passing each other on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546804.jpg', 'caption': 'two trains passing over a train tracks in the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546804.jpg', 'caption': 'Two trains on the tracks near a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546804.jpg', 'caption': 'Trains making their way down the track in a rail yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284885.jpg', 'caption': 'Train traveling on tracks through city near glass buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284885.jpg', 'caption': 'A long train traveling past tall buildings on train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284885.jpg', 'caption': 'A train moving along the tracks headed away from a group of tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284885.jpg', 'caption': 'A train engine and several cars moving along a track in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284885.jpg', 'caption': 'A train in a train yard in front of tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380693.jpg', 'caption': 'A couple of sheep standing on top of snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380693.jpg', 'caption': 'Two lambs standing around in the snow eating grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380693.jpg', 'caption': 'Two sheep standing in snow covered field with their faces near the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380693.jpg', 'caption': 'The hearty sheep are eating the grass in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380693.jpg', 'caption': 'The two sheep are out in the field with snow on the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531710.jpg', 'caption': 'A sheep sniffing the back of a cat in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531710.jpg', 'caption': 'A sheep standing next to a cat outdoors in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531710.jpg', 'caption': 'A sheep sniffs a cat while standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531710.jpg', 'caption': \"A lamb with it's nose next to a cat.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531710.jpg', 'caption': 'This is a picture of a sheep and kitten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091610.jpg', 'caption': 'A bird with a long neck sitting in a tree filled with leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091610.jpg', 'caption': 'a BIRD WITH A LONG NECK PERCHED IN A TREE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091610.jpg', 'caption': 'A bird with a very long neck is standing in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091610.jpg', 'caption': 'A large bird sitting among the branches of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091610.jpg', 'caption': 'a bird in the branches of a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229782.jpg', 'caption': 'A blue sign in front of a bamboo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229782.jpg', 'caption': 'A single sign stands in front of bamboo fencing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229782.jpg', 'caption': 'A small blue sign reads \"Chemin du Letsay\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229782.jpg', 'caption': 'The blue sign is posted in front of a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229782.jpg', 'caption': 'A blue sign in front of a bamboo wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252940.jpg', 'caption': 'A woman holding an umbrella over another man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252940.jpg', 'caption': 'A woman holds a black umbrella for a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252940.jpg', 'caption': 'A man is standing with his hands in his pockets while a woman with a purple hat is holding an umbrella over his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252940.jpg', 'caption': 'A woman in a purple hat holds an umbrella over a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252940.jpg', 'caption': 'Two people wearing fine clothes, one holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216695.jpg', 'caption': 'A bridge built over a water is shining lights at dusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216695.jpg', 'caption': 'The lights of vehicles are shining as they cross a river bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216695.jpg', 'caption': 'A picture of a bridge in the evening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216695.jpg', 'caption': 'Lights shine on a bridge over a river at dusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216695.jpg', 'caption': 'The span bridge covers a very wide expanse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163460.jpg', 'caption': 'A colorful bird is perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163460.jpg', 'caption': ' A red and blue bird is sitting on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163460.jpg', 'caption': 'a red and blue bird that is sitting on a branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163460.jpg', 'caption': 'A colorful bird perched on a branch in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163460.jpg', 'caption': 'A red and blue bird standing on a twig.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232954.jpg', 'caption': 'A green train traveling down train tracks next to another train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232954.jpg', 'caption': 'A green passenger train is at the station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232954.jpg', 'caption': 'Two trains that are sitting on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232954.jpg', 'caption': 'A locomotive train engine sitting at a station with passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232954.jpg', 'caption': 'A locomotive train engine sitting in a station with passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232954.jpg', 'caption': 'A green train drives by people on the platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471737.jpg', 'caption': 'A train traveling down tracks next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471737.jpg', 'caption': 'A train is on some rail way tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471737.jpg', 'caption': 'A train engine is traveling down some tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471737.jpg', 'caption': 'A multi car train parked on train tracks near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471737.jpg', 'caption': 'An antique rail road engine on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432179.jpg', 'caption': 'there are any trains that are seen on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432179.jpg', 'caption': 'A blue train traveling down train tracks near a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432179.jpg', 'caption': 'A blue train is stopped on some train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432179.jpg', 'caption': 'A train sitting in a station. The train is blue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432179.jpg', 'caption': 'Blue train engine at station near lamp post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343031.jpg', 'caption': 'A black steam engine pulling a small passenger car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343031.jpg', 'caption': 'Several railroad tracks at a station and various locomotives on each track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343031.jpg', 'caption': 'A black train parked on top of rail road tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343031.jpg', 'caption': 'a train yard with several stopped trains waiting to go', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343031.jpg', 'caption': 'there is a black train that is on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409241.jpg', 'caption': 'A train traveling under a bridge next to a bunch of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409241.jpg', 'caption': 'A black train is driving under a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409241.jpg', 'caption': 'A black train going down the train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409241.jpg', 'caption': 'A steam train is parked on the train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409241.jpg', 'caption': 'A black train passes under a small bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002894.jpg', 'caption': 'A train traveling down train tracks next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002894.jpg', 'caption': 'A train traveling down train tracks during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002894.jpg', 'caption': 'A train on the tracks at a train station ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002894.jpg', 'caption': 'Two trains on tracks very close to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002894.jpg', 'caption': 'the back of a train going down the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297267.jpg', 'caption': 'A train traveling down train tracks next to a lush green hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297267.jpg', 'caption': 'A train is coming into a station with people waiting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297267.jpg', 'caption': 'A person wearing glasses and a hat standing on a platform as a train enters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297267.jpg', 'caption': 'A steam train arriving at a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297267.jpg', 'caption': 'A passenger waits for a train arriving at the platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068352.jpg', 'caption': 'A green train traveling down train tracks with steam pouring out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068352.jpg', 'caption': 'Locomotive engine traveling on tracks with steam billowing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068352.jpg', 'caption': 'a long train is sitting on some tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068352.jpg', 'caption': 'A black train on a train track with steam coming out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068352.jpg', 'caption': 'a train that is on a old train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578175.jpg', 'caption': 'A train that is sitting on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578175.jpg', 'caption': 'A train driving down the tracks near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578175.jpg', 'caption': 'The passenger train is pulling grey train cars. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578175.jpg', 'caption': 'A green, red, white and blue train in on the train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578175.jpg', 'caption': 'a train that is on a rail road track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434129.jpg', 'caption': 'Elaborate Toronto Blue Jays professional baseball cap cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434129.jpg', 'caption': 'The blue and white hat has a bird on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434129.jpg', 'caption': 'Large blue bird sitting on a baseball hat on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434129.jpg', 'caption': 'The blue baseball cap is sitting on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434129.jpg', 'caption': 'A blue hat is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493503.jpg', 'caption': 'There is a one way street at the corner of Henry St. and Love La.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493503.jpg', 'caption': 'Street signs on the corner in front of a red bricked building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493503.jpg', 'caption': 'an orange red and green bricked building and some signs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493503.jpg', 'caption': 'Directional signs and street signs on one pole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493503.jpg', 'caption': 'four road signs giving different information by a brick building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254283.jpg', 'caption': 'A pedestrian crossing sign sitting on a street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254283.jpg', 'caption': 'A pedestrian sign on the corner in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254283.jpg', 'caption': 'a cross walk sign in a busy city as light up the walk symbol', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254283.jpg', 'caption': 'A lit \"Walk\" sign on a city street corner at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254283.jpg', 'caption': 'A illuminated sign that is on the side of a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575428.jpg', 'caption': 'A train passing through the greenery and a person standing in engine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575428.jpg', 'caption': 'A train that is nearby a colorful garden full of flowers and plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575428.jpg', 'caption': 'A train on the railway with a man looks outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575428.jpg', 'caption': 'A large train on the tracks with a man inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575428.jpg', 'caption': 'A photo of a train with a person stand on the train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001180.jpg', 'caption': 'A woman standing over a sheet cake sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001180.jpg', 'caption': 'A LADY IS HAVING A CELEBRATION AND LOOKING AT HER CAKE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001180.jpg', 'caption': 'A lady in a hat standing in front of a big cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001180.jpg', 'caption': 'A woman wearing a hat while looking at a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001180.jpg', 'caption': 'A woman in a silly hat cuts the cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460156.jpg', 'caption': 'A street sign showing what roads go which ways.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460156.jpg', 'caption': 'A street sign on a bridge in an asian language. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460156.jpg', 'caption': 'a japanese street sign on a bridge with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460156.jpg', 'caption': 'A chinese city sign at a traffic light on an overhang.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460156.jpg', 'caption': 'A blue sign posted on an overpass that people walk across', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046912.jpg', 'caption': 'a train getting ready to go into a tunnel ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046912.jpg', 'caption': 'there is a train that is about to go through a tunnel ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046912.jpg', 'caption': 'A red and black train driving through a bridge tunnel. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046912.jpg', 'caption': 'A train leaving a tunnel passing another train ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046912.jpg', 'caption': 'Two trains are passing each other through a tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462211.jpg', 'caption': 'a sign in a cityscape light sup in the rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462211.jpg', 'caption': 'Street signs are on a pole in a big city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462211.jpg', 'caption': 'a no right turn sign and a traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462211.jpg', 'caption': 'A traffic light sitting on top of a traffic pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462211.jpg', 'caption': 'A street light and street sign in Thai writing on a city street with an overpass behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245793.jpg', 'caption': 'A train engine and passenger cars pulling in to a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245793.jpg', 'caption': 'A vintage locomotive with red cars next to a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245793.jpg', 'caption': 'Train sitting on the track at a train depot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245793.jpg', 'caption': 'A train pulling into a station with several carts behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245793.jpg', 'caption': 'An old fasioned locomotive arriving at a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047718.jpg', 'caption': 'A train traveling through a dark tunnel next to green brush..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047718.jpg', 'caption': 'A train is coming through a brick tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047718.jpg', 'caption': 'a train going through a tunnel with greenery on side of tunnel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047718.jpg', 'caption': 'a train going through a tunnel and by some plants ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047718.jpg', 'caption': 'The view of a train entering a tunnel taken from one of the cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300303.jpg', 'caption': 'A locomotive crossing on a street with the arm down to stop traffic as the train is passing through.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300303.jpg', 'caption': 'No crossing sign in front of a train track with a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300303.jpg', 'caption': 'a gate blocking the road until the train goes by ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300303.jpg', 'caption': 'a red and white train some trees and some railroad crossing lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300303.jpg', 'caption': 'A railroad crossing with the gate down as a train goes by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300032.jpg', 'caption': 'An electric fence with a sign behind it that says \"A flood can happen anywhere.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300032.jpg', 'caption': 'a sign is hanging near a tall fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300032.jpg', 'caption': 'a giant sign behind a large barbwire fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300032.jpg', 'caption': 'A white sign that is behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300032.jpg', 'caption': 'A large sign up over a fenced in area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067757.jpg', 'caption': 'In the evening, a store front sign sits on the sidewalk near a blue car parked at the curb. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067757.jpg', 'caption': 'a car parked on the street at night next to a street sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067757.jpg', 'caption': 'A vehicle passing near a sign advertising desserts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067757.jpg', 'caption': 'A sign on the sidewalk for crepes, icecream and gelato', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067757.jpg', 'caption': 'A blue car passing a sign that reads \"crepes ice cream gelato.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337443.jpg', 'caption': 'An orange street sign that reads \"obstruction\" and has a directional arrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337443.jpg', 'caption': 'A truck in the road beyond an obstruction sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337443.jpg', 'caption': 'A street sign warning of an obstruction ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337443.jpg', 'caption': 'A construction sign that says obstruction with an arrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337443.jpg', 'caption': 'an image of a construction sign on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158118.jpg', 'caption': 'A guy is near a busy street in a foreign country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158118.jpg', 'caption': 'Man standing at edge of busy road in metropolitan street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158118.jpg', 'caption': 'The man is standing beside a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158118.jpg', 'caption': 'A young man is standing away from the traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158118.jpg', 'caption': 'cars traveling on a busy road in Asia', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274233.jpg', 'caption': 'A street sign at an intersection with tropical trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274233.jpg', 'caption': 'there are two white signs on a pole ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274233.jpg', 'caption': 'A street sign sitting in front of a lush green palm tree forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274233.jpg', 'caption': 'A pair of street signs sitting in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274233.jpg', 'caption': 'two signs each point in different and seperate directions ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572427.jpg', 'caption': 'A red stop sign sitting next to country road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572427.jpg', 'caption': 'A stop sign and a view of a crossroads with several utility poles around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572427.jpg', 'caption': 'Two stop sign on street corners on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572427.jpg', 'caption': 'A stop sign at the end of a road with a stop sign at the other end.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572427.jpg', 'caption': 'A close up of a stop sign in a small town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578092.jpg', 'caption': 'This stop sign is in a different language but its meaning is universal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578092.jpg', 'caption': 'A red stop sign in a foreign country. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578092.jpg', 'caption': 'A stop sign on a street corner with a building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578092.jpg', 'caption': 'A stop sign is at the corner of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578092.jpg', 'caption': 'A French stop sign on a street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293782.jpg', 'caption': 'A Stop sign is at the corner of a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293782.jpg', 'caption': 'There is a stop sign with another sign under it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293782.jpg', 'caption': 'A stop sign on a pole on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293782.jpg', 'caption': 'a street sign on the corner of a road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293782.jpg', 'caption': 'A stop sign stands at an intersection of two streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423804.jpg', 'caption': 'A car parked behind a fence next to a red train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423804.jpg', 'caption': 'A red passenger train is on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423804.jpg', 'caption': 'A view of a train station from the parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423804.jpg', 'caption': 'A red train is stopped at a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423804.jpg', 'caption': 'a train on a track near many trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073119.jpg', 'caption': 'People standing around looking at a small train on a track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073119.jpg', 'caption': 'a black and red train sitting on a train track with workers on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073119.jpg', 'caption': 'A couple of people standing along side of a train engine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073119.jpg', 'caption': 'Older red and black locomotive with attendants and onlookers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073119.jpg', 'caption': 'people standing near a train that is blowing smoke', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511002.jpg', 'caption': 'A large red stop sign next to a box sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511002.jpg', 'caption': 'A stop sign sits on a corner near a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511002.jpg', 'caption': 'A stop sign at the corner of a small town with cars lined up in the backdrop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511002.jpg', 'caption': 'Stop sign and rubbish bin in residential neighborhood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511002.jpg', 'caption': 'A stop sign and a garbage can on a street sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223905.jpg', 'caption': 'a couple of people are standing near a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223905.jpg', 'caption': 'A black and white picture of a train inside a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223905.jpg', 'caption': 'A train waits at a platform where people on bikes are.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223905.jpg', 'caption': 'A train stopped at a train station with roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223905.jpg', 'caption': 'a person on a bike near a train ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170194.jpg', 'caption': 'A single rail kart not moving on the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170194.jpg', 'caption': 'A train sitting on top of tracks next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170194.jpg', 'caption': 'The group is waiting for the subway train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170194.jpg', 'caption': 'A train that is sitting on the tracks in a rail yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170194.jpg', 'caption': 'Old train car and railway with buildings in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027226.jpg', 'caption': 'We are looking a train in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027226.jpg', 'caption': 'a train on a track near some buildings ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027226.jpg', 'caption': 'an empty area at a large train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027226.jpg', 'caption': 'A large long train on a steel track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027226.jpg', 'caption': 'A train engine parked at a train stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288799.jpg', 'caption': 'A train car riding the railroad in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288799.jpg', 'caption': 'A tall building sitting next to train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288799.jpg', 'caption': 'Some tracks for a rail way system near a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288799.jpg', 'caption': 'Multiple railroad tracks directly next to a gallery building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288799.jpg', 'caption': 'A train passing by a bunch of buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528142.jpg', 'caption': 'A train station with a few people standing beside the train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528142.jpg', 'caption': 'Food stands are set up on the platform of a train stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528142.jpg', 'caption': 'Three people are standing near the train while others look on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528142.jpg', 'caption': 'A group of people standing by a white and green train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528142.jpg', 'caption': 'People getting on and off a passenger train at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260020.jpg', 'caption': 'A stop and street sign on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260020.jpg', 'caption': 'a pole with a stop sign and a funny street sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260020.jpg', 'caption': 'A stop sign with a street sign on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260020.jpg', 'caption': 'A stop sign with a blue sky and a few clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260020.jpg', 'caption': 'Stop sign with a street sign for Bugg Lane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163012.jpg', 'caption': \"A car's lights on a traffic sign at night. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163012.jpg', 'caption': 'A good place for a Stop sing to get some attention.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163012.jpg', 'caption': 'There is no image on this page to describe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163012.jpg', 'caption': 'there is a stop sign in the middle of this street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163012.jpg', 'caption': 'a stop sign lit up by some car headlights ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195598.jpg', 'caption': 'A small toy train on a model track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195598.jpg', 'caption': 'A toy model train station with a train on some tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195598.jpg', 'caption': 'A small model railroad set up with a yellow train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195598.jpg', 'caption': 'A model train rides along the tracks in front of the model station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195598.jpg', 'caption': 'A train has has matching paint with a nearby building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270810.jpg', 'caption': 'A long train traveling past passengers on a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270810.jpg', 'caption': 'A train at a stop where people are boarding', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270810.jpg', 'caption': 'People are standing ready to board a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270810.jpg', 'caption': 'A train that is sitting at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270810.jpg', 'caption': 'A train at a station waiting for people to board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543985.jpg', 'caption': 'A parking meter sitting next to a parked car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543985.jpg', 'caption': 'parking meter in front of a truck mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543985.jpg', 'caption': 'A truck front door parked close to a parking meter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543985.jpg', 'caption': 'A grey van is parked beside a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543985.jpg', 'caption': 'A truck is parked in front of a parking meter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383175.jpg', 'caption': 'A train in a station with a person in yellow clothes nearby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383175.jpg', 'caption': 'A high speed train parked at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383175.jpg', 'caption': 'The train is sitting in the train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383175.jpg', 'caption': 'A train that is sitting on a train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383175.jpg', 'caption': 'A passenger train that is going into a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261360.jpg', 'caption': 'A stuffed frog stuck between two parking meters in front of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261360.jpg', 'caption': 'A toy frog is sitting in between two parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261360.jpg', 'caption': 'A frog puppet in between two parking meters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261360.jpg', 'caption': 'a couple of parking meters sit next to a car ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261360.jpg', 'caption': 'A toy from jammed between two parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187543.jpg', 'caption': 'A man in a hat standing next to a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187543.jpg', 'caption': 'A selfie of a man in a hat on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187543.jpg', 'caption': 'A young man with ear phones holding something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187543.jpg', 'caption': 'A person on the street with ear phones neara parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187543.jpg', 'caption': 'A man wearing ear buds and Reebok clothing looks up from the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529597.jpg', 'caption': 'Only a child would leave a toy in between two parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529597.jpg', 'caption': 'A yellow and green toy frog positioned between two parking meters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529597.jpg', 'caption': 'A green with yellow spot plastic frog between two parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529597.jpg', 'caption': 'A toy frog sitting outside in the rain getting wet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529597.jpg', 'caption': 'A frog is sitting on the two parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368905.jpg', 'caption': 'A black dog comfortably sits atop an easy chair sitting in the bed of a pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368905.jpg', 'caption': 'A dog sitting on a chair on the back of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368905.jpg', 'caption': 'A dog sits on a couch in the back of a pickup truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368905.jpg', 'caption': 'A dog riding on the flat bed of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368905.jpg', 'caption': 'A dog is sitting in a cushioned car seat buckled in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282674.jpg', 'caption': 'a dog that is laying down next to a truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282674.jpg', 'caption': 'A brown dog laying outside behind a blue truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282674.jpg', 'caption': 'A dog that is laying behind a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282674.jpg', 'caption': 'A dog laying on the ground in the middle of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282674.jpg', 'caption': 'A dog lying on the sunny cement behind a parked truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525587.jpg', 'caption': 'An old, rusty blue pickup parked in the weeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525587.jpg', 'caption': 'An old truck sits in the grass under some trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525587.jpg', 'caption': 'A picture of a car in some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525587.jpg', 'caption': 'a close up of an older rusted car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525587.jpg', 'caption': 'The front and have an old blue pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417159.jpg', 'caption': 'A time clock with a white hard hat on shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417159.jpg', 'caption': \"Workman's safety helmet on a shelf under a punch clock.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417159.jpg', 'caption': 'A helmet set on a table under a time clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417159.jpg', 'caption': 'A hard hat sits on a shelf below a punch time clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417159.jpg', 'caption': 'A hard hat is stored on a shelf under a time clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110587.jpg', 'caption': 'A man brushing his teeth with a tooth brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110587.jpg', 'caption': 'a close up of a person brushing his teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110587.jpg', 'caption': 'A man who has a toothbrush in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110587.jpg', 'caption': 'A man is brushing his teeth wearing winter clothes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110587.jpg', 'caption': 'Human being having fun and enjoying some life. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510643.jpg', 'caption': 'two flat bed work trucks among palm trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510643.jpg', 'caption': 'A truck driving down a dirt road net to a lot of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510643.jpg', 'caption': 'Two work cars in the middle of a forest. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510643.jpg', 'caption': 'a black and white truck a dirt road and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510643.jpg', 'caption': 'Two trucks in the field with palm trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510643.jpg', 'caption': 'a black and white truck a hill and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318645.jpg', 'caption': 'A horse walking through a grassy field while two cows eat hay. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318645.jpg', 'caption': 'A horse and cows graze in a grassy field on a cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318645.jpg', 'caption': 'A lone horse and two cows in a beautiful green field on a dreary day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318645.jpg', 'caption': 'one black horse and two cows in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318645.jpg', 'caption': 'A couple of cows and horse standing in green field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093333.jpg', 'caption': 'A cowboy leads a cow through a paddock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093333.jpg', 'caption': 'A man walking with a cow on a leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093333.jpg', 'caption': 'A farmer leads his bull across the lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093333.jpg', 'caption': 'A man holding a cow in a pen with a rope attached to its muzzle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093333.jpg', 'caption': 'A man leading a cow on a green leash', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315062.jpg', 'caption': 'Some animals that are eating some hay together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315062.jpg', 'caption': 'Horses and cows are eating hay close together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315062.jpg', 'caption': 'The cattle are annoyed by the lone horse hogging all the hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315062.jpg', 'caption': 'A lone horse eats hay with the cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315062.jpg', 'caption': 'Some cows and horses are outside grazing together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163759.jpg', 'caption': 'Two zebra standing next to each other in a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163759.jpg', 'caption': 'A mother and baby zebra walking in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163759.jpg', 'caption': 'A zebra and its child are walking side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163759.jpg', 'caption': 'A zebra and colt stand in muddy grass of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163759.jpg', 'caption': 'One adult zebra and one young zebra walking through the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254392.jpg', 'caption': 'A cat is sitting under a purple umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254392.jpg', 'caption': 'a cat sitting under an open umbrella indoors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254392.jpg', 'caption': 'A cat sitting underneath an open umbrella on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254392.jpg', 'caption': 'a gray and white cat under an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254392.jpg', 'caption': 'Cool cat sitting comfortably under an open umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015978.jpg', 'caption': 'A cat with a yellow bow tie on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015978.jpg', 'caption': 'A very fat cat looks into the camera lense', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015978.jpg', 'caption': \"A cat wearing a yellow bow tie with it's eyes closed.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015978.jpg', 'caption': 'A black cat wearing a yellow bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015978.jpg', 'caption': 'A black cat wearing a yellow bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237566.jpg', 'caption': 'Two black cows grazing in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237566.jpg', 'caption': 'Two cows eating grass in a foggy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237566.jpg', 'caption': 'Two large cows in a grassy field area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237566.jpg', 'caption': 'Two black cows are eating grass next to the hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237566.jpg', 'caption': 'The two cows eat at the grass in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223816.jpg', 'caption': 'One brown cow sitting on top of the rocky ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223816.jpg', 'caption': 'a cow is laying down in the sand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223816.jpg', 'caption': 'A brown cow laying on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223816.jpg', 'caption': 'A large cow laying on the bare ground with a grassy field behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223816.jpg', 'caption': 'A large animal is shown laying in a barren area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377326.jpg', 'caption': 'A herd of cows drinking water from the river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377326.jpg', 'caption': 'Four cows drink from the water near each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377326.jpg', 'caption': 'A number of cows standing in the water drinking', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377326.jpg', 'caption': 'A herd of brown and white cows drinking from a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377326.jpg', 'caption': 'A herd of cows drink out of a stream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008646.jpg', 'caption': 'Cars traveling on a three-way with large truck in the middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008646.jpg', 'caption': 'There are bars on the back of a truck on a freeway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008646.jpg', 'caption': 'Vehicle traffic in city area on cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008646.jpg', 'caption': 'a blurry picture of cars headed down a highway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008646.jpg', 'caption': 'A bunch of cars that are sitting in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508985.jpg', 'caption': 'A group of bikers riding down a street in traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508985.jpg', 'caption': 'a line of people on motorcycles on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508985.jpg', 'caption': 'The people riding bikes are travelling down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508985.jpg', 'caption': 'A line of moped riders are driving on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508985.jpg', 'caption': 'some people riding motorcycles cars a street and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300471.jpg', 'caption': 'a cat is laying down on a blue chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300471.jpg', 'caption': 'A cat sitting on a chair, that is blue and yellow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300471.jpg', 'caption': 'A cat relaxes on a wicker and wood chair with another black cat and other chairs in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300471.jpg', 'caption': '2 cats one on a chair in an outdoor cafe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300471.jpg', 'caption': 'A cat sits on the wicker of a blue chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143418.jpg', 'caption': 'A herd of cattle grazing on a dry grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143418.jpg', 'caption': 'a number of animals in a field with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143418.jpg', 'caption': 'A group of cows mill about in a grassy dirt field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143418.jpg', 'caption': 'A group of cows standing with each other in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143418.jpg', 'caption': 'There is a lot of cows that are standing in the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546622.jpg', 'caption': 'A cat laying on top of a chair as it sleeps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546622.jpg', 'caption': 'An orange and white kitten laying on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546622.jpg', 'caption': 'The cat stretches out on the colorful padded chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546622.jpg', 'caption': 'A yellow and white cat sleeps on its back on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546622.jpg', 'caption': 'A cat sprawls out and sleeps on its back on a lounge chair with an acorn theme.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454601.jpg', 'caption': 'a tabby and black cat lounging on a sofa ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454601.jpg', 'caption': 'Two cats, one black one ginger on a dark couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454601.jpg', 'caption': 'An orange cat is lounging on a gray couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454601.jpg', 'caption': 'A cat is lying down on top of a couch with a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454601.jpg', 'caption': 'Two cats on a couch with one looking at you.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041257.jpg', 'caption': 'Photos of two ferrets sleeping in a pet bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041257.jpg', 'caption': 'Two ferrets are lying down in opposite directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041257.jpg', 'caption': 'A couple of small animals laying on top of a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041257.jpg', 'caption': 'A photo of a white Ferrat and a brown colored Ferrat laying in a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041257.jpg', 'caption': 'Two pictures show two different rodents in different colors but they are the same species.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529041.jpg', 'caption': 'A group of people standing next to a red fire truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529041.jpg', 'caption': 'people standing outside of a building with a fire truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529041.jpg', 'caption': 'People standing around on a sidewalk by the firetruck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529041.jpg', 'caption': 'A group of people gather next to a fire truck parked at a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529041.jpg', 'caption': 'A firetruck is parked curbside as people are on the sidewalk of a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259112.jpg', 'caption': 'A bald cat sleeping on a blanket on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259112.jpg', 'caption': 'The shaved cat sleeps on the colorful comfortable', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259112.jpg', 'caption': 'A hairless cat lying on a patchwork quilt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259112.jpg', 'caption': 'A cat is laying on a hand made quilt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259112.jpg', 'caption': 'A naked cat laying on a red and pink quilt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243218.jpg', 'caption': 'a black cat is laying on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243218.jpg', 'caption': 'A black cat lying on its back sleeping on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243218.jpg', 'caption': 'A black cat lays of a multi-colored bed spread', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243218.jpg', 'caption': 'Cat stretching on back on bed, reaching towards the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243218.jpg', 'caption': 'A black cat lying on his back on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486369.jpg', 'caption': 'A trash truck is next to a glass with a straw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486369.jpg', 'caption': 'A compact style dump truck is pulled alongside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486369.jpg', 'caption': 'A small delivery truck parked in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486369.jpg', 'caption': 'A man driving a street sweeper truck down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486369.jpg', 'caption': 'A garbage truck drives through an alley in a Central American city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012827.jpg', 'caption': 'a girl looking closely at her cell phone holding her cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012827.jpg', 'caption': 'A girl stands in front of a mirror with her cat and takes a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012827.jpg', 'caption': 'a woman holding a cell phone and a cat in front of a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012827.jpg', 'caption': 'This girl is holding a cat and a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012827.jpg', 'caption': 'A woman taking a selfie with a cat next to her. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036277.jpg', 'caption': 'A cat standing inside of a dresser drawer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036277.jpg', 'caption': 'How did that cat end up in the file drawer?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036277.jpg', 'caption': 'A drawer of a chest is open and some files are seen in it and a dog is entering it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036277.jpg', 'caption': 'a cat stand inside of a drawer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036277.jpg', 'caption': 'The cat is standing in the file cabinet drawer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301575.jpg', 'caption': 'Text written on a photo of a cat shutting in front of a television ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301575.jpg', 'caption': 'A cat sitting in front of a TV with Frasier on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301575.jpg', 'caption': 'A cat sitting on VCR in front of a tv that is turned on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301575.jpg', 'caption': 'A black cat is standing in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301575.jpg', 'caption': 'a black cat sitting in front of a tv while someone is trying to watch tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434580.jpg', 'caption': 'A pretty young lady using a laptop computer with a black cat on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434580.jpg', 'caption': 'The black cat is ready to help get the computer work done.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434580.jpg', 'caption': 'A girl sitting on a couch with a cat on top of her laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434580.jpg', 'caption': 'A woman on a couch with a laptop computer is interrupted by her black cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434580.jpg', 'caption': 'A woman sits on the couch as her cat walks across the open laptop she is holding. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527163.jpg', 'caption': 'The people are sitting on the dock beside of the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527163.jpg', 'caption': 'The ships are out in the water in a distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527163.jpg', 'caption': 'A boardwalk next to the water with people and birds walking and setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527163.jpg', 'caption': 'Two people who are sitting next to a bench on a pier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527163.jpg', 'caption': 'some people are sitting out by the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419386.jpg', 'caption': 'A woman holding a small child that is trying to pet a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419386.jpg', 'caption': 'Two adults and a child interacting with a black and white cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419386.jpg', 'caption': 'A lady and a small kid by a big cute cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419386.jpg', 'caption': 'there is a young baby that is feeding a cow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419386.jpg', 'caption': 'Children are petting cows that are behind a gate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102159.jpg', 'caption': 'a cow walking next to a person on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102159.jpg', 'caption': 'There is no image here to provide a caption for.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102159.jpg', 'caption': 'A man walks down the street next to a cow with horns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102159.jpg', 'caption': 'Person and cow walking on snowy street next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102159.jpg', 'caption': 'A man walking down a road with a cow in a village.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018534.jpg', 'caption': \"A farm with a herd of cattle grazing on it's green open fields.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018534.jpg', 'caption': 'A barn on a field is surrounded by black and white cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018534.jpg', 'caption': 'Cows standing in a field on a farm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018534.jpg', 'caption': 'A herd of cows graze in an open field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018534.jpg', 'caption': 'A herd of cattle grazing outside a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506723.jpg', 'caption': 'A woman standing next to a black cow on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506723.jpg', 'caption': 'a woman with a blue purse is petting a black cow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506723.jpg', 'caption': 'A young woman pets the head of a cow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506723.jpg', 'caption': 'A woman is petting a cow that is lying in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506723.jpg', 'caption': 'A woman pets a cow in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327864.jpg', 'caption': 'A man pats a cat that is standing in his lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327864.jpg', 'caption': 'tHERE IS A MAN SITTING AT THE TABLE PETTING A CAT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327864.jpg', 'caption': 'A man using a computer and stroking the cat in his lap', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327864.jpg', 'caption': 'a man sits in front of a computer with a cat in his lap', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327864.jpg', 'caption': 'A man wearing a hat sitting at a table holding a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178941.jpg', 'caption': ' A cat on top of a closed laptop on a desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178941.jpg', 'caption': 'A cat that is sitting down on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178941.jpg', 'caption': 'A cat is sitting on a laptop by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178941.jpg', 'caption': 'A white cat resting on top of a laptop in a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178941.jpg', 'caption': 'A cat is laying on top of a closed laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240301.jpg', 'caption': 'Longhorn cows stand or recline in a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240301.jpg', 'caption': 'A barn with several cows lying down in the saw dust and along horned cow standing up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240301.jpg', 'caption': 'A group of bulls laying down in a medal shed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240301.jpg', 'caption': 'Cows sitting in an enclosure on grass covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240301.jpg', 'caption': 'Animals being held in an enclosed area during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000599.jpg', 'caption': 'A cat on a leather chair next to remotes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000599.jpg', 'caption': 'A cat sitting on a couch with two remote controls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000599.jpg', 'caption': 'A cat sitting on top of a brown leather chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000599.jpg', 'caption': 'A cat is sitting on a leather couch next to two remotes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000599.jpg', 'caption': 'A cat sitting in the chair with two remotes on the arm of the chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573455.jpg', 'caption': 'A large herd of cows on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573455.jpg', 'caption': 'a herd of a cattle grazing in the grass', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000160529.jpg', 'caption': 'An commerical airplane is flying high in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160529.jpg', 'caption': 'a plane flying by below a bright blue sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160529.jpg', 'caption': 'A large plane is flying through the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160529.jpg', 'caption': 'GREEN AIRPLANE FLYING IN A BRIGHT BLUE SKY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160529.jpg', 'caption': 'a commercial jet airliner as seen from below', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091236.jpg', 'caption': 'A group of jets flying overhead in tight formation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091236.jpg', 'caption': 'A group of airplanes in the sky at an air show. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091236.jpg', 'caption': 'Jets are flying in formation across the sky on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091236.jpg', 'caption': 'many planes competing at each other very fast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091236.jpg', 'caption': 'Five planes are flying in formation in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306229.jpg', 'caption': 'This is an air show put on by the US Navy Blue Angels. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306229.jpg', 'caption': 'Five airplanes flying in formation under a partly cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306229.jpg', 'caption': 'Airplanes flying in formation with smoke coming from their tails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306229.jpg', 'caption': 'a bunch of planes are flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306229.jpg', 'caption': 'A bunch of small airplanes flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241124.jpg', 'caption': 'A young man has his foot placed on a pole while another looks on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241124.jpg', 'caption': 'Two men hang out by a pole on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241124.jpg', 'caption': 'Two standing guys waiting at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241124.jpg', 'caption': 'Is he trying to stop the other man from crossing?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241124.jpg', 'caption': 'One man has his put on the pole and the other man has his hand on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064313.jpg', 'caption': 'A group of giraffes next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064313.jpg', 'caption': 'A few Zebras are standing in front of the fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064313.jpg', 'caption': 'Many giraffes walk along a wooden fence in a small lot with sand and palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064313.jpg', 'caption': 'A group of giraffes that are walking near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064313.jpg', 'caption': 'there are many giraffes that are standing by a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126502.jpg', 'caption': 'Two birds going up the back of a giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126502.jpg', 'caption': 'Two birds sitting on the the back of a giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126502.jpg', 'caption': 'Two birds are sitting on a wall near the bushes.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126502.jpg', 'caption': 'a large giraffe that is walking by some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126502.jpg', 'caption': 'Two birds standing on the back of a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380756.jpg', 'caption': 'A herd of sheep is on the side of the road and a bus drives through.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380756.jpg', 'caption': 'A bust on an unpaved rock road that has stopped because of a herd of sheep', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380756.jpg', 'caption': 'A bus on a gravel road with a herd of sheep on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380756.jpg', 'caption': 'A herd of sheep are walking up a muddy hill next to a parked minivan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380756.jpg', 'caption': 'A bus driving past a large herd of goats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040926.jpg', 'caption': 'A very close shot of what seems to be three birds on a Giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040926.jpg', 'caption': \"A tall giraffe with birds perched on it's neck.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040926.jpg', 'caption': 'A very up close shot of a giraffes neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040926.jpg', 'caption': 'a giraffe neck with little brown birds climbing it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040926.jpg', 'caption': \"I don't know what this image is that the birds are on.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421682.jpg', 'caption': 'The moon in the sky above a jetliner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421682.jpg', 'caption': 'jet airliner in the sky with a half visible moon in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421682.jpg', 'caption': 'A jumbo jet plane flying below a view of the moon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421682.jpg', 'caption': 'An airplane flying through the sky with a half moon visible above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421682.jpg', 'caption': 'The plane is flying high in the sky and the moon is fading in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501055.jpg', 'caption': 'A photograph taken from an airplane window while in flight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501055.jpg', 'caption': 'A photo of a landscape from an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501055.jpg', 'caption': 'i see part of an airplane flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501055.jpg', 'caption': 'An aerial view of the ground from an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501055.jpg', 'caption': 'Mountains and terrain seen from above by plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437931.jpg', 'caption': 'A herd of sheep standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437931.jpg', 'caption': 'A heard of sheep were grazing in the pen with a small bird watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437931.jpg', 'caption': 'A herd of sheep grazing inside of a fenced area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437931.jpg', 'caption': 'White sheep are grazing in a fenced field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437931.jpg', 'caption': 'Very wooly sheep grazing in a small fenced paddock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104340.jpg', 'caption': 'A man standing behind a bench with something in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104340.jpg', 'caption': 'man taking picture behind a sculpture of heart as a person on a bench ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104340.jpg', 'caption': 'a man standing by a bench while taking a photo ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104340.jpg', 'caption': 'A costumed person is sitting on a bench while a photographer leans over them to take a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104340.jpg', 'caption': 'Man taking a picture above an art display of a man on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548296.jpg', 'caption': 'a close up of a giraffe and a zebra in a field near trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548296.jpg', 'caption': 'A giraffe on the field outside during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548296.jpg', 'caption': 'A giraffe in a grassy area with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548296.jpg', 'caption': 'A giraffe and zebra stand next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548296.jpg', 'caption': 'A giraffe and a zebra next to each other in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296265.jpg', 'caption': 'A plane that is flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296265.jpg', 'caption': 'The airplane is flying over the ocean at dusk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296265.jpg', 'caption': 'An airplane flying through the sky on a beautiful night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296265.jpg', 'caption': 'a blue plane is flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296265.jpg', 'caption': 'A small plane flying through a cloudy evening sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102668.jpg', 'caption': 'A large white bus drives through an intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102668.jpg', 'caption': 'A tall building in the background with the number 9000 on a sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102668.jpg', 'caption': 'A view of a city from a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102668.jpg', 'caption': 'A street scene at an intersection with a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102668.jpg', 'caption': 'A picture of a stop light in the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460567.jpg', 'caption': 'Antelopes, zebras, and giraffes are gathered around the watering hole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460567.jpg', 'caption': 'Herds of animals, including giraffes and zebras, wade into a water pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460567.jpg', 'caption': 'Many different animals drinking water in the desert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460567.jpg', 'caption': 'Giraffes, zebras and gazelles linger and drink from a watering hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460567.jpg', 'caption': 'Giraffes, gazelles, and zebras gathered at a watering hole in Africa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522554.jpg', 'caption': 'A bench in a park covered in lots of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522554.jpg', 'caption': 'a bench along a sidewalk in the winter covered in snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522554.jpg', 'caption': 'The ground and bench are covered with snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522554.jpg', 'caption': 'A snow covered wood bench in a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522554.jpg', 'caption': 'A wooden bench covered with snow, and plenty of snow on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346954.jpg', 'caption': 'A train is stopped at a station beside a traffic signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346954.jpg', 'caption': 'A white tram stopped at a station between tall buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346954.jpg', 'caption': 'There is a full view of an outdoor area and it is nice.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346954.jpg', 'caption': 'A light rail train has stopped at a station in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346954.jpg', 'caption': 'Beautiful scenery of a train boarding passengers in a metropolitan area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416960.jpg', 'caption': 'A sheet cake with a farm scene on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416960.jpg', 'caption': 'a brown cake with a tractor a fence and some animals', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416960.jpg', 'caption': 'A birthday cake with a tractor and farm animals on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416960.jpg', 'caption': 'A farm themed birthday cake for a young boy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416960.jpg', 'caption': 'A birthday cake with a tractor trailer on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566699.jpg', 'caption': 'Giraffe standing in open area near trees with mouth open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566699.jpg', 'caption': 'A close up face image of a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566699.jpg', 'caption': 'The giraffe is looking at the camera with his mouth open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566699.jpg', 'caption': 'A giraffe staring at the camera with its mouth open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566699.jpg', 'caption': \"A giraffe with it's mouth open looking into the camera. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141587.jpg', 'caption': 'A distant airplane flying between two large buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141587.jpg', 'caption': 'A couple of tall buildings with a large jetliner between them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141587.jpg', 'caption': 'Commercial airliner flying between two tall structures on clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141587.jpg', 'caption': 'two tall buildings and a plane in between them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141587.jpg', 'caption': 'An airplane is seen between two identical skyscrapers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136218.jpg', 'caption': 'A plane flying between two large buildings in black and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136218.jpg', 'caption': 'A passenger jet is flying over top of the buildings of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136218.jpg', 'caption': 'A passenger plane is seen flying in between two tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136218.jpg', 'caption': 'A view of a city skyline with an airplane coming in for a landing at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136218.jpg', 'caption': 'A city with very tall buildings and a large airplane flying above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016241.jpg', 'caption': 'A low flying commercial plane passing tall buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016241.jpg', 'caption': 'An airplane is flying in the sky beyond some skyscrapers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016241.jpg', 'caption': 'A jetliner flying low as viewed between two skyscrapers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016241.jpg', 'caption': 'An airplane is seen in the air between two buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016241.jpg', 'caption': 'An airplane flying pass building and a bank building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127259.jpg', 'caption': 'A block of pigeons gathered around a person sitting on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127259.jpg', 'caption': 'A man on a bench feeding pigeons in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127259.jpg', 'caption': 'People in a street with birds all over.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127259.jpg', 'caption': 'A man sitting on a park bench feeding the birds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127259.jpg', 'caption': 'Pigeons surround people sitting on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277208.jpg', 'caption': 'A picture of a giraffe drinking some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277208.jpg', 'caption': 'A giraffe is bending down to get a drink of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277208.jpg', 'caption': 'A giraffe has its front legs spread to bend down for a drink of water at a pond. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277208.jpg', 'caption': 'LARGE GIRAFFE SPREADING OUT HIS LONG LEGS TO GET A DRINK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277208.jpg', 'caption': 'a giraffe bending down to drink from a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054344.jpg', 'caption': 'People getting ready to board a light plane on an airstrip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054344.jpg', 'caption': 'Couple of people out on the runway ready to board the small plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054344.jpg', 'caption': 'The couple are standing next to an airplane.\\n\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054344.jpg', 'caption': 'A small propeller plane that is on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054344.jpg', 'caption': 'A small airplane sitting on top of a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500859.jpg', 'caption': 'A cat laying down on a wooden table in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500859.jpg', 'caption': 'grey striped cat relaxing on the deck stairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500859.jpg', 'caption': 'A gray tabby cat is lying on a picnic table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500859.jpg', 'caption': 'A black and gray cat lying on a picnic table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500859.jpg', 'caption': 'Cat laying on top of a picnic table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363415.jpg', 'caption': 'A cream color cat sitting on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363415.jpg', 'caption': 'A large fluffy cat sitting on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363415.jpg', 'caption': 'A cat sits on a wooden bench between flower pots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363415.jpg', 'caption': 'A cat sits on a bench near a flower pot shaped like a turtle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363415.jpg', 'caption': 'The cat is sitting on the bench with the flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171058.jpg', 'caption': 'An orange stripe cat sitting on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171058.jpg', 'caption': 'A golden colored cat sitting on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171058.jpg', 'caption': 'an image of a cat sitting on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171058.jpg', 'caption': 'An orange tabby cat sits on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171058.jpg', 'caption': 'a orange cat sitting on a half rotted wooden bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030156.jpg', 'caption': 'A large cat laying next to a large orange pumpkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030156.jpg', 'caption': 'Cat cat looking at the camera with pumpkins in back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030156.jpg', 'caption': 'a white cat a wooden bench and some pumpkins', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030156.jpg', 'caption': 'A cream colored cat is walking toward the camera, next to a display of gourds and pumpkins.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030156.jpg', 'caption': 'A cat is sitting next to a pumpkin and other vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109869.jpg', 'caption': 'A cat standing on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109869.jpg', 'caption': 'A cat with dark fur leans over the side of a wooden park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109869.jpg', 'caption': 'A cat is playing with a wooden chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109869.jpg', 'caption': 'A dark colored cat that is on a wooden bench and reaching down from the arm rest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109869.jpg', 'caption': 'a gray cat reaches down with his paw as he stands on the arm rest of a wooden outdoor bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217710.jpg', 'caption': 'a sign for the metrolink next to tall building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217710.jpg', 'caption': 'A station near stores and building on a sunny day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217710.jpg', 'caption': 'The entrance to the Transit Mall Station is surrounded by buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217710.jpg', 'caption': 'A city subway station sign reading, \"M transit mall station\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217710.jpg', 'caption': 'A blue and white sign that marks the Transit Mall Station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391139.jpg', 'caption': 'A little dog sitting on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391139.jpg', 'caption': 'A small dog sits on wooden bench next to a pumpkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391139.jpg', 'caption': 'A dog is sitting on a bench by corn and hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391139.jpg', 'caption': 'A dog sitting on a bench with harvest decorations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391139.jpg', 'caption': 'A small dog on a bench next to squash, hay and variegated corn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483475.jpg', 'caption': 'A modern jet airplane coming in to park at the gate of an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483475.jpg', 'caption': 'A large jet sitting on top of an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483475.jpg', 'caption': 'A plane parked at an airport near a terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483475.jpg', 'caption': 'A white airplane is parked preparing for takeoff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483475.jpg', 'caption': 'some people standing at the top of some stairs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134863.jpg', 'caption': 'A couple of traffic lights hanging over a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134863.jpg', 'caption': 'Traffic lights shine over an empty intersection at twilight. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134863.jpg', 'caption': 'A street with traffic lights, wall and buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134863.jpg', 'caption': 'The electronic traffic signals are lit up during dawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134863.jpg', 'caption': 'Empty city intersection in the early morning hours.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028649.jpg', 'caption': 'A giraffe peeks from behind a low-hanging branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028649.jpg', 'caption': 'A giraffe eating leaves from a tree near a forest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028649.jpg', 'caption': 'The giraffe is looking around the tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028649.jpg', 'caption': 'a giraffe is peeking around from some tree leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028649.jpg', 'caption': 'A giraffe eating hanging leaves by a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160199.jpg', 'caption': 'A giraffe standing in front of a stone building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160199.jpg', 'caption': 'A giraffe walking around past a wall and door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160199.jpg', 'caption': 'a giraffe standing on a dirt ground next to a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160199.jpg', 'caption': 'A giraffe is walking by a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160199.jpg', 'caption': 'A Masai giraffe is walking in front of a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257629.jpg', 'caption': 'a number of books and magazines near a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257629.jpg', 'caption': 'A laptop next to a book opened on a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257629.jpg', 'caption': 'A book that is being held open by a laptop that is on top of a corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257629.jpg', 'caption': 'A bench that has three books and a laptop sitting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257629.jpg', 'caption': 'A book and a laptop sitting on a desk with the books open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469119.jpg', 'caption': 'A boy in a blue shirt boarding a school bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469119.jpg', 'caption': 'a child getting on a school bus with a field in the backgropund', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469119.jpg', 'caption': 'A young boy who is wearing a back pack getting on a school bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469119.jpg', 'caption': 'A little boy standing on the steps of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469119.jpg', 'caption': 'a child stepping up onto a school bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386650.jpg', 'caption': 'A bench next to three potted plants. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386650.jpg', 'caption': 'A small sitting bench sets on an old concrete floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386650.jpg', 'caption': 'a wooden bench with red legs and some potted plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386650.jpg', 'caption': 'An outside area with a bench and potted plants. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386650.jpg', 'caption': 'A photo of a bench and plants in pots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378809.jpg', 'caption': 'A rear view mirror on the side of a yellow bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378809.jpg', 'caption': 'Several school buses reflected in the side mirror of a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378809.jpg', 'caption': 'an image of school bus in the rear view mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378809.jpg', 'caption': 'Mirrored reflection of a row of yellow school busses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378809.jpg', 'caption': 'a close up of a school bus mirror with a school bus in the mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381832.jpg', 'caption': 'a street light hanging fron one of many wires connected to a power pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381832.jpg', 'caption': 'A stop lite hangs from a power line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381832.jpg', 'caption': 'A streetlight hanging in the air on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381832.jpg', 'caption': 'Roadway intersection signal with power pole and street lamp nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381832.jpg', 'caption': 'A stoplight that is hanging from a wire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034904.jpg', 'caption': 'A book on a wooden bench on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034904.jpg', 'caption': 'A book rest on one of the benches ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034904.jpg', 'caption': 'A California travel guide book on a park bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034904.jpg', 'caption': 'A big entitled California is on the bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034904.jpg', 'caption': 'A book sitting on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179346.jpg', 'caption': 'a man is crossing the street and there is a yellow traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179346.jpg', 'caption': 'A man is carrying a large object across the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179346.jpg', 'caption': 'A person walking across a crosswalk at dusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179346.jpg', 'caption': 'City street as the morning sun begins coming up. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179346.jpg', 'caption': 'A dark street has the sun shining through trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389721.jpg', 'caption': 'The giraffes wander around their cage and eat from the trough on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389721.jpg', 'caption': 'a group of giraffes are walking around a small corral', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389721.jpg', 'caption': 'A group of giraffe standing next to each other on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389721.jpg', 'caption': 'four giraffes in a fenced off pen with a feeding bin ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389721.jpg', 'caption': 'Group of giraffes are standing by building wall next to feeding trough', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189885.jpg', 'caption': 'A herd of sheep walking down a rural country road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189885.jpg', 'caption': 'a herd of sheep walking down the road back to the farm ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189885.jpg', 'caption': 'sheep cross the road next to a white barn in the rolling hills', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189885.jpg', 'caption': 'A herd of sheep walk on a country road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189885.jpg', 'caption': 'A herd of shaggy haired sheep walking down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310082.jpg', 'caption': 'a sheep is standing on a white fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310082.jpg', 'caption': 'A sheep leaning against a white wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310082.jpg', 'caption': 'A sheep with a black face and feet standing on the bottom rung of a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310082.jpg', 'caption': 'A lamb is standing on the white fence using his fron legs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310082.jpg', 'caption': 'A sheep on a farm standing on a white fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443334.jpg', 'caption': 'a couple of giraffes are standing in a pin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443334.jpg', 'caption': 'some giraffes leaning their necks over a fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443334.jpg', 'caption': 'Two giraffes that are standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443334.jpg', 'caption': 'Two giraffes feeding while standing behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443334.jpg', 'caption': 'Two giraffes are standing in the sand behind a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499110.jpg', 'caption': 'Two giraffes eat from a pot attached to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499110.jpg', 'caption': 'Two giraffes eating from the same feeder attached to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499110.jpg', 'caption': 'A couple of giraffes feeding from a bucket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499110.jpg', 'caption': 'Two giraffes are feeding out of a bucket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499110.jpg', 'caption': 'Two giraffes are bent over eating out of a dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435312.jpg', 'caption': 'a person taking a photo of a traffic light on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435312.jpg', 'caption': 'A person taking a picture of a stoplight on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435312.jpg', 'caption': 'A person in a red shirt is taking a picture of a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435312.jpg', 'caption': 'A woman taking a picture of a street traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435312.jpg', 'caption': 'A young lady is taking snap shots of the traffic light. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235296.jpg', 'caption': 'A beautiful woman sitting on a bench next to a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235296.jpg', 'caption': 'A woman sitting on a bench overlooking a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235296.jpg', 'caption': 'A women on a bench overlooking the waterfront.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235296.jpg', 'caption': 'A woman sits on a bench and looks at the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235296.jpg', 'caption': 'A woman on a bench near the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213276.jpg', 'caption': 'A man standing near an intersection with street lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213276.jpg', 'caption': 'A man is looking mad out on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213276.jpg', 'caption': 'A man seems to be taken a selfie of himself. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213276.jpg', 'caption': 'A man in a striped pink shirt is standing beside a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213276.jpg', 'caption': 'a man in a pink shirt looks off into the distance in front of an empty street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229647.jpg', 'caption': 'The giraffes are standing in the fenced area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229647.jpg', 'caption': 'Four giraffes are standing together at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229647.jpg', 'caption': 'Small group of giraffes in a sandy enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229647.jpg', 'caption': 'Giraffe stand in a sand-floored enclosure with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229647.jpg', 'caption': 'four giraffes basking in sunlight of enclosed area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551966.jpg', 'caption': 'A man sits on a bench and stares into the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551966.jpg', 'caption': 'Individual sitting on a bench at a valley with storm clouds over head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551966.jpg', 'caption': 'A man is sitting on a bench, taking in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551966.jpg', 'caption': 'A man sits on a park bench and looks at the view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551966.jpg', 'caption': 'A man sitting over a bench overlooking a vista.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152192.jpg', 'caption': 'Large open field in the middle of a stormy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152192.jpg', 'caption': 'A bench atop a hill on a rural farm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152192.jpg', 'caption': 'View of a bench overlooking the ocean and sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152192.jpg', 'caption': 'An open field shows the ocean and big sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152192.jpg', 'caption': 'The top a mountain overlooking water with several benches and a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008179.jpg', 'caption': 'A green traffic light above a street with a car on coming.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008179.jpg', 'caption': 'A green traffic light above a street with one car driving by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008179.jpg', 'caption': 'The traffic lite is green as a car approaches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008179.jpg', 'caption': 'Picture of an outdoor place that is very beautiful.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008179.jpg', 'caption': 'a close up of a traffic light above a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181058.jpg', 'caption': 'Two herds of yak are grazing on a hillside with a snowy bottom landing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181058.jpg', 'caption': 'A flock of sheep are grazing on a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181058.jpg', 'caption': 'Many yaks are grazing in a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181058.jpg', 'caption': 'Sheep on a once snowy mountain grazing on grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181058.jpg', 'caption': 'A group of sheep are on a hill by the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061938.jpg', 'caption': 'a green double Decker bus stopped on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061938.jpg', 'caption': 'A green double decker bus in a city at a stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061938.jpg', 'caption': 'The tall green bus is at the bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061938.jpg', 'caption': 'A green double-decker bus parked at a bus stop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061938.jpg', 'caption': 'A green number 14 double decker bus at a stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333730.jpg', 'caption': 'A tourist looks at sheep grazing in a yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333730.jpg', 'caption': 'A couple of animals standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333730.jpg', 'caption': 'Several sheep are grazing in grass next to a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333730.jpg', 'caption': 'Sheep graze along a wooden fence as a photographer studies them from a stairway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333730.jpg', 'caption': 'A man holding a camera stands on a ramp above sheep. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534377.jpg', 'caption': 'An empty park bench sitting in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534377.jpg', 'caption': 'A bench sitting on a sidewalk in the green and beautiful grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534377.jpg', 'caption': 'The wooden bench is near a trail in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534377.jpg', 'caption': 'A wooden bench sitting on top of a patch of land.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534377.jpg', 'caption': 'The bench is empty in the park outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539784.jpg', 'caption': 'A large herd of sheep are grazing by the busy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539784.jpg', 'caption': 'Sheep are grazing on the verges of a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539784.jpg', 'caption': 'A large herd of sheep standing in the grass near a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539784.jpg', 'caption': 'Many sheep grazing next to a busy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539784.jpg', 'caption': 'Many sheep are grazing in a field of grass next to a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078488.jpg', 'caption': 'A yellow fire hydrant in front of a bike leaning against four poles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078488.jpg', 'caption': 'A sidewalk with a fire hydrant, poles, and people walking. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078488.jpg', 'caption': 'A fire hydrant and a bike resting on pole on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078488.jpg', 'caption': 'A bicycle locked to a pole behind a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078488.jpg', 'caption': 'A yellow fire hydrant is on a brick sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202656.jpg', 'caption': 'Sheep are gathered around a lone tree on the hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202656.jpg', 'caption': \"Group of animals huddling under a single tree's shade.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202656.jpg', 'caption': 'This is a view of a large hill behind a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202656.jpg', 'caption': 'A tree on a hill with sheep underneath it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202656.jpg', 'caption': 'A herd of animals are resting under the shade of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367610.jpg', 'caption': 'A man herding a large flock of sheep down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367610.jpg', 'caption': 'A person with a staff herding some sheep down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367610.jpg', 'caption': 'a guy walking down the street with sheep ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367610.jpg', 'caption': 'A shepherd tends his sheep on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367610.jpg', 'caption': 'A man herding sheep down a busy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276076.jpg', 'caption': 'Paved road with vehicles in one lane and a flock of sheep and goats in the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276076.jpg', 'caption': 'A herd of sheep travel down one side of the road and cars coming down the other side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276076.jpg', 'caption': 'A motorcyclist and drivers navigate around a herd of sheep on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276076.jpg', 'caption': 'Traffic includes motorbike, tuktuk, bus, tractor, goats and sheep', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276076.jpg', 'caption': 'A herd of sheep on a bridge over water, taking up a lane, with oncoming vehicles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110330.jpg', 'caption': 'a crowd of people getting on a tour bus ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110330.jpg', 'caption': 'People line up to board a bus on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110330.jpg', 'caption': 'Many people lined up to get onto a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110330.jpg', 'caption': 'A very big pretty white bus and some people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110330.jpg', 'caption': 'Tour group preparing to load tour bus in tropical area where palm trees are native.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125643.jpg', 'caption': 'A blue and yellow fire hydrant next to a yellow cone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125643.jpg', 'caption': 'A blue and yellow fire hydrant in the dirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125643.jpg', 'caption': 'A neon green safety cone next to a fire hydrant painted in many colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125643.jpg', 'caption': 'A colorful fire hydrant sitting next to a neon cone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125643.jpg', 'caption': 'Blue and yellow fire hydrant sitting next to a green cone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303163.jpg', 'caption': 'A flock of birds is flying around the factory structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303163.jpg', 'caption': 'A large building with various birds flying around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303163.jpg', 'caption': 'there are many birds flying around a tall building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303163.jpg', 'caption': 'Birds fly away from the scaffolding of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303163.jpg', 'caption': 'an old factory building with a group of birds flying over in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185943.jpg', 'caption': 'A view of a bus sitting on a street corner in a city. The picture looks old.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185943.jpg', 'caption': 'a road filled with some traffic and pedestrians ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185943.jpg', 'caption': 'The road is full of cars, people and a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185943.jpg', 'caption': 'A vintage image of a bus and cars on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185943.jpg', 'caption': 'A vintage picture of a street in a city with lots of traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118715.jpg', 'caption': 'A gray fire hydrant sitting next to a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118715.jpg', 'caption': 'A fire hydrant jutting out a sidewalk next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118715.jpg', 'caption': 'A fire hydrant on a sidewalk sits before a stone wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118715.jpg', 'caption': 'A fire hydrant on a sloping sidewalk against a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118715.jpg', 'caption': 'A black and white image of an old fire hydrant on a side walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333321.jpg', 'caption': 'The sign is telling us where the train station is located.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333321.jpg', 'caption': 'An Amtrak sign sitting on top of a wooden pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333321.jpg', 'caption': 'a street sign on a wooden pole near a fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333321.jpg', 'caption': 'Here is an image of an outdoor place. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333321.jpg', 'caption': 'A sign in front of a railroad explaining how to board the train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434261.jpg', 'caption': \"A man sitting in the driver's seat of a beat up bus.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434261.jpg', 'caption': 'there is a very old bus that says new york on the front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434261.jpg', 'caption': 'A bearded man inside of a van outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434261.jpg', 'caption': 'An old bus being driven by a beard man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434261.jpg', 'caption': 'A man is sitting in a van with a broken windshield.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308167.jpg', 'caption': 'A fire hydrant next to a low brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308167.jpg', 'caption': 'a fire hydrant near a brick wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308167.jpg', 'caption': 'a red and yellow fire hydrant by a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308167.jpg', 'caption': 'a red and yellow fire hydrogen next to a brick wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308167.jpg', 'caption': 'The yellow and red fire hydrant is near a brick wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272008.jpg', 'caption': 'A sheep scratches his back up against a wooden structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272008.jpg', 'caption': 'A sheep is nestled under a hanging feeder to create the effect that he is carrying a ladder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272008.jpg', 'caption': 'A sheep rubs against the bottom of his feeder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272008.jpg', 'caption': 'A sheep is rubbing up under a wooden box in a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272008.jpg', 'caption': 'a small sheep standing under some wood in a barn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476253.jpg', 'caption': 'A road block sitting over an orange and blue fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476253.jpg', 'caption': 'A Water Dept sign is placed in front of the fire hydrant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476253.jpg', 'caption': 'A caution sign over a fire hydrant on a pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476253.jpg', 'caption': 'A sawhorse is over a fire hydrant on a walk way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476253.jpg', 'caption': 'A caution sign stands up against a red fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574725.jpg', 'caption': 'A giraffe trying to cross a dirt road quickly.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574725.jpg', 'caption': 'the giraffe is a lithe and gracefully moving animal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574725.jpg', 'caption': 'A giraffe is running and crossing a dirt road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574725.jpg', 'caption': 'A giraffe that is crossing a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574725.jpg', 'caption': 'A Giraffe crossing a dirt road with a small fallen tree on the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265059.jpg', 'caption': 'A giraffe in front of a large amount of plant life. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265059.jpg', 'caption': 'A giraffe standing next to a lush green forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265059.jpg', 'caption': 'The view of a giraffe in front of a green tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265059.jpg', 'caption': 'A large giraffe standing next to some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265059.jpg', 'caption': 'a giraffe standing next to a leafy tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389453.jpg', 'caption': 'A young woman poses by a giraffe statue which appears to give her a kiss.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389453.jpg', 'caption': 'A woman standing in front of a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389453.jpg', 'caption': \"The giraffe is licking the woman's face. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389453.jpg', 'caption': 'The young woman visiting the zoo is posing for a photo with a statue of a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389453.jpg', 'caption': 'A lady in a purple shirt leaning up to a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003926.jpg', 'caption': 'Two sheep standing next to each other in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003926.jpg', 'caption': \"It's tough to find a meal under the snow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003926.jpg', 'caption': 'two sheep standing in the snow with one looking for food ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003926.jpg', 'caption': 'Two sheep standing in the snow while one is nosing around in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003926.jpg', 'caption': 'Two puffy sheep stand in the snow and one sheep has its nose to the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201756.jpg', 'caption': 'A close up of two birds on a tray with bananas peels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201756.jpg', 'caption': 'Birds gather on a table of banana peels next to water and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201756.jpg', 'caption': 'Bananas are being dried in a tropical setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201756.jpg', 'caption': 'Banana peels are being picked at by yellow birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201756.jpg', 'caption': 'Birds are eating bananas from an outdoor bird feeder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154883.jpg', 'caption': 'a large cow stairs across the snowy fields', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154883.jpg', 'caption': 'A mountain goat standing on the side of a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154883.jpg', 'caption': 'An animal standing alone on top of a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154883.jpg', 'caption': 'a sheep on a snowy hill with a sky background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154883.jpg', 'caption': 'A mountain. Goat on top of a mound of snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020541.jpg', 'caption': 'A crow approaches a cardboard pizza box on the ground and opens it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020541.jpg', 'caption': 'Black bird opening a pizza box and eating the contents. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020541.jpg', 'caption': 'a bird opening a box with food and feeding it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020541.jpg', 'caption': 'there is a small black bird next to a pizza box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020541.jpg', 'caption': 'a bird eating out of a pizza box that is on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159561.jpg', 'caption': 'A group of books on top of a book shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159561.jpg', 'caption': 'A display case with a box of seed mix and a bird watchers book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159561.jpg', 'caption': 'A bunch of books on a window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159561.jpg', 'caption': 'a clear window with several books on display ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159561.jpg', 'caption': 'Three items a box of wildflower mix, a blue book and a brown book are sitting on a display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402027.jpg', 'caption': 'A giraffe standing next to some trees in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402027.jpg', 'caption': 'some trees and half a picture of some giraffes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402027.jpg', 'caption': 'A photo of a large banner showing giraffes with no heads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402027.jpg', 'caption': \"A crane stands in the distance behind a sign of a giraffe's body.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402027.jpg', 'caption': 'The mural, a painting of giraffes, is displayed in the barren woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058492.jpg', 'caption': 'A bird standing on top of a beach next to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058492.jpg', 'caption': \"A large stork spreads it's wings as it lands.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058492.jpg', 'caption': 'A crane with fully extended wings landing on a marshy ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058492.jpg', 'caption': 'Vulture swooping down toward the ground in landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058492.jpg', 'caption': 'This bird has a long beak, long legs and a wide wingspan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244636.jpg', 'caption': 'A doughnut shop sign hanging off the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244636.jpg', 'caption': 'There is a sign for doughnuts above a sign for soda pop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244636.jpg', 'caption': 'Two different types of signs hanging off a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244636.jpg', 'caption': 'Two different photos of signs with advertising on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244636.jpg', 'caption': 'two older signs hung from the side of a building advertising pepsi and donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135978.jpg', 'caption': 'The view of a giraffe through some vegetation. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135978.jpg', 'caption': 'A giraffe goes about his business out in the tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135978.jpg', 'caption': 'A lone giraffe standing in a green canopy opening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135978.jpg', 'caption': 'Giraffe eating from a tree behind a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135978.jpg', 'caption': 'a very large giraffe that is standing in the woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490338.jpg', 'caption': 'A busy city street at night time as some people cross the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490338.jpg', 'caption': 'The city side street is almost empty of cars. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490338.jpg', 'caption': 'A group of people walking down a brick street with a car parked along the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490338.jpg', 'caption': 'A group of people in street with car and signs around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490338.jpg', 'caption': 'A city street has many signs in Japanese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179151.jpg', 'caption': 'People are standing in a shopping district with stores.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179151.jpg', 'caption': 'A man on a yellow bike sits in the street under signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179151.jpg', 'caption': 'There are many signs attached to the buildings in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179151.jpg', 'caption': 'There are many signs on a busy downtown street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179151.jpg', 'caption': 'A very cluttered Chinese street showing many business signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538690.jpg', 'caption': 'A couple of street signs sitting on top of a metal pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538690.jpg', 'caption': 'A pole that has two street names on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538690.jpg', 'caption': 'Up close photograph of street sign at the intersection of Main and High streets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538690.jpg', 'caption': 'A two way street sign with the Words Main and High.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538690.jpg', 'caption': 'A street sign indicated the intersection of main street and high street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551861.jpg', 'caption': 'A white and blue bird is perched on a tree branch that is sitting next to a bunch of bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551861.jpg', 'caption': 'a small white and black bird is standing on a branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551861.jpg', 'caption': 'A black and white bird with a long tail, perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551861.jpg', 'caption': 'A bird perched on top of a leaf filled tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551861.jpg', 'caption': 'The black and white bird is perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413287.jpg', 'caption': 'A road wet from rain, and clouds still on the mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413287.jpg', 'caption': 'Two street signs, with a road and some hills in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413287.jpg', 'caption': 'A street sign next to an empty rain covered street in front of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413287.jpg', 'caption': 'Long road with a sign titled Jackson River RD and East Main St.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413287.jpg', 'caption': 'A rain-wet residential street lined with trees and old homes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484551.jpg', 'caption': 'THERE IS A PERSON THAT IS SITTING IN THE BOAT ON THE WATER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484551.jpg', 'caption': 'a woman in a red and white boat water and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484551.jpg', 'caption': 'A woman riding in a boat on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484551.jpg', 'caption': 'A women who is sitting on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484551.jpg', 'caption': 'a person riding inside of a boat on a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133867.jpg', 'caption': 'A parade on the street with a person riding an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133867.jpg', 'caption': 'a parade with an elephant wearing a sign that says\" i love new york\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133867.jpg', 'caption': 'Few persons are seen on zebra crossing on road and an elephant with a banner is there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133867.jpg', 'caption': 'a group of people walking down the street in a parade witha elephant that says i love new york', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133867.jpg', 'caption': 'A man is riding an elephant with and \"I love NY\" sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300246.jpg', 'caption': 'An elephant with a person on top of it in a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300246.jpg', 'caption': 'An elephant wears an I Love MY blanket in a parade', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300246.jpg', 'caption': 'A person riding an elephant down the street in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300246.jpg', 'caption': 'A man that is standing on top of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300246.jpg', 'caption': 'A person riding on top of an elephant on the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456638.jpg', 'caption': 'A beautiful woman in a black skirt getting off a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456638.jpg', 'caption': 'a woman with a blue suitcase getting off a train ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456638.jpg', 'caption': 'A woman gets off a train with her luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456638.jpg', 'caption': 'A woman posing for a picture holding luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456638.jpg', 'caption': 'A young woman holding a suitcase disembarking from a train car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004980.jpg', 'caption': 'A woman in white and black dress with suitcase on train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004980.jpg', 'caption': 'A lady is on the entrance of a train holding her luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004980.jpg', 'caption': 'A woman holding a suitcase standing on the stairs of a train car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004980.jpg', 'caption': 'A woman with tattoos in a dress poses with a blue suitcase on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004980.jpg', 'caption': 'A woman with a suitcase getting off of a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398756.jpg', 'caption': 'A bunch of birds that are standing on a pier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398756.jpg', 'caption': 'Seagulls stand on a cement outcropping over water with city lights in the background .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398756.jpg', 'caption': 'A jetter next to the sea with a city in the vicinity', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398756.jpg', 'caption': 'A flock of birds sitting on top of a wooden pier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398756.jpg', 'caption': 'Birds bunched together outside perched on a long object. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532381.jpg', 'caption': 'A bulldog is unhappy about wearing a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532381.jpg', 'caption': 'An English Bulldog with a hat on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532381.jpg', 'caption': 'A closeup photo of a bulldog wearing an Army style hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532381.jpg', 'caption': 'A bulldog wearing a hat posed for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532381.jpg', 'caption': 'A bull dog looks at the camera while wearing a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208778.jpg', 'caption': 'A CGI man sitting on top of a CGI hospital bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208778.jpg', 'caption': 'A man in a hospital bad with a man sitting on the edge of his bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208778.jpg', 'caption': 'An image of a guy sitting on a bed with a patient.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208778.jpg', 'caption': 'a computer animation of a man sitting on the foot of a bed and a patient in the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208778.jpg', 'caption': 'A computer image of a man sitting on a hospital bed where another man is.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265611.jpg', 'caption': 'A birthday cake is decorated like a fire engine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265611.jpg', 'caption': 'A cake that looks like a toy train with a face on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265611.jpg', 'caption': 'A cake shaped and frosted to look like Thomas the tank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265611.jpg', 'caption': 'A Thomas the Train birthday cake looks delicious.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265611.jpg', 'caption': 'A toy cartoon train is sitting on a red carpet mat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170849.jpg', 'caption': 'Birds flying over a sandy beach and landing on a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170849.jpg', 'caption': 'A flock of birds flying over a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170849.jpg', 'caption': 'Seagulls at the beach with the ocean and people in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170849.jpg', 'caption': 'Four birds are landing on cement steps near a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170849.jpg', 'caption': 'A LOT OF SEAGULLS FLYING AROUND AT THE BEACH', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576412.jpg', 'caption': 'A train cake sitting on top of a metal shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576412.jpg', 'caption': 'A Thomas the train engine model cake with writing on the platform.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000455557.jpg', 'caption': 'The zebras are munching on the vegetation in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455557.jpg', 'caption': 'the zebras are all eating grass in the plains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385438.jpg', 'caption': 'a man playing a game of frisbee in a lush green park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385438.jpg', 'caption': 'A dad and daughter throwing a frisbee on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385438.jpg', 'caption': 'A small girl is playing frisbee with a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385438.jpg', 'caption': 'An adult and a young child play with a frisbee on a grassy field in 2006.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385438.jpg', 'caption': 'A little girl throwing a frisbee to a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183991.jpg', 'caption': 'A few boys appear to be playing Frisbee near a fountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183991.jpg', 'caption': 'A group of kids holding frisbees playing in an area of spouting water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183991.jpg', 'caption': 'A group of kids playing in fountain with frisbees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183991.jpg', 'caption': 'Children playing around in a dancing water fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183991.jpg', 'caption': 'Kids playing with Frisbees in a outdoor fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039390.jpg', 'caption': 'a couple of zebras are standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039390.jpg', 'caption': 'Three zebras, two adult and one youth, grazing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039390.jpg', 'caption': 'Some very pretty zebras in a big grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039390.jpg', 'caption': 'a couple of zebras standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039390.jpg', 'caption': 'A picture of a zebra family and a colt. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371243.jpg', 'caption': 'a couple of zebras that are walking down a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371243.jpg', 'caption': 'there is a adult zebra and a young zebra walking together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371243.jpg', 'caption': 'A small and large zebra walking on a grassy plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371243.jpg', 'caption': 'The two zebras are walking together in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371243.jpg', 'caption': 'A couple of zebra walking across a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032082.jpg', 'caption': 'Two zebras grazing on some grass with some shrubbery around them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032082.jpg', 'caption': 'There are two zebras here eating from the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032082.jpg', 'caption': 'Two zebras bending over eating grass in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032082.jpg', 'caption': 'two zebras are eating some grass and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032082.jpg', 'caption': 'Two zebras are grazing in the field that is scattered with small trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324082.jpg', 'caption': 'Two police officers on horses in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324082.jpg', 'caption': 'The mounted officers ride near buildings with flags on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324082.jpg', 'caption': 'Two cops riding on the back of black horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324082.jpg', 'caption': 'A pair of policemen on horses standing watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324082.jpg', 'caption': 'Two policemen riding horses down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029577.jpg', 'caption': 'Two horses with red feathers on top of their heads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029577.jpg', 'caption': 'A couple of white horses standing in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029577.jpg', 'caption': 'Two white carriage horses with red feather plumes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029577.jpg', 'caption': 'Two white horses with red plumes pulling carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029577.jpg', 'caption': 'Two horses have feathers on their head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141475.jpg', 'caption': 'A white pony standing on its back legs with feather wings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141475.jpg', 'caption': 'A picture of a white flying horse figurine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141475.jpg', 'caption': 'a drawn picture of a horse with wings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141475.jpg', 'caption': 'A white horse on hind legs statue with wings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141475.jpg', 'caption': 'A small figurine of a unicorn on a cloud', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437393.jpg', 'caption': 'a carousel horse has a rose in its mane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437393.jpg', 'caption': 'A figure of a white horse with a blue bridal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437393.jpg', 'caption': 'A statue of a horse with blue reins.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437393.jpg', 'caption': 'A white glass horse wearing a blue bit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437393.jpg', 'caption': 'A white horse head, part of a merry go round.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013605.jpg', 'caption': \"A 6 year old's birthday cake with horses on a top.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013605.jpg', 'caption': 'A large cake with horses on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013605.jpg', 'caption': 'Several plastic animal figures are on a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013605.jpg', 'caption': 'A large sheet cake decorated to look like animals on a green pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013605.jpg', 'caption': 'A green birthday cake has miniature horses on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484457.jpg', 'caption': 'a square cake with many squared layers on top of one another', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484457.jpg', 'caption': 'A three tiered white Christmas themed cake with mistletoe accents ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484457.jpg', 'caption': 'A large stack of square shaped cakes sitting on a lit table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484457.jpg', 'caption': 'A holiday cake with holly designs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484457.jpg', 'caption': 'A covered stool has Christmas packaged on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406001.jpg', 'caption': \"A zebra rolling around on it's back in a field.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406001.jpg', 'caption': 'A couple of giraffe in a large grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406001.jpg', 'caption': 'A very cute zebra rolling in the dirt as another watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406001.jpg', 'caption': 'a zebra on the ground on its back ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406001.jpg', 'caption': 'A zebra standing next to another rolling in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533171.jpg', 'caption': 'A single horse that has been tied to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533171.jpg', 'caption': 'A brown horse is tied to a tree near a white truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533171.jpg', 'caption': 'A brown horse standing next to a white truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533171.jpg', 'caption': 'a horse with reins tied up to a tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533171.jpg', 'caption': 'a brown horse tied to a tree near a white truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430788.jpg', 'caption': 'a lady petting a white horse that is pulling a carriage ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430788.jpg', 'caption': 'A white horse pulling a carriage of people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430788.jpg', 'caption': 'a horse stands attached to a carriage, being touched by a woman', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430788.jpg', 'caption': 'A white horse pulling a carriage down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430788.jpg', 'caption': 'A white horse stands at the side of a road, pulling a carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372252.jpg', 'caption': 'The zebras are eating grass in the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372252.jpg', 'caption': 'Four zebras are grazing at a nature reserve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372252.jpg', 'caption': 'Zebras grazing on sparse grass in an enclosure at an animal park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372252.jpg', 'caption': 'Zebras graze in a grass and bush fenced enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372252.jpg', 'caption': 'four zebras grazing in enclosed area with shade trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057357.jpg', 'caption': 'A zebra eating grass next to a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057357.jpg', 'caption': 'A lone zebra lowering its head to eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057357.jpg', 'caption': 'A zebra is outside enjoying the grass before him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057357.jpg', 'caption': 'A zebra eating some grass in front of a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057357.jpg', 'caption': 'a close up of a zebra behind a fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049756.jpg', 'caption': 'A horse with a saddle tied up to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049756.jpg', 'caption': 'A wooden chorale with horses some saddled, some not.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049756.jpg', 'caption': 'Group of horses with reins attached to wooden fence relaxing ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049756.jpg', 'caption': 'a horse stands at its stall in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049756.jpg', 'caption': 'Horses some in coral, two with saddles and blankets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478821.jpg', 'caption': 'Two zebra standing next to each other on a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478821.jpg', 'caption': 'Two zebras standing idle by a vehicle with a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478821.jpg', 'caption': 'Two zebras are standing side by side in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478821.jpg', 'caption': 'Two short zebras with big heads stand side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478821.jpg', 'caption': 'Two zebras look at the visitors to the wildlife park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075990.jpg', 'caption': 'A man riding a brown horse down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075990.jpg', 'caption': 'An older man is riding a horse down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075990.jpg', 'caption': 'A cowboy rides a horse down a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075990.jpg', 'caption': 'A man on a horse on a street near people walking. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075990.jpg', 'caption': 'a man on a horse rides through the streets while others watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248441.jpg', 'caption': 'a woman with flowers in her hair staring at the horse next to her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248441.jpg', 'caption': 'a person next to a horse on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248441.jpg', 'caption': 'The girl is holding the horse and looking at its face. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248441.jpg', 'caption': 'A girl with colorful clothing with a horse on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248441.jpg', 'caption': 'A girl stands on the beach with a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492366.jpg', 'caption': 'A group of people that are standing next to a horse and cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492366.jpg', 'caption': 'Two men talking to a man in the horse drawn carriage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492366.jpg', 'caption': 'Two men are talking in front of a horse with a cart. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492366.jpg', 'caption': 'a black and white photo of a person near a carriage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492366.jpg', 'caption': 'a couple of people stand next to a being pulled by horses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105102.jpg', 'caption': 'a plate with meat and potatoes on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105102.jpg', 'caption': 'A white plate topped with meat and potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105102.jpg', 'caption': 'A plate has meat, cauliflower, and a piece of something green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105102.jpg', 'caption': 'A plate of food with meat and vegetables. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105102.jpg', 'caption': 'an image of a plate with meat and potatoes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210081.jpg', 'caption': 'Snow skiers in line skiing down a mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210081.jpg', 'caption': 'A party of skiers skiing down a large mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210081.jpg', 'caption': 'People enjoying the snowy slopes on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210081.jpg', 'caption': 'a bunch of people skiing on snowy hills', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210081.jpg', 'caption': 'Many skiers on a slope high up on a mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212462.jpg', 'caption': 'Still frame of fruit on a plate including pineapple, bananas and an orange.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212462.jpg', 'caption': 'A plate with an orange, pineapple, and bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212462.jpg', 'caption': 'A plate of different types of fruit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212462.jpg', 'caption': 'A pineapple, bananas and oranges on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212462.jpg', 'caption': 'A pineapple, orange, and bananas sit on a plate in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008196.jpg', 'caption': 'A cookie sitting on top of a piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008196.jpg', 'caption': 'The cookies have chocolate and oats in them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008196.jpg', 'caption': 'Small clump of home made granola bars on table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008196.jpg', 'caption': 'an oatmeal and chocolate chip cookie sitting on a piece of parchment paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008196.jpg', 'caption': 'The cookie dish includes different fruits and nuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292618.jpg', 'caption': 'The people are moving across the snowy mountainside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292618.jpg', 'caption': 'Many people with skis go up a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292618.jpg', 'caption': 'A large group of hikers climb a mountain in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292618.jpg', 'caption': 'A group of skiers attempt to go up a large snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292618.jpg', 'caption': 'A large group of skiers go up a mountain together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056714.jpg', 'caption': 'A banana sitting next to an orange and apples on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056714.jpg', 'caption': 'an orange on top of an apple next to a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056714.jpg', 'caption': 'Group of spoiled fruit sitting next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056714.jpg', 'caption': 'A number of various types of fruit all stacked on each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056714.jpg', 'caption': 'Banana, orange and two different types of apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369294.jpg', 'caption': 'The pitcher beings to throw the baseball from the mound', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369294.jpg', 'caption': 'a baseball player that is standing out at the pictures mound', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369294.jpg', 'caption': 'A baseball player for the San Francisco Giants prepares to pitch a ball in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369294.jpg', 'caption': 'A man throwing a baseball from a mound on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369294.jpg', 'caption': 'A baseball player throwing a ball during a game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472509.jpg', 'caption': 'A baseball player pitching a baseball holding catcher mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472509.jpg', 'caption': 'A baseball player takes a body stretch to launch the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472509.jpg', 'caption': 'A baseball player for the Giants in the motion of throwing a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472509.jpg', 'caption': 'A pitcher is just about to throw a good fastball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472509.jpg', 'caption': 'Professional baseball player about to throw the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104568.jpg', 'caption': 'A collection of fruits and vegetables sitting on a stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104568.jpg', 'caption': 'some different fruits and vegetables sitting on a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104568.jpg', 'caption': 'A stove top oven topped with lots of fresh fruits and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104568.jpg', 'caption': 'Fresh fruit and vegetables on a stove top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104568.jpg', 'caption': 'Fruits and vegetables are on the stove top in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022403.jpg', 'caption': 'Kids smiling and showing sportsmanship after a little league game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022403.jpg', 'caption': 'Two youth baseball teams passing by each other in a line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022403.jpg', 'caption': 'Team players shaking hands with the opposite team on the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022403.jpg', 'caption': 'Many different baseball players are standing together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022403.jpg', 'caption': 'A group of children showing sportsmanship after a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521964.jpg', 'caption': 'A produce stand shows a minimal amount of frui.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521964.jpg', 'caption': 'a couple of booths with fruits and vegetables ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521964.jpg', 'caption': 'Fruit stands with bananas, pineapples, oranges, and other fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521964.jpg', 'caption': 'a bunch of bananas and other fruits at a market front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521964.jpg', 'caption': 'some bananas pineapples and other fruits on some shelves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568630.jpg', 'caption': 'a little girl hold a bundle of bananas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568630.jpg', 'caption': 'A girl holds a small bunch of miniature bananas on a branch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568630.jpg', 'caption': 'a african girl have a pretty thing in her hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568630.jpg', 'caption': 'An adorable little girl hanging onto a bunch of ripe and unripe bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568630.jpg', 'caption': 'A little girl is holding on to a branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015559.jpg', 'caption': 'A woman standing on ice holding skis in flip flops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015559.jpg', 'caption': 'A woman in a pink jacket and sandals holding skis and poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015559.jpg', 'caption': 'The woman is standing in the snow holding skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015559.jpg', 'caption': 'A woman standing in partial snow with skees wearing sandles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015559.jpg', 'caption': 'a female snow skier is holding her skis and poles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154816.jpg', 'caption': 'a couple of young kids play a game of basketball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154816.jpg', 'caption': 'A boy swinging a baseball bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154816.jpg', 'caption': 'A catcher catching a baseball behind a batter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154816.jpg', 'caption': 'a catcher holding onto a baseball during the game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154816.jpg', 'caption': 'A little league baseball player is swinging the bat to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341389.jpg', 'caption': 'Some skiers are going down a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341389.jpg', 'caption': 'There is smoke rising off the top of a ski resort', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341389.jpg', 'caption': 'There are some people skiing in the snow in the mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341389.jpg', 'caption': 'Skiers are going down a steep slope on a cloudy day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341389.jpg', 'caption': 'Skiers go down the slopes of the mountain a midst the clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192660.jpg', 'caption': 'Benches of fruit on display at a market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192660.jpg', 'caption': 'A produce isle filled with fruits and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192660.jpg', 'caption': 'Grapes, watermelon, oranges, mangoes and pineapple for sale in a store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192660.jpg', 'caption': 'Many fresh vegetables are on a market table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192660.jpg', 'caption': 'A display of fruit including grapes, papaya, melons and pineapples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383726.jpg', 'caption': 'A pile of orange sitting inside of net bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383726.jpg', 'caption': 'two bags of oranges in orange net bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383726.jpg', 'caption': 'Bags of oranges sitting on a table in a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383726.jpg', 'caption': 'A bunch of oranges piled up and sealed in net bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383726.jpg', 'caption': 'This is several red mesh bags of oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300655.jpg', 'caption': 'A man in a yellow shirt stands in a dirt circle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300655.jpg', 'caption': 'a number of baseball players on a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300655.jpg', 'caption': 'A pitcher standing on a mound on top of a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300655.jpg', 'caption': 'An amateur baseball game with palm trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300655.jpg', 'caption': 'A group of people on baseball field with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051223.jpg', 'caption': 'A couple of men running across a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051223.jpg', 'caption': 'Two baseball players running at a baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051223.jpg', 'caption': 'Two baseball players in the process of running the bases', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051223.jpg', 'caption': 'Baseball players are advancing to the next base a head of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051223.jpg', 'caption': 'We are looking at a baseball game in progress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183973.jpg', 'caption': 'A young man swinging a baseball bat on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183973.jpg', 'caption': 'a young male hitting a baseball bat on first base in a baseball field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183973.jpg', 'caption': 'A batter tries to hit a pitch in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183973.jpg', 'caption': 'A group of people on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183973.jpg', 'caption': 'A man swinging a baseball bat with two other men behind him as others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106150.jpg', 'caption': 'A chicken dish with broccoli and mashed vegetable with bordeaux wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106150.jpg', 'caption': 'A plate of poultry and broccoli with a bottle of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106150.jpg', 'caption': 'A plate with baked chicken, broccoli, a bowl of mashed potatoes, and a wine bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106150.jpg', 'caption': 'A plate with chicken and broccoli on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106150.jpg', 'caption': 'Circular plate filled with broccoli and chicken next to a bowl of mashed potatoes, and bottle of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471226.jpg', 'caption': 'A pile of broccoli is being displayed on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471226.jpg', 'caption': 'A vegetarian meal with some sauce sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471226.jpg', 'caption': 'A close-up of a plate of vegetables containing broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471226.jpg', 'caption': 'A white plate holds a broccoli dish. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471226.jpg', 'caption': 'A white plate topped with vegetables.covered in sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415179.jpg', 'caption': 'This person is frying her bananas on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415179.jpg', 'caption': 'A stove top with three pans of food cooking on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415179.jpg', 'caption': 'Someone is cooking bananas and a cream sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415179.jpg', 'caption': 'a close up of bananas frying in a pan on a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415179.jpg', 'caption': 'A person cooks food on three different hot plates. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371841.jpg', 'caption': 'A white bowl with shrimp, broccoli and rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371841.jpg', 'caption': 'Broccoli and shrimp in a white bowl with chopsticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371841.jpg', 'caption': 'Broccoli and shrimp are on top of noodles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371841.jpg', 'caption': 'Chopsticks rest on a bowl of shrimp, broccoli and noodles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371841.jpg', 'caption': 'A dish of prepared food has rice, broccoli, and shrimp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487333.jpg', 'caption': 'A cat sitting on couch biting into a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487333.jpg', 'caption': 'A cat sniffing a banana on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487333.jpg', 'caption': 'A cat sniffing a banana on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487333.jpg', 'caption': 'A white and black cat sniffing a banana on couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487333.jpg', 'caption': 'A black and white cat is sitting on a couch and sniffing a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095051.jpg', 'caption': 'A man on skis is posing on a ski slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095051.jpg', 'caption': 'A person on a ski mountain posing for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095051.jpg', 'caption': 'A man n a red coat stands on the snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095051.jpg', 'caption': 'A man riding skis on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095051.jpg', 'caption': 'A lady is in her ski gear in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500657.jpg', 'caption': 'A little league baseman couching by his base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500657.jpg', 'caption': 'A small boy with a baseball glove stands in a ready position in a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500657.jpg', 'caption': 'A little boy in a baseball uniform leaned over to field a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500657.jpg', 'caption': 'A young boy who is in baseball uniform in position.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500657.jpg', 'caption': 'a small kid with a baseball glove on gets ready to play ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169547.jpg', 'caption': 'Woman holding a banana pointed at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169547.jpg', 'caption': 'A woman holding up a banana to her nose, as she holds her lips wide open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169547.jpg', 'caption': 'a lady with some kind of weird gadget in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169547.jpg', 'caption': 'a girl showing the end of a banana and shes making a face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169547.jpg', 'caption': 'There is a woman holding up a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413295.jpg', 'caption': 'A beautiful women holding a large yellow banana with her mouth wide open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413295.jpg', 'caption': 'Young women with green knit hat holding banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413295.jpg', 'caption': 'A woman holding up a banana and smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413295.jpg', 'caption': 'A smiling woman holds a banana up in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413295.jpg', 'caption': 'The girls is holding a banana and smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169858.jpg', 'caption': 'A beautiful girl holding a giant banana in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169858.jpg', 'caption': 'A girl with a green hat and black hoodie is holding a banana close to the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169858.jpg', 'caption': 'A women holding a very large looking banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169858.jpg', 'caption': 'A person wearing a hooded garment and holding a yellow banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169858.jpg', 'caption': 'A woman is smiling and holding a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251508.jpg', 'caption': 'A beautiful woman with blue eyes holding a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251508.jpg', 'caption': 'a lady that is holding a large banana', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251508.jpg', 'caption': 'Woman holding up a banana in her hand inside a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251508.jpg', 'caption': 'A woman holding a yellow banana and wearing a green hat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251508.jpg', 'caption': 'A girl shows a banana to the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266091.jpg', 'caption': 'A small garden area features a few springs of growth and a small busy plant and a few bricks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266091.jpg', 'caption': 'close up of a garden with shrubs growing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266091.jpg', 'caption': 'A garden is in the process of growing outside a fenced area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266091.jpg', 'caption': 'Weeds growing amongst the ferns and dry grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266091.jpg', 'caption': 'Several green garden plants growing inside of a mesh fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452618.jpg', 'caption': 'A woman sitting on a plane with plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452618.jpg', 'caption': 'A woman that is sitting on a plane near a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452618.jpg', 'caption': 'A woman is holding a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452618.jpg', 'caption': 'A woman enjoys a drink and slice of cake from an airplane seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452618.jpg', 'caption': 'a young girl sitting on an airplane holding a plate of cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178748.jpg', 'caption': 'A pan filled with food sitting on a stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178748.jpg', 'caption': 'A pot of soup is being prepared on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178748.jpg', 'caption': 'A pot of vegetable soup is cooking on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178748.jpg', 'caption': 'A spoon is resting in a pot of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178748.jpg', 'caption': 'A pot on the stove with broccoli, tomatoes and other ingredients with a wooden spoon inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561336.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561336.jpg', 'caption': 'An umpire in the field, talking to the batter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561336.jpg', 'caption': 'Umpire having a conversation with batter on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561336.jpg', 'caption': 'A baseball game with the batter and umpire out by the pitching mound ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561336.jpg', 'caption': 'A baseball player who is talking to an umpire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095620.jpg', 'caption': 'A plate of food with a cream sauce on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095620.jpg', 'caption': 'A plate topped with a frosting covered piece of cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095620.jpg', 'caption': 'A food entree is served on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095620.jpg', 'caption': 'a desert on a plate with white cream and a fork with it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095620.jpg', 'caption': 'an image of a plate of desert topped with ice cream', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365168.jpg', 'caption': 'A plate filled with pasta and vegetables on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365168.jpg', 'caption': 'some noodles broccoli and carrot pieces in sauce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365168.jpg', 'caption': 'A plate with flat noodles, strips of carrot, and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365168.jpg', 'caption': 'Colorful pasta dish on white plate including shrimp, carrots and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365168.jpg', 'caption': 'an image of a plate of noodles cheese and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095113.jpg', 'caption': 'A skier stands posing on a flat area in front of the lodge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095113.jpg', 'caption': 'A man in skis and winter gear at a ski resort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095113.jpg', 'caption': 'A man standing on a pair of skis wearing a black jacket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095113.jpg', 'caption': 'A man standing on skiis in front of the lodge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095113.jpg', 'caption': 'a man that is skiing across some snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269721.jpg', 'caption': 'A man standing in a field with a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269721.jpg', 'caption': 'A pitcher who is holding the baseball behind his back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269721.jpg', 'caption': 'A man in black jersey holding a baseball behind his back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269721.jpg', 'caption': 'A baseball player leaning in for the pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269721.jpg', 'caption': 'A baseball player prepares to throw out a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353275.jpg', 'caption': 'A close up image of a pepperoni broccoli and cucumber pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353275.jpg', 'caption': 'A pepperoni, zucchini and broccoli pizza with a white sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353275.jpg', 'caption': 'A vegetarian pizza with broccoli, fake pepperoni and cucumbers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353275.jpg', 'caption': 'A pizza with pepperoni, broccoli and cucumbers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353275.jpg', 'caption': 'Close-up shot of a pizza topped with fresh vegetables and pepperoni.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022842.jpg', 'caption': 'Cooked broccoli and cauliflower covered with creamy cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022842.jpg', 'caption': 'Cooked broccoli with cauliflower on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022842.jpg', 'caption': 'Someone is eating some cauliflower mixed with broccoli ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022842.jpg', 'caption': 'A dish with broccoli and cheese is shown in close-up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022842.jpg', 'caption': 'Closeup of a tray of food that includes broccoli and potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059614.jpg', 'caption': 'A multi colored dish with broccoli and white twisted pasta in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059614.jpg', 'caption': 'There is a plate filled with pasta and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059614.jpg', 'caption': 'Closeup of a green and purple plate of pasta and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059614.jpg', 'caption': 'A plate of salad of macaroni and broccoli . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059614.jpg', 'caption': 'A closeup of a pasta dish with broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553253.jpg', 'caption': 'A man holding a bunch of green bananas over his right shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553253.jpg', 'caption': 'An Asian man holding a bunch of bananas with a cap on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553253.jpg', 'caption': 'A man carrying a bushel of bananas over his shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553253.jpg', 'caption': 'A man is holding a bunch of freshly picked bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553253.jpg', 'caption': 'A man carrying a bunch of bananas over his shoulders.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410633.jpg', 'caption': 'A plate featuring steak with sauce, broccoli, and mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410633.jpg', 'caption': 'A piece of meat with a sauce net to broccoli and a mushroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410633.jpg', 'caption': 'A piece of meat and other food items sitting on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410633.jpg', 'caption': 'a big white plate that has some food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410633.jpg', 'caption': 'A plate of food with a mushroom cut in half, one piece of broccoli and meat with a sauce on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470095.jpg', 'caption': 'Several cross country skiers skiing at night over the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470095.jpg', 'caption': 'Several people skiing on a trail at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470095.jpg', 'caption': 'skiiers and snowboarders making their way down a trail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470095.jpg', 'caption': 'A group of men riding snowboards down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470095.jpg', 'caption': 'A group of skiers are on an upward slope in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228580.jpg', 'caption': 'A man working on ski bindings with other ski gear around in a living area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228580.jpg', 'caption': 'The man is fixing his two skies so the shoe will fit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228580.jpg', 'caption': 'A man sitting on the floor adjusting his skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228580.jpg', 'caption': 'A man looks at his ski equipment inside his family room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228580.jpg', 'caption': 'A man sits cross legged fixing skis on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255209.jpg', 'caption': 'The dog is dwarfed by his human walker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255209.jpg', 'caption': 'A person holding a dog by a red leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255209.jpg', 'caption': 'Small dog with red harness being held by a man with grey shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255209.jpg', 'caption': 'A man takes a picture of his dog on a leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255209.jpg', 'caption': 'A man walking his dog with a red leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127914.jpg', 'caption': 'A person rests his skateboard on his toe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127914.jpg', 'caption': 'Someone is balancing a skateboard on the their toe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127914.jpg', 'caption': 'A person in dark pants standing and holding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127914.jpg', 'caption': \"close up of a skateboarder's pants with his board resting on one of his shoes\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127914.jpg', 'caption': 'This skateboarder is holding a skateboard on top of his foot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577321.jpg', 'caption': 'a pizza with tomatoes broccoli cheese and other toppings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577321.jpg', 'caption': 'A burned pizza with tomatoes, broccoli and cheese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577321.jpg', 'caption': 'A meal covered with a lot of broccoli and tomatoes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577321.jpg', 'caption': 'A photo of mixed vegetable soup in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577321.jpg', 'caption': 'A pizza topped with lots of veggies and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455381.jpg', 'caption': 'A white white topped with pasta, mushrooms and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455381.jpg', 'caption': 'A tasty looking plate of pasta with some broccoli and mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455381.jpg', 'caption': 'a close up of a plate of food with broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455381.jpg', 'caption': 'Some broccoli, noodles and mushrooms mixed together in plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455381.jpg', 'caption': 'A plate of egg noodles with broccoli and mushrooms. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238537.jpg', 'caption': 'Two people posing with skis and a snowboard on a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238537.jpg', 'caption': 'Two people holding snowboards standing together with a sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238537.jpg', 'caption': 'People are standing in the snow while holding snowboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238537.jpg', 'caption': 'The two people are holding skis and a sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238537.jpg', 'caption': 'two people holding ski boards standing on a snow covered area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058778.jpg', 'caption': 'a guy riding a skateboard at a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058778.jpg', 'caption': 'The young skateboarder is trying one of his first tricks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058778.jpg', 'caption': 'A person on a skateboard at the top of a small bowl at a skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058778.jpg', 'caption': 'A young man skating alone on a slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058778.jpg', 'caption': 'A man skateboarding on a ramp at a skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489605.jpg', 'caption': 'Pasta and vegetable salad served in bowl with meat and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489605.jpg', 'caption': 'A bowl that has vegetables, pasta, and meat in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489605.jpg', 'caption': 'Bowl filled up with pasta salad with broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489605.jpg', 'caption': 'a bowl of pasta salad with broccoli carrots and ham', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489605.jpg', 'caption': 'A glass bowl holds the ingredients for a cold pasta salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144534.jpg', 'caption': 'Skillet filled with salami, broccoli and other vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144534.jpg', 'caption': 'A pan that is full of some broccoli and other vegetables and some meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144534.jpg', 'caption': 'A stir fry of several different vegetables and sausage in a skillet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144534.jpg', 'caption': 'Pan on a stove cooking brightly colored meat and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144534.jpg', 'caption': 'Ham, broccoli and carrots in a skillet on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510898.jpg', 'caption': 'A bunch of yellow and red apples are shining.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510898.jpg', 'caption': 'A shiny, red apple on top of other apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510898.jpg', 'caption': 'There red apple has a stem on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510898.jpg', 'caption': 'A pile of red and green apples sitting on top of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510898.jpg', 'caption': 'One red and green apple in focus among other apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279209.jpg', 'caption': 'A skier pauses at a fork in a forest trail covered in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279209.jpg', 'caption': 'A man riding skis up the side of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279209.jpg', 'caption': 'A skier goes cross country consulting a sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279209.jpg', 'caption': 'Man on snow skis in a heavy snow with high drifts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279209.jpg', 'caption': 'A man is standing on a snowy path surrounded by evergreen trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090707.jpg', 'caption': 'A white bowl filled with lots of green broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090707.jpg', 'caption': 'A picture of something and it appears like food.\\n\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090707.jpg', 'caption': 'A bowl of broccoli sits beside a lemon wedge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090707.jpg', 'caption': 'A lemon wedge sits beside a bowl of broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090707.jpg', 'caption': 'A bowl of brocolli on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577403.jpg', 'caption': 'A couple of young boys with skateboards pass a city bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577403.jpg', 'caption': 'Two men with skateboards while one is riding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577403.jpg', 'caption': 'Two young men are outside skateboarding together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577403.jpg', 'caption': 'One person rides a skateboard, while another person walks alongside, carrying a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577403.jpg', 'caption': 'Two young men are skateboarding on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273961.jpg', 'caption': 'a skateboarder in a black shirt is doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273961.jpg', 'caption': 'A man riding a skateboard on a walkway surrounded by people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273961.jpg', 'caption': 'skateboarder performs trick on street as people watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273961.jpg', 'caption': 'A guy is in mid air as he leaps over a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273961.jpg', 'caption': 'A person that is doing a skateboard trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211498.jpg', 'caption': 'A plate with a food entree on top is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211498.jpg', 'caption': 'A white plate that has food on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211498.jpg', 'caption': 'A plate of broccoli and potatoes covered in cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211498.jpg', 'caption': 'A plate holds a portion of a broccoli casserole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211498.jpg', 'caption': 'A meal of broccoli and cheese on a plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427189.jpg', 'caption': 'this is a few heads of broccoli in a box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427189.jpg', 'caption': 'Packaging for broccoli florets found at the grocery store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427189.jpg', 'caption': 'A close up picture of green broccoli florets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427189.jpg', 'caption': 'A close up image of a bag of Broccoli florets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427189.jpg', 'caption': 'A portion of a package of frozen broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487421.jpg', 'caption': 'A food closeup shows a blend of pasta noodles, corn, tomato bits, sections of broccoli, and croutons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487421.jpg', 'caption': 'A blue bowl filled with noodles and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487421.jpg', 'caption': 'A bowl full of a pasta dish looks very yummy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487421.jpg', 'caption': 'Food consisting of noodles, broccoli, tomatoes, bread crumbs and seasoning.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487421.jpg', 'caption': 'Some type of pasta salad with noodles, corn, and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512729.jpg', 'caption': 'A picture of a plate of food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512729.jpg', 'caption': 'A dish made of cauliflower and broccoli covered in sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512729.jpg', 'caption': 'Broccoli and cauliflower florets are served with a glaze ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512729.jpg', 'caption': 'Broccoli and cauliflower covered with sweet and sour sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512729.jpg', 'caption': 'chicken and broccoli dish with some kind of what looks to be sweet and sour sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289469.jpg', 'caption': 'A dish of macaroni and cheese, french fries and broccoli are sitting on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289469.jpg', 'caption': 'some pasta and fries sitting on a plate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289469.jpg', 'caption': 'A bowl of pasta shares a plate with fries and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289469.jpg', 'caption': 'Various foods are sitting in bowls and plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289469.jpg', 'caption': 'some broccoli noodles in a bowl and fries on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489916.jpg', 'caption': 'A plate full of broccoli and asian noodles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489916.jpg', 'caption': 'A plate of broccoli and noodles sits on a surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489916.jpg', 'caption': 'There is a plate of broccoli and noodles on the countertop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489916.jpg', 'caption': 'A plate of broccoli sits on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489916.jpg', 'caption': 'A white plate of steamed broccoli and noodles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225943.jpg', 'caption': 'A dinner plate with a stir-fry dish of broccoli and rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225943.jpg', 'caption': 'a white plate with brown rice and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225943.jpg', 'caption': 'A plate of rice, onions and broccoli on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225943.jpg', 'caption': 'Rice and broccoli on a plate sitting on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225943.jpg', 'caption': 'White plate with green and brown mixed food on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176118.jpg', 'caption': 'Close up of a plate with broccoli and shrimp, with some broth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176118.jpg', 'caption': 'Someone is eating broccoli and shrimp for dinner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176118.jpg', 'caption': 'A white plate with blue trim full of broccoli and shrimp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176118.jpg', 'caption': 'A plate of broccoli and shrimp stir fry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176118.jpg', 'caption': 'The plate contains shrimp and broccoli with a brown sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384010.jpg', 'caption': 'White plate with blue rim featuring seafood with vegetables and rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384010.jpg', 'caption': 'A white and blue plate holding fish and broccoli on rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384010.jpg', 'caption': 'A large piece of chicken on a plate with broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384010.jpg', 'caption': 'a close up of a plate of food with broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384010.jpg', 'caption': 'A large piece of meat that is set on top of some rice and broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163852.jpg', 'caption': 'a square plate with all kinds of vegetables on the plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163852.jpg', 'caption': 'A view of a plate of food , that looks very decorative. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163852.jpg', 'caption': 'A person is holding a board with sliced vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163852.jpg', 'caption': 'a small plate with some vegeatables being held by a person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163852.jpg', 'caption': 'Some food that is sitting on a napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322369.jpg', 'caption': 'Fast food displayed on a table with sandwich and soup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322369.jpg', 'caption': 'A sandwich and soup sit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322369.jpg', 'caption': 'A burger sitting next to a cup of soup and crackers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322369.jpg', 'caption': 'A hamburger and a cup of soup on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322369.jpg', 'caption': 'a table that has some food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162021.jpg', 'caption': 'Three people in white shirts and ties on skateboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162021.jpg', 'caption': 'Three people skateboarding with cement and large crowd', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162021.jpg', 'caption': 'Three teenagers are riding skateboards next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162021.jpg', 'caption': 'Three young people ridding skateboards in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162021.jpg', 'caption': 'Three kids are wearing suits and ties, and are skateboarding. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385196.jpg', 'caption': 'A group of people riding skateboards across a walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385196.jpg', 'caption': 'Several people wearing helmets and riding skateboards in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385196.jpg', 'caption': 'Many people ride their skateboards with helmets on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385196.jpg', 'caption': 'a group of people are riding their skate boards down a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385196.jpg', 'caption': 'Boys and girls ring on skateboards at a park.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102848.jpg', 'caption': 'Many people with skateboards on a large sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102848.jpg', 'caption': 'The men are riding their skateboards outside together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102848.jpg', 'caption': 'Longboarders at some congregation for the sport with professional wear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102848.jpg', 'caption': 'Many young men are skateboarding on concrete outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102848.jpg', 'caption': 'a bunch of people on skate boards ride on some cement', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306343.jpg', 'caption': 'A group of skateboarders riding their skateboards on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306343.jpg', 'caption': 'A group of boys riding skateboards with backpacks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306343.jpg', 'caption': 'Several people on skateboards riding them on cement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306343.jpg', 'caption': 'A group of skateboarders atop a concrete surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306343.jpg', 'caption': 'A bunch of guys on their skateboard with their helmets on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051500.jpg', 'caption': 'a couple of kids are standing by the bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051500.jpg', 'caption': 'two young children in a garden eating greens', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051500.jpg', 'caption': 'two kids are picking plants in the garden', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051500.jpg', 'caption': 'two small children wearing hats and standing in a garden', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051500.jpg', 'caption': 'Some small boys with hats are in a garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486254.jpg', 'caption': 'A grey bowl full of orange and green vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486254.jpg', 'caption': 'Assortment of cooked vegetable in bowl with spoon for consumption.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486254.jpg', 'caption': 'A bowl full of asparagus and carrots, with a spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486254.jpg', 'caption': 'a close up of a bowl of food with carrots ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486254.jpg', 'caption': 'A spoon sits in a bowl of carrots and asparagus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463961.jpg', 'caption': 'A bowl of carrots and green beans with a spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463961.jpg', 'caption': 'stir fry with carrots, asparagus and seasoning containing a spoon ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463961.jpg', 'caption': 'A mixture of asparagus and carrots in a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463961.jpg', 'caption': 'Cooked sliced carrots and asparagus on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463961.jpg', 'caption': 'Asparagus and carrots in a bowl with a spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245242.jpg', 'caption': 'a wooden cutting board with cheese, bread and a knife on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245242.jpg', 'caption': 'A cutting board topped with cheese, bread and a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245242.jpg', 'caption': 'A cutting board with carrots and thin breading.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245242.jpg', 'caption': 'Sliced bread and cheese sits on a cutting board with a sharp knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245242.jpg', 'caption': 'Carrots, bread and knife on top of cutting board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159310.jpg', 'caption': 'A couple of skis beneath two ski poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159310.jpg', 'caption': 'Crossed ski sticks and skis on white snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159310.jpg', 'caption': 'Skis and handles positioned out in the snow for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159310.jpg', 'caption': 'A picture of two skis and two poles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159310.jpg', 'caption': 'skis and matching ski poles on snowy background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487943.jpg', 'caption': 'a man doing a big jump with his skateboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487943.jpg', 'caption': 'Two pictures of a man jumping a trash can on a skate board in different time settings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487943.jpg', 'caption': 'A boy is jumping his skateboard over a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487943.jpg', 'caption': 'A man riding a skateboard over a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487943.jpg', 'caption': 'A man is jumping over a trash bin on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194525.jpg', 'caption': 'A skier navigates a turn on the course at the Olympic Games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194525.jpg', 'caption': 'a person that is skiing across some snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194525.jpg', 'caption': 'Competitive Skiier turning for respective flag in race ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194525.jpg', 'caption': 'A skier is leaning into a curve on a downhill course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194525.jpg', 'caption': 'A cool guy on skiis does a trick down a hil', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000157886.jpg', 'caption': 'Several zebras eating some grass on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157886.jpg', 'caption': 'A herd of zebra standing next to each other on sandy ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431901.jpg', 'caption': 'an image of a lone zebra eating grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431901.jpg', 'caption': 'A zebra eating grass out in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431901.jpg', 'caption': 'A zebra is eating grass among several trees and some ostriches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431901.jpg', 'caption': 'There is a zebra grazing with ostriches behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431901.jpg', 'caption': 'A captive zebra nuzzles in the grass as an ostrich stands in the shade beneath the trees to the left. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424812.jpg', 'caption': 'Riding a horse through a field at dusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424812.jpg', 'caption': 'A person riding a horse through a dry grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424812.jpg', 'caption': 'a person riding a horse though a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424812.jpg', 'caption': 'A person riding a horse in a field with a beautiful sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424812.jpg', 'caption': 'A person rides a horse across a field under a sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101828.jpg', 'caption': 'A large white horse walking along side the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101828.jpg', 'caption': 'A white horse walking down a street next to a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101828.jpg', 'caption': 'THERE IS A WHITE HORSE WALKING DOWN THE STREET ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101828.jpg', 'caption': 'a horse walking on a road near water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101828.jpg', 'caption': 'A horse galloping down a street past grass and water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017966.jpg', 'caption': 'The zebra is confined within the wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017966.jpg', 'caption': 'a photo of a zebra through a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017966.jpg', 'caption': 'A lone zebra at the public zoo behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017966.jpg', 'caption': 'An adorable zebra stands behind a fence next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017966.jpg', 'caption': 'Zebra in a fenced area near some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371004.jpg', 'caption': 'A zebra looks away from the camera at the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371004.jpg', 'caption': 'A zebra is standing behind a chain link fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371004.jpg', 'caption': 'a zebra standing next to a wire beside a chain link fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371004.jpg', 'caption': 'A zebra behind a chain link and electric fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371004.jpg', 'caption': 'A zebra standing on top of a field standing next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232091.jpg', 'caption': 'Several antelope and zebras graze while in a grassy area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232091.jpg', 'caption': 'there are many animals that can be seen in the wild', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232091.jpg', 'caption': \"A group of gazelle's near some zebra's grazing in a field.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232091.jpg', 'caption': 'Zebras and other animals grazing during the day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232091.jpg', 'caption': 'Gazelle eating grass with zebras in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417653.jpg', 'caption': 'A horse figurine sitting on a red chair on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417653.jpg', 'caption': 'A large statue of a chair with a smaller horse on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417653.jpg', 'caption': 'On a snowy street a horse statue sits atop a large chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417653.jpg', 'caption': 'A large chair statue with a large horse statue on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417653.jpg', 'caption': 'The large red chair is occupied by a tiny little horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330109.jpg', 'caption': 'People in a horse drawn buggy on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330109.jpg', 'caption': 'two men in a horse drawn carriage going down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330109.jpg', 'caption': 'A brown and white horse pulls a carriage down a town street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330109.jpg', 'caption': 'Some people riding in a horse drawn carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330109.jpg', 'caption': 'Two people in carriage being drawn by a brown and white horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457229.jpg', 'caption': 'A person on a horse is down by the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457229.jpg', 'caption': 'A person riding a horse on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457229.jpg', 'caption': 'A person rides a horse on the beach by the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457229.jpg', 'caption': 'A woman on a horse on the shore of the ocean ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457229.jpg', 'caption': 'A person is sitting on a horse on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452721.jpg', 'caption': 'A group of people riding horses down a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452721.jpg', 'caption': 'Ten people riding horses along a beach on a very cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452721.jpg', 'caption': 'a group of people riding horses on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452721.jpg', 'caption': 'People riding horses in a long line on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452721.jpg', 'caption': 'Several people are riding horses on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395723.jpg', 'caption': 'two zebras standing by a car in front of some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395723.jpg', 'caption': 'There are two zebras here and there is a car in the back ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395723.jpg', 'caption': 'Two zebras with trees and a vehicle behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395723.jpg', 'caption': 'A group of zebras standing behind a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395723.jpg', 'caption': 'two zebras a black car and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331329.jpg', 'caption': 'Munching in the grass is a daily habit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331329.jpg', 'caption': 'A zebra eats off the ground near some young plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331329.jpg', 'caption': 'a zebra grazes on some grass next to some trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331329.jpg', 'caption': 'a zebra some yellow flowers grass and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331329.jpg', 'caption': 'A striped zebra grazes behind a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200143.jpg', 'caption': 'a group of zebras all pile around a bunch of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200143.jpg', 'caption': 'a number of zebras at a feeder ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200143.jpg', 'caption': 'Several zebras are eating grass from a wooden trough. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200143.jpg', 'caption': 'A bunch of zebras gather together to eat hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200143.jpg', 'caption': 'A family of zebra are eating grass at the same time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479938.jpg', 'caption': 'A man sitting on a horse drawn wagon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479938.jpg', 'caption': 'a person is sitting in the back of a carriage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479938.jpg', 'caption': 'A small horse pulls a person in a small cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479938.jpg', 'caption': 'Two children and an adult ride in a horse pulled cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479938.jpg', 'caption': 'A horse pulling a buggy on a street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368153.jpg', 'caption': 'Two blonde horses standing in a field grazing on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368153.jpg', 'caption': 'A group of horses grazing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368153.jpg', 'caption': 'Two horses grazing in a pasture, with autumn foliage in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368153.jpg', 'caption': 'Some animals that are eating stuff off the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368153.jpg', 'caption': 'two small horses eating grass with a field in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546095.jpg', 'caption': 'Two large horses grazing in a large field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546095.jpg', 'caption': 'Two brown horses grazing the grass in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546095.jpg', 'caption': 'A pair of horses graze in a field with trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546095.jpg', 'caption': 'Horse greases in an open field on green grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546095.jpg', 'caption': 'Two large brown horses grazing in a lush field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384931.jpg', 'caption': 'A large group of people sitting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384931.jpg', 'caption': 'A large group of people sitting on the grass watching people on horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384931.jpg', 'caption': 'People gathered in a park watching a medieval competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384931.jpg', 'caption': 'A crowd of people sitting in a field watching jousting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384931.jpg', 'caption': 'A crowd of people watching a Renaissance period jousting game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023201.jpg', 'caption': 'Two men are riding horses down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023201.jpg', 'caption': 'Two mounted police officers riding horses in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023201.jpg', 'caption': 'two people riding horses on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023201.jpg', 'caption': 'Two workers are heading down the road on their horses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023201.jpg', 'caption': 'Mounted police, both officer and horse in rain gear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485896.jpg', 'caption': 'A group of police men on horses all in a row with flags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485896.jpg', 'caption': 'A line of police offices riding horses down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485896.jpg', 'caption': 'a line of horses being led by one white horse ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485896.jpg', 'caption': 'A group of men riding horses and carrying the American Flag and another flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485896.jpg', 'caption': 'A large group of men on horse back carrying flags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447337.jpg', 'caption': 'A desert with bananas and caramel on a large white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447337.jpg', 'caption': 'a plate with some food stacked on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447337.jpg', 'caption': 'A pastry of sliced banana on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447337.jpg', 'caption': 'A banana dessert with caramel sauce on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447337.jpg', 'caption': 'A white plate topped with bananas and pancakes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092644.jpg', 'caption': 'A group of people out on a boat and a man on a jet ski ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092644.jpg', 'caption': 'People are enjoying the water on the lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092644.jpg', 'caption': 'A group of people are riding boats and jet skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092644.jpg', 'caption': 'A group of friends on a boat watch a jet ski drive passed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092644.jpg', 'caption': 'A motorist on a jet ski flies by people on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412338.jpg', 'caption': 'A man and a woman posing for a picture while on a ski mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412338.jpg', 'caption': 'Two skiers are posing on a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412338.jpg', 'caption': 'Two people holding ski poles posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412338.jpg', 'caption': 'A couple in ski gear while on a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412338.jpg', 'caption': 'A couple is bundled up while on a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215901.jpg', 'caption': 'a big bowl of different kinds of fruit inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215901.jpg', 'caption': 'A bowl of fruit that is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215901.jpg', 'caption': 'A bowl of raw fruit on a table by a painting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215901.jpg', 'caption': 'A white bowl filled with oranges, an apple and a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215901.jpg', 'caption': 'a bowl of fruit on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290113.jpg', 'caption': 'a person riding skis on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290113.jpg', 'caption': 'A man riding skis across snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290113.jpg', 'caption': 'A skier with white pants, a blue jacket and black shoes traveling on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290113.jpg', 'caption': 'Skiers make their way down the slopes on a snowy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290113.jpg', 'caption': 'A woman in blue jacket skiing on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299001.jpg', 'caption': 'A grocery store filled with lots of fresh fruit stand vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299001.jpg', 'caption': 'A man smiles for the camera at a farmers market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299001.jpg', 'caption': 'A man posing with a display of fruits and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299001.jpg', 'caption': 'A man smiling for camera behind a market produce stand with apples, tomatoes, oranges, with price tags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299001.jpg', 'caption': 'Apples, oranges, sweet potatoes and tomatoes for sale at a fruit stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397693.jpg', 'caption': 'some bananas with some stickers and red ends', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397693.jpg', 'caption': 'Red bananas with red painted tips next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397693.jpg', 'caption': 'A closeup picture for several bunches of bananas for sale. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397693.jpg', 'caption': 'Bunches of bananas with a label across them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397693.jpg', 'caption': 'Several bunches of bright yellow bananas with red tips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434142.jpg', 'caption': 'A person picking up a slice of small pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434142.jpg', 'caption': 'A diner holds a slice of thin crust pizza with vegetables and melted cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434142.jpg', 'caption': 'A man holding a slice of pizza taken from a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434142.jpg', 'caption': 'Mans hand holding a slice of pizza that has the rest of the pizza below.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434142.jpg', 'caption': 'the person is reaching for a slice of pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248353.jpg', 'caption': 'A group of people riding skis on top of snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248353.jpg', 'caption': 'People are standing on the slope as skiers are descending. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248353.jpg', 'caption': 'A group of men in colorful jackets skiing down a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248353.jpg', 'caption': 'Several people skiing through a dense, snowy forest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248353.jpg', 'caption': 'People standing and skiing at a ski resort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211743.jpg', 'caption': 'A man riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211743.jpg', 'caption': 'A man is on snow skis on top of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211743.jpg', 'caption': 'A skier in an orange jacket traveling down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211743.jpg', 'caption': 'A snow skier makes their way down a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211743.jpg', 'caption': 'A person on skis on the side of a mountain slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192944.jpg', 'caption': \"Someone going down a hill on ski's .\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192944.jpg', 'caption': 'A man skies down a snowy mountain slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192944.jpg', 'caption': 'A person in black jacket on skis with mountains in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192944.jpg', 'caption': ' a snow skier coming down a snowy mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192944.jpg', 'caption': 'A person is skiing down a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296848.jpg', 'caption': 'A man in ski gear skiing on snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296848.jpg', 'caption': 'A male skiier skiing down a snow slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296848.jpg', 'caption': 'A man wearing black and white skis through the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296848.jpg', 'caption': 'A man skiing on some hill with snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296848.jpg', 'caption': 'A skier skis down a hill and gets hit with snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333190.jpg', 'caption': 'A group of people riding swings in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333190.jpg', 'caption': 'Two adults and three kids are playing on the equipment. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333190.jpg', 'caption': 'Two moms and their kids playing together on a swing set. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333190.jpg', 'caption': 'Women and kids sitting on swings in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333190.jpg', 'caption': 'A group of people on a swing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175356.jpg', 'caption': 'A team is playing baseball in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175356.jpg', 'caption': 'The baseball players are preparing for a game on the side of the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175356.jpg', 'caption': 'a bunch of baseball players are in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175356.jpg', 'caption': 'A man is swinging a baseball bat on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175356.jpg', 'caption': 'A baseball team is warming up before a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472828.jpg', 'caption': 'A man selling oranges and juice to a bunch of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472828.jpg', 'caption': 'a bunch of people stand in front of a fruit vendor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472828.jpg', 'caption': 'Several people standing at a stall piled high with oranges with a man standing behind a counter serving drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472828.jpg', 'caption': 'a group of girls are standing around in front of oranges ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472828.jpg', 'caption': 'A group of people are gathered at the orange stand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051540.jpg', 'caption': 'A pile of fresh produce sitting inside of a store under a scale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051540.jpg', 'caption': 'Most store produce departments are equipped with weight scales.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051540.jpg', 'caption': 'this is fresh fruit sitting in crates together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051540.jpg', 'caption': 'a scale and a bunch of fruit in boxes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051540.jpg', 'caption': 'Oranges in a grocery store by a large scale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388157.jpg', 'caption': 'A tree with a bunch of unripe bananas hanging from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388157.jpg', 'caption': 'bunches of green bananas on a stem of tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388157.jpg', 'caption': 'a tree that has some bananas on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388157.jpg', 'caption': 'Tropical bananas still in bunches on a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388157.jpg', 'caption': 'Bananas hanging on tree in their natural form.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307967.jpg', 'caption': 'A little boy in mid swing at a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307967.jpg', 'caption': 'A young batter swings during a Little League game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307967.jpg', 'caption': 'A person taking a swing at a baseball on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307967.jpg', 'caption': 'A young boy swinging a baseball bat at a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307967.jpg', 'caption': 'Small boy in red uniform swinging at a baseball on a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168032.jpg', 'caption': 'A stack of plates on a counter next to a pan of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168032.jpg', 'caption': 'A stack of dishes sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168032.jpg', 'caption': 'A stack of plates sitting on a table near a knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168032.jpg', 'caption': 'A close up of a stack of plates and a cake somewhat behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168032.jpg', 'caption': 'an image of a cake next to a stack of plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464682.jpg', 'caption': 'a plate with a sandwich that has a toothpick in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464682.jpg', 'caption': 'Two halves of a sandwich sits on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464682.jpg', 'caption': 'A nice looking sandwich loaded with lots of meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464682.jpg', 'caption': 'Two halves of a sandwich with toothpicks in them, on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464682.jpg', 'caption': 'a plate with some sandwiches sitting on top of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200627.jpg', 'caption': 'A plate of food that includes rice and various vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200627.jpg', 'caption': 'A plate filled with a mixture of meat vegetables and rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200627.jpg', 'caption': 'A plate of food sitting on a table next to a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200627.jpg', 'caption': 'a close up of a plate of food with broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200627.jpg', 'caption': 'A paper plate filled with meat vegetables, and rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184295.jpg', 'caption': 'A man holds a baby in his lap while the baby eats a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184295.jpg', 'caption': 'A baby that is sitting with a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184295.jpg', 'caption': 'A person holding a baby feeds it a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184295.jpg', 'caption': 'A baby chewing on toys with mother holding', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184295.jpg', 'caption': 'A baby eating a banana while in a persons lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379882.jpg', 'caption': 'A baseball player holding a bat over home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379882.jpg', 'caption': 'some baseball players are playing baseball on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379882.jpg', 'caption': 'A man in uniform in batting stance with the catcher and umpire in place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379882.jpg', 'caption': 'A batter with his bat raised for the pitch at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379882.jpg', 'caption': 'a baseball player that is standing at home plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411223.jpg', 'caption': 'Plates of food placed on a colorful bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411223.jpg', 'caption': 'A view of a bunch of plate sitting on a table, with a man setting utensils. \\n.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411223.jpg', 'caption': 'A table setting of colorful food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411223.jpg', 'caption': 'A group of plates with food on them sits on a decorative rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411223.jpg', 'caption': 'A table of plated food on a patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004936.jpg', 'caption': 'A white dish filled with lots of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004936.jpg', 'caption': 'a white bowl with a vegetable mix and a black scooper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004936.jpg', 'caption': 'A bowl of vegetables sitting next to a spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004936.jpg', 'caption': 'A bowl full of vegetables with green beans, cauliflower, carrots and more. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004936.jpg', 'caption': 'A bowl that has vegetables inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280810.jpg', 'caption': 'A red and white plate topped with a pot pie and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280810.jpg', 'caption': 'A plate holds a meat pie, carrots and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280810.jpg', 'caption': 'Pot pie and broccoli on a plate on a table with a laptop in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280810.jpg', 'caption': 'A small plate holds a pot pie and broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280810.jpg', 'caption': 'Lunch is in front of the laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421889.jpg', 'caption': 'A muffin sitting on a plate with a fork while customers sit in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421889.jpg', 'caption': 'A muffin and fork sits on a table in a cafe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421889.jpg', 'caption': 'Fresh fruit muffin on a plate with a fork in a cafe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421889.jpg', 'caption': 'A blueberry muffin waits on a plate to be eaten', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421889.jpg', 'caption': 'A picture of a muffin on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221659.jpg', 'caption': 'a pizza with broccoli on it on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221659.jpg', 'caption': 'A pizza with broccoli and olives on a wooden board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221659.jpg', 'caption': 'A pizza sits on a table and it has cheese, olives and broccoli on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221659.jpg', 'caption': 'A pizza topped with cheese and pieces of broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221659.jpg', 'caption': 'a pizza with cheese, black olives and broccoli on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277440.jpg', 'caption': 'A white table with a laptop computer on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277440.jpg', 'caption': 'A desk with a computer and other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277440.jpg', 'caption': 'a laptop sitting on a table, with a beer and tv in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277440.jpg', 'caption': 'A laptop sitting on a desk with other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277440.jpg', 'caption': 'A table with an open laptop, text book, cell phone and a bottle of beer, tv on in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165686.jpg', 'caption': 'Plates of steak, vegetables, potatoes and bread are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165686.jpg', 'caption': 'A table with bread, beef, broccoli and a baked potato on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165686.jpg', 'caption': 'This is a steak dinner with soup, potatoes, bread and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165686.jpg', 'caption': 'On the table there is a plate with beef and a bowl of soup, a plate with a potato, a plate of broccoli, a basket of bread, and a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165686.jpg', 'caption': 'a bowl of soup a steak some broccoli bread and a baked potato ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225945.jpg', 'caption': 'There are two people standing in the snow getting ready to ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225945.jpg', 'caption': 'two people on a snowy ramp posing for the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225945.jpg', 'caption': 'Two skiers pose with their equipment near a snowy fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225945.jpg', 'caption': 'A couple of people with skis standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225945.jpg', 'caption': 'Two people are standing in snow carrying ski poles and skis on their shoulders. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503978.jpg', 'caption': 'a plate filled with some pasta and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503978.jpg', 'caption': 'Pieces of broccoli are scattered over a plate of orange pasta.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503978.jpg', 'caption': 'This is a dish of broccoli and noodles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503978.jpg', 'caption': 'A bowl with vegetable pasta and broccoli on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503978.jpg', 'caption': 'A plate of noodles and vegetables is seen here.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040635.jpg', 'caption': 'A crowd of people shopping at a farmers market filled with fruit and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040635.jpg', 'caption': 'People walking in a market with apples in crates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040635.jpg', 'caption': 'many fruits in baskets with buildings in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040635.jpg', 'caption': 'A view of a farmers market being looked at by many people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040635.jpg', 'caption': 'People looking at crates of fruits and vegetables. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503595.jpg', 'caption': 'A piece of meat on a plate next to broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503595.jpg', 'caption': 'Meat and broccoli are sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503595.jpg', 'caption': 'A dish with salmon, broccoli, and something yellow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503595.jpg', 'caption': 'Meat with bright green vegetables sitting on a white plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503595.jpg', 'caption': 'Close up of salmon and broccoli on plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111907.jpg', 'caption': 'A skateboarder jumping over a cone at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111907.jpg', 'caption': 'Nighttime skateboarder in mid-air performing a flip trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111907.jpg', 'caption': 'A skateboarder is doing a jump trick over a red cone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111907.jpg', 'caption': 'A man mid trick on his skateboard at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111907.jpg', 'caption': 'A man doing tricks on a skateboard at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526028.jpg', 'caption': 'A fancy dish on a white plate at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526028.jpg', 'caption': 'A fancy dinner served with brocclie on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526028.jpg', 'caption': 'A meal is presented nicely on a large white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526028.jpg', 'caption': 'A plate has a small amount of food on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526028.jpg', 'caption': 'A white plate with food and a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170401.jpg', 'caption': 'some food is on a white plate on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170401.jpg', 'caption': \"A picture of someone's dinner of fried fish and vegetables on a white plate.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170401.jpg', 'caption': 'A white plate topped with different types of chinese food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170401.jpg', 'caption': 'A plate with a small portion of different foods on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170401.jpg', 'caption': 'a plate with some meat and veggies like carrots and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089062.jpg', 'caption': 'A table with a glass of white wine on top of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089062.jpg', 'caption': 'A glass of wine is sitting on a table beside of a vase holding ornamental grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089062.jpg', 'caption': 'A single glass of white win on a table with a vase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089062.jpg', 'caption': 'A half full glass of wine sits on a table beside a vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089062.jpg', 'caption': 'The glass of wine is sitting on a table with a vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321089.jpg', 'caption': 'An apple tree filled with lots of apples ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321089.jpg', 'caption': 'Some apples that are ready to be picked from the tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321089.jpg', 'caption': 'Apples hanging from the limbs of an apple tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321089.jpg', 'caption': 'some red apples hanging on part of an apple tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321089.jpg', 'caption': 'Three apples still growing on a tree branch with some worm holes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356662.jpg', 'caption': 'A pasta salad with broccoli and tomatoes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356662.jpg', 'caption': 'We see a close up of a vegetable ad pasta salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356662.jpg', 'caption': 'A close up of stir fried noodles, broccoli and tomatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356662.jpg', 'caption': 'A dish of pasta, tomatoes, and broccoli in a clear sauce. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356662.jpg', 'caption': 'A pasta salad with broccoli and tomatoes in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550643.jpg', 'caption': 'A bowl of cooked noodles and broccoli in sauce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550643.jpg', 'caption': 'Looking down in to a pot of broccoli spaghetti on a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550643.jpg', 'caption': 'A big pot with broccoli and noodles in it sitting on a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550643.jpg', 'caption': 'The broccoli was cooked in the same pot as the noodles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550643.jpg', 'caption': 'Metal pot with noodles and broccoli sitting inside of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402662.jpg', 'caption': 'A skateboarder who is jumping down a flight of stairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402662.jpg', 'caption': 'A skaterboarder getting major air over some stairs during a night time shoot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402662.jpg', 'caption': 'A skate boarder jumping down some stairs at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402662.jpg', 'caption': 'A skateboarder riding down a flight of stone stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402662.jpg', 'caption': 'A young man skateboarding over a flight of steps', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574178.jpg', 'caption': 'Two people carrying snowboards and walking through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574178.jpg', 'caption': 'two people holding snow boards on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574178.jpg', 'caption': 'two snow boarders carrying their snow boards across the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574178.jpg', 'caption': 'two people walking in the snow with snowboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574178.jpg', 'caption': 'Two friends walking through the snow carrying snowboards past a small cabin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354539.jpg', 'caption': 'A little girl wearing safety gear while standing on a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354539.jpg', 'caption': 'Girl in white helmet at skatepark with skateboarder in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354539.jpg', 'caption': 'A young girl is near a skateboarding park ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354539.jpg', 'caption': 'A WOMAN IS STANDNG WITH A HELEMT ON HER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354539.jpg', 'caption': 'A small boy and girl skateboarding with helmets on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126257.jpg', 'caption': 'little dude shredding the gnar on flat ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126257.jpg', 'caption': 'A young child riding a black skateboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126257.jpg', 'caption': 'A picture of a person on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126257.jpg', 'caption': 'A young child takes a ride on a skate ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126257.jpg', 'caption': 'A little boy on a skateboard on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218947.jpg', 'caption': 'A photograph of a cross country skier in a greenish tint light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218947.jpg', 'caption': 'SNOW SKIER ON THE SLOPE BEING VIEWED FROM A GREEN LENS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218947.jpg', 'caption': 'A mountain climber is ready to climb the snowy mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218947.jpg', 'caption': 'The man skis through the snowy field with another skier in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218947.jpg', 'caption': 'A man skiing in the middle of a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069496.jpg', 'caption': 'A plate full of food is ready to be eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069496.jpg', 'caption': 'A white plate topped with stew and salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069496.jpg', 'caption': 'The meals is done and waiting to be eaten. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069496.jpg', 'caption': 'A plate of food consisting of carrots and greens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069496.jpg', 'caption': 'a white plate with a variety of meat and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402528.jpg', 'caption': 'A jar of mustard next to a small plate of a sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402528.jpg', 'caption': 'a little plate that has a sandwich on top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402528.jpg', 'caption': 'An open can of mustard sits next to a meat sandwich, with pickles and olives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402528.jpg', 'caption': 'a fork a white plate with a sandwich and some mustard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402528.jpg', 'caption': 'A white plate with a cut in half sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098385.jpg', 'caption': 'A table with a plate that has food on it and a mug. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098385.jpg', 'caption': 'A cut in half sandwich sitting next to a cup of tea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098385.jpg', 'caption': 'a plate with a sandwich on it next to a cup of tea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098385.jpg', 'caption': 'there is a large sandwich and a cup of soup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098385.jpg', 'caption': 'a plate of sandwhiches sitting on a table next to a cup of coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229191.jpg', 'caption': 'A bowl of chili and a half-eaten sandwich on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229191.jpg', 'caption': 'A bowl of beans sitting on next to a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229191.jpg', 'caption': 'The receipts from a meal at a restaurant are for a sandwich, chili, and apple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229191.jpg', 'caption': 'A half eaten sandwich next to a bowl of chili and an apple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229191.jpg', 'caption': 'Assortment of lunch items on serving plate displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437789.jpg', 'caption': 'A table topped with fresh fruits and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437789.jpg', 'caption': 'Several snacks including fruit and vegetables arranged on a countertop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437789.jpg', 'caption': 'an apple, orange, carrots, broccoli, and other food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437789.jpg', 'caption': 'an apple a tangerine some carrots a drink and other food items', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437789.jpg', 'caption': 'Various fruits and vegetables prepared and packed into small containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096473.jpg', 'caption': 'Plate of mixed colorful vegetables sitting on white table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096473.jpg', 'caption': 'A plate of shredded carrots, pork and celery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096473.jpg', 'caption': 'dinner plate of stirfry with meat and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096473.jpg', 'caption': 'A blue china dish is served with a stir fry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096473.jpg', 'caption': 'A blue and white plate filled with meat and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396224.jpg', 'caption': 'A table filled with plates of food and bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396224.jpg', 'caption': 'Plates of chicken and vegetable, a plate with bread and a bowl of soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396224.jpg', 'caption': 'a meal at a table which contains bread, carrots, asparagus and turkey', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396224.jpg', 'caption': 'Several courses of food sitting on top of a dining room table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396224.jpg', 'caption': 'A three course meal is sitting at the table in perfect formation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466137.jpg', 'caption': 'A stuffed bear set in front of a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466137.jpg', 'caption': 'A brown teddy bear sitting by a blue and white cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466137.jpg', 'caption': 'A stuffed bear sits next to a tea cup full of tea..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466137.jpg', 'caption': 'A teddy bear placed behind a cup and saucer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466137.jpg', 'caption': 'A brown teddy bear sitting at a table next to a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573791.jpg', 'caption': 'A coffee cup with some food and a fork in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573791.jpg', 'caption': 'A spoon that is sitting inside of a cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573791.jpg', 'caption': 'The cup has some brown stuff and a spoon in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573791.jpg', 'caption': 'A cup with food and a fork sitting in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573791.jpg', 'caption': 'There is a mug with a fork in it and an unidentifiable liquid.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026676.jpg', 'caption': 'A green white with a sandwich on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026676.jpg', 'caption': 'A meal is placed on a plate with a fork and beverage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026676.jpg', 'caption': 'A close of a sandwich on a green plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026676.jpg', 'caption': 'Two slice of cake and a fork rest on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026676.jpg', 'caption': 'A couple of sandwiches on a green plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331712.jpg', 'caption': 'There is a piece of pie on a patterned plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331712.jpg', 'caption': 'A cake sitting on a plate with a fork next to it,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331712.jpg', 'caption': 'a piece of cheesecake on a floral plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331712.jpg', 'caption': 'The cheese cake is on a plate next to a fork. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331712.jpg', 'caption': 'A plate that has a fork and piece of cake on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011300.jpg', 'caption': 'The little boy sits on the ground next to the skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011300.jpg', 'caption': 'A child sitting on the ground next to a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011300.jpg', 'caption': 'a small child sitting on a ground with a skate board near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011300.jpg', 'caption': 'A child sits on the ground next to a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011300.jpg', 'caption': 'A young boy sits on the floor by a skateboard and skating equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301755.jpg', 'caption': 'Skateboarder riding his board on a half pike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301755.jpg', 'caption': 'A man riding up the side of a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301755.jpg', 'caption': 'A guy at the top of a ramp on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301755.jpg', 'caption': 'A skateboarder practicing a trick on an indoor ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301755.jpg', 'caption': 'A man skateboarding on an indoor skate ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272323.jpg', 'caption': 'A man is trying to pull off a skateboarding trick on his ramp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272323.jpg', 'caption': 'A person is on a skateboard on the top of a quarter pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272323.jpg', 'caption': 'A man riding a skateboard up the side of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272323.jpg', 'caption': 'A skateboarder is doing a trick in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272323.jpg', 'caption': 'a person riding a skate board at a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481115.jpg', 'caption': 'A skater prepares to drop in from the top of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481115.jpg', 'caption': 'A kid in jeans holds the lip of his skateboard on a ledge as he stands on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481115.jpg', 'caption': 'A skateboarder performing a trick on a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481115.jpg', 'caption': 'Guy hangs on edge doing a trick with his skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481115.jpg', 'caption': 'A skate board rider doubled over getting ready to make a jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415393.jpg', 'caption': 'a man on a skate board looks like he is falling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415393.jpg', 'caption': 'A man does a skateboard trick on a skateboard ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415393.jpg', 'caption': 'Guy falling off a skateboard in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415393.jpg', 'caption': 'A man riding a skateboard on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415393.jpg', 'caption': 'a man skating on part of a ramp with his skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460183.jpg', 'caption': 'A person slicing up a bunt cake on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460183.jpg', 'caption': 'An individual is about to slice the cake in pieces. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460183.jpg', 'caption': 'A person is cutting the cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460183.jpg', 'caption': 'A person making a cut into a bundt cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460183.jpg', 'caption': 'A woman is cutting a bundt cake on a platter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070256.jpg', 'caption': 'a man cts into a small cake with his sharp knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070256.jpg', 'caption': 'a man cutting a slice of cake with the knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070256.jpg', 'caption': 'Woman slicing fruit cake on tray of table with nice hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070256.jpg', 'caption': 'A person cutting slices on a dessert cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070256.jpg', 'caption': 'a person is cutting in to a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271259.jpg', 'caption': 'A man with a knife cutting into a cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271259.jpg', 'caption': 'A bald man with a goatee cuts a bundt cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271259.jpg', 'caption': 'A man cuts a cake with a large knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271259.jpg', 'caption': 'A chef slicing lemon cake at a reception.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271259.jpg', 'caption': 'A man cuts a dessert with a knife on a blue table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093746.jpg', 'caption': 'a person cutting a cake on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093746.jpg', 'caption': 'A man is cutting a piece of cake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093746.jpg', 'caption': 'A man that is standing in front of a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093746.jpg', 'caption': 'A man dressed in black and holding a knife, standing up next to a table that has a bundt cake on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093746.jpg', 'caption': 'A man about to cut out a piece of cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264771.jpg', 'caption': 'A male skate boarder rides his skate board on a ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264771.jpg', 'caption': 'A man hovering in midair while on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264771.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264771.jpg', 'caption': 'a person riding a skate board at a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264771.jpg', 'caption': 'A skateboarder with a black jacket and hat riding a skateboard on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012817.jpg', 'caption': 'A man on a skateboard performing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012817.jpg', 'caption': 'A man flying through the air on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012817.jpg', 'caption': 'A person on a skateboard in the air at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012817.jpg', 'caption': 'A male skateboarder skateboards on a wall in an enclosed area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012817.jpg', 'caption': 'A male on a skateboard performing a trick on a halfpipe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297933.jpg', 'caption': 'a man standing on a skate board on the top of a ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297933.jpg', 'caption': 'A boy in blue clothing skateboarding on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297933.jpg', 'caption': 'A skateboarder rides a rail on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297933.jpg', 'caption': 'A boy is grinding his skateboard along the edge of a halfpipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297933.jpg', 'caption': 'a man is grinding on a skateboard on a ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538394.jpg', 'caption': 'A man holding a very large knife standing in a foggy alley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538394.jpg', 'caption': 'A man wearing a trenchcoat and holding a large knife stands against a smoky night background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538394.jpg', 'caption': 'A man dressed in a hat and all black is holding a butcher knife in his hand and their is fog in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538394.jpg', 'caption': 'A dark photo of a man in a black suit holding a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538394.jpg', 'caption': 'A man dressed in black is holding a large sharp knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120388.jpg', 'caption': 'A survival kit containing a variety of items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120388.jpg', 'caption': 'Assorted electronic devices sitting on top of a towel on green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120388.jpg', 'caption': 'A towel in the grass with life saving equipment. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120388.jpg', 'caption': 'A survival kit including knife, watch, lighter and cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120388.jpg', 'caption': 'a camping safety pack open on the grass showing its contents', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049445.jpg', 'caption': 'The contents of a bag placed out on a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049445.jpg', 'caption': 'a scarf on a deck with personal items and a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049445.jpg', 'caption': \"The contents of someone's pockets laid out on a scarf\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049445.jpg', 'caption': 'A cloth sheet with various hiking and and travel gear items on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049445.jpg', 'caption': 'Various pieces of survival gear spread on a piece of fabric. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033731.jpg', 'caption': 'A young man is trying to pull off a skateboarding trick over a large rock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033731.jpg', 'caption': 'A guy does tricks on his skateboard at night in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033731.jpg', 'caption': 'A boy jumping with a skateboard over a rock at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033731.jpg', 'caption': 'A skateboarder ollies over a boulder at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033731.jpg', 'caption': 'A skate boarder doing jumps at night on city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391499.jpg', 'caption': 'This smiling skateboarder performs tricks in the skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391499.jpg', 'caption': 'A boy on a skateboard rides up a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391499.jpg', 'caption': 'A person on the skateboard doing a trick on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391499.jpg', 'caption': 'A boy skate boarding on a ramp at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391499.jpg', 'caption': 'A man is doing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175933.jpg', 'caption': 'A man riding a skateboard through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175933.jpg', 'caption': 'A man in a skate park performing tricks on a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175933.jpg', 'caption': 'Man in a cap doing tricks on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175933.jpg', 'caption': 'A boy on a skateboard doing a trick on a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175933.jpg', 'caption': 'A skater flips his skateboard in an alley at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169028.jpg', 'caption': 'A boy is jumping in the air with his skateboard at the top of a skateboard ramp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169028.jpg', 'caption': 'A skateboarder in the middle of performing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169028.jpg', 'caption': 'A person does a trick on a skateboard in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169028.jpg', 'caption': 'A man riding a skateboard on top of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169028.jpg', 'caption': 'A skate boarder with a hat is airborne.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226197.jpg', 'caption': 'A man riding a skateboard off the side of a cement ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226197.jpg', 'caption': 'A young man is doing a trick on a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226197.jpg', 'caption': 'A person is on a skateboard trying to ride a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226197.jpg', 'caption': 'a skateboarder with a black shirt is doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226197.jpg', 'caption': 'A man on a skateboard is grinding a ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387463.jpg', 'caption': 'A person doing a skateboard trick up a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387463.jpg', 'caption': 'A skateboarder jumping up on a ramp at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387463.jpg', 'caption': 'a person on a skate board does a trick on a ramp ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387463.jpg', 'caption': 'A young man ridding a skateboard up a ramp at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387463.jpg', 'caption': 'A boy on a skateboard doing tricks in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524061.jpg', 'caption': 'A skateboarder performing a trick on the edge of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524061.jpg', 'caption': 'A set of steps is stopping a skateboarder from jumping the curb. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524061.jpg', 'caption': 'A male performing skateboarding tricks on a skateboard ramp and stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524061.jpg', 'caption': ' A skateboarder performing a trick at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524061.jpg', 'caption': 'A youth on a skateboard making a jump in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107964.jpg', 'caption': 'A man doing a trick on a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107964.jpg', 'caption': 'a man on a skateboard rides his board at the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107964.jpg', 'caption': 'A skateboarder rides on a curved surface beneath a purple sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107964.jpg', 'caption': ' Man riding a skateboard at the skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107964.jpg', 'caption': 'A man is doing a trick on his board at dusk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451463.jpg', 'caption': 'A young woman riding a skateboard at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451463.jpg', 'caption': 'A girl on a skateboard doing a trick jumping off a step.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451463.jpg', 'caption': 'A young woman performs a trick on a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451463.jpg', 'caption': 'Young lady mid jump on a skateboard at a skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451463.jpg', 'caption': 'A young girl having fun going down the stairs on her skate board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094619.jpg', 'caption': 'A young man skateboarding while listening to music. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094619.jpg', 'caption': 'A skateboarder skates while the background blurs past him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094619.jpg', 'caption': 'A man who is riding on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094619.jpg', 'caption': 'a teen boy riding a skateboard down the sidewalk next to some stairs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094619.jpg', 'caption': 'A young man riding a skateboard next to cement steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349438.jpg', 'caption': 'A man flying through the air while on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349438.jpg', 'caption': 'A man doing a trick on a skateboard on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349438.jpg', 'caption': 'A person doing a trick on a skateboard at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349438.jpg', 'caption': 'a man flying above part of a skatepark with his skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349438.jpg', 'caption': 'A man is doing a skateboard trick in a cement bowl.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000431067.jpg', 'caption': 'A view of a red kite flying through the air over lawn chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431067.jpg', 'caption': 'Two people on a lawn near chairs while flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362797.jpg', 'caption': 'A crowd of people are standing at a fair and kites are in the sky above them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362797.jpg', 'caption': 'Crowd of people flying colorful and creative kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362797.jpg', 'caption': 'A kite festival has dragon kites flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362797.jpg', 'caption': 'people flying different kites at a kite festival', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362797.jpg', 'caption': 'Several people are in a park flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574487.jpg', 'caption': 'A group of people on a field flying some kites in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574487.jpg', 'caption': 'Group of people flying kites shaped like people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574487.jpg', 'caption': 'Several people flying large, colorful kites in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574487.jpg', 'caption': 'Large group of people flying colorful kites in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574487.jpg', 'caption': 'A group of people on a field flying kites at a festival.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087327.jpg', 'caption': 'A crowd of people flying kites under a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087327.jpg', 'caption': 'People watching a big blue kite on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087327.jpg', 'caption': 'People watching kites being flown in the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087327.jpg', 'caption': 'People watching a big balloon and airplanes in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087327.jpg', 'caption': 'there is a very large blue air ballon flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174671.jpg', 'caption': 'a sand shore line with kites flying above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174671.jpg', 'caption': 'A beach and ocean area with people windsurfing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174671.jpg', 'caption': 'There are kites floating over the blue ocean water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174671.jpg', 'caption': 'I forgot the name of this outdoor activity.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174671.jpg', 'caption': 'people in the water playing with their kites ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135566.jpg', 'caption': 'A crowd of people standing on cement ground flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135566.jpg', 'caption': 'Many different colored kites in the air with people on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135566.jpg', 'caption': 'A huge crowd of people flying kites on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135566.jpg', 'caption': 'A kite festival with people flying kites on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135566.jpg', 'caption': 'A lot of people standing around with colorful kites in the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249347.jpg', 'caption': 'A child in blue shirt playing with a kite in field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249347.jpg', 'caption': 'some people in a field with a kite flying above', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249347.jpg', 'caption': 'Several people flying kites in a big grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249347.jpg', 'caption': 'A child holds a yellow kite that flies in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249347.jpg', 'caption': 'A girl watching a person fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154520.jpg', 'caption': 'there is a man holding on the a kite that hes flying ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154520.jpg', 'caption': 'A man flies a kite on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154520.jpg', 'caption': 'A beautiful clear blue sky is ideal for flying his kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154520.jpg', 'caption': 'a large kite is flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154520.jpg', 'caption': 'A person is under a clear sky flying a rainbow kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137809.jpg', 'caption': 'A kite is being flown in the air at the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137809.jpg', 'caption': 'A mmutl icolored kite being flown by a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137809.jpg', 'caption': 'A blue, yellow and red flag being flown at a park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137809.jpg', 'caption': 'A red, gree, and blue kite flying by a lake on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137809.jpg', 'caption': 'a kite flies through the air over a park area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451674.jpg', 'caption': 'A yellow kite flies high above a building and a small group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451674.jpg', 'caption': 'Several people who are flying a kite in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451674.jpg', 'caption': 'A kite flying over a street with a car and people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451674.jpg', 'caption': 'A child flying a kite on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451674.jpg', 'caption': 'A yellow kite floats above people on a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555356.jpg', 'caption': 'some tin foil is wrapped around something in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555356.jpg', 'caption': 'A foil wrapped item on a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555356.jpg', 'caption': 'a baking pan covered with aluminum foil ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555356.jpg', 'caption': 'A tray covered in tin foil on top of a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555356.jpg', 'caption': 'A dish on the counter covered with aluminum foil. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384554.jpg', 'caption': 'This is a giant metal refrigerator and freezer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384554.jpg', 'caption': 'A large, double door, stainless steel refrigerator in a commercial kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384554.jpg', 'caption': 'A very shiny metal fridge with two doors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384554.jpg', 'caption': 'A stainless steel refrigerator in a kitchen with others near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384554.jpg', 'caption': 'A large stainless steel refrigerator with double doors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340503.jpg', 'caption': 'A giant man standing under large colorful kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340503.jpg', 'caption': 'Two large balloons floating over a statue in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340503.jpg', 'caption': 'Three colorful and big kites flying on an overcast day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340503.jpg', 'caption': 'There are two balloons flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340503.jpg', 'caption': 'A pair of kites fly above a statue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094248.jpg', 'caption': 'An elaborate memorial and clock in a shopping area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094248.jpg', 'caption': 'A clock tower sitting in the middle of a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094248.jpg', 'caption': 'A tall clock that is next to a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094248.jpg', 'caption': 'View of two blue rimmed clocks on a pedestal near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094248.jpg', 'caption': 'A clock tower stands in an area alongside storefronts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565239.jpg', 'caption': 'A young boy throwing up a blue card.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565239.jpg', 'caption': 'A very blurry image of two small children in motion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565239.jpg', 'caption': 'A group of children looking up a the person taking the picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565239.jpg', 'caption': 'Two children playing with a kite on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565239.jpg', 'caption': 'A pair of children playing catch on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104841.jpg', 'caption': 'A group of people that are fine kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104841.jpg', 'caption': 'Three people fly several large kites in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104841.jpg', 'caption': 'Several people in a field looking at different types of kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104841.jpg', 'caption': 'Three people inspect their kites in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104841.jpg', 'caption': 'people in a large grass field play with character kites ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125404.jpg', 'caption': 'Two black children wearing baseball hats and holding bats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125404.jpg', 'caption': 'A boy and girl wearing helmets and holding baseball bats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125404.jpg', 'caption': 'Two boys are ready to go play in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125404.jpg', 'caption': 'A couple of people embracing each other while holding bats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125404.jpg', 'caption': 'Two small baseball players each have on helmets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378545.jpg', 'caption': 'A pole that has a clock on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378545.jpg', 'caption': 'A clock mounted on an outdoor post with Roman numerals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378545.jpg', 'caption': 'a clock on a pole saying it is 12:45', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378545.jpg', 'caption': 'An ornamental standing clock is at the foreground of a row of houses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378545.jpg', 'caption': 'A black and gold clock on a pole in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321935.jpg', 'caption': 'A black and gold street light in the middle of the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321935.jpg', 'caption': 'A large clock tower is positioned in the middle of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321935.jpg', 'caption': 'A clock tower sits in the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321935.jpg', 'caption': 'A clock tower in the middle of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321935.jpg', 'caption': 'A clock tower in the middle of a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134888.jpg', 'caption': 'A baseball game is in action at the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134888.jpg', 'caption': 'A group of men in a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134888.jpg', 'caption': 'A man with a baseball bat that is standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134888.jpg', 'caption': 'The Umpire, catcher, and batter playing baseball, just as batter swung his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134888.jpg', 'caption': 'there is a baseball game on and a player has swung for the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155312.jpg', 'caption': 'A professional baseball player in batting stance with bullpen in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155312.jpg', 'caption': 'Several uniformed baseball players during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155312.jpg', 'caption': 'A batter, catcher and umpire in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155312.jpg', 'caption': 'A man with a bat stands at a base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155312.jpg', 'caption': 'Batter winds up ready to hit the baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295628.jpg', 'caption': \"A baseball player in the batter's box during a game.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295628.jpg', 'caption': 'A baseball batter is smiling as he prepares to swing at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295628.jpg', 'caption': 'One of the Twins baseball players is up to bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295628.jpg', 'caption': 'A baseball player standing next to home base with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295628.jpg', 'caption': 'Professional athlete preparing to take swing at ball during game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451087.jpg', 'caption': 'the batter is ready to hit the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451087.jpg', 'caption': 'A man on a field with a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451087.jpg', 'caption': 'a baseball player with a bat and some fans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451087.jpg', 'caption': 'a man with a bat ready to kick a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451087.jpg', 'caption': 'a batter standing next to the plate holding a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403672.jpg', 'caption': 'A boy is preparing to play on a sport field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403672.jpg', 'caption': 'a boy in a baseball uniform standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403672.jpg', 'caption': 'a small boy holding a bat and standing on the on deck circle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403672.jpg', 'caption': 'A boy in a baseball uniform steps up to bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403672.jpg', 'caption': 'A young man standing on top of a field holding a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507551.jpg', 'caption': 'A boy in a green jersey with a bag on a baseball field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507551.jpg', 'caption': 'A young man standing on a baseball field holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507551.jpg', 'caption': 'A pitcher throwing a baseball at a baseball game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507551.jpg', 'caption': 'The young pitcher has thrown a baseball to the batter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507551.jpg', 'caption': 'A batter pulls back as the ball approaches him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487151.jpg', 'caption': 'A man holding a baseball bat while on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487151.jpg', 'caption': 'A baseball player and his team are on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487151.jpg', 'caption': 'The batter is ready to swing at the next pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487151.jpg', 'caption': 'Three baseball players with gloves and bat at the pitch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487151.jpg', 'caption': 'A baseball player standing on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323726.jpg', 'caption': \"A batter in the batter's box next to the catcher and umpire. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323726.jpg', 'caption': 'A batter is waiting for the next pitch in the game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323726.jpg', 'caption': 'A batter, catcher and umpire in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323726.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323726.jpg', 'caption': 'A baseball player is posed to swing his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548670.jpg', 'caption': 'A young boy stands at bat in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548670.jpg', 'caption': 'A young person at bat in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548670.jpg', 'caption': 'Adults behind a fence and a child with a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548670.jpg', 'caption': 'A little boy standing near home plate holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548670.jpg', 'caption': 'A little girl preparing to hit a baseball with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334075.jpg', 'caption': 'A baseball game as a batter stands ready to swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334075.jpg', 'caption': 'A baseball player holding a bat ready to hit a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334075.jpg', 'caption': 'A baseball game in progress with the batter up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334075.jpg', 'caption': 'A baseball player at bat awaiting a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334075.jpg', 'caption': 'Men wearing baseball uniforms at home plate in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001270.jpg', 'caption': 'Kids playing a game of baseball while people watch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001270.jpg', 'caption': 'Parents watching young boys playing baseball in the sun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001270.jpg', 'caption': 'a young boy is at home plate in a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001270.jpg', 'caption': 'A baseball game taking place at a baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001270.jpg', 'caption': 'Two young baseball players and one adult. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437497.jpg', 'caption': 'A young man swinging a baseball bat over home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437497.jpg', 'caption': 'Boy playing baseball in a red helmet and green shirt. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437497.jpg', 'caption': 'A boy who is batting at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437497.jpg', 'caption': 'A young baseball player follows through on a swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437497.jpg', 'caption': 'Batter took a swing at the ball during the baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412658.jpg', 'caption': 'A boy in green jersey playing in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412658.jpg', 'caption': 'A baseball player getting ready to bat while a person watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412658.jpg', 'caption': 'The young boy is trying to hit the baseball during the game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412658.jpg', 'caption': 'a little league player at home plate holding a bat ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412658.jpg', 'caption': 'A boy playing baseball waiting for a pitch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384401.jpg', 'caption': 'A large cheese pizza sitting on a pizza pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384401.jpg', 'caption': 'A baked pizza crust resting on a device in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384401.jpg', 'caption': 'A finished pizza in a metal pan on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384401.jpg', 'caption': 'The recipe has been baked in a terracotta bowl, producing a desirable browning of the top and crust.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384401.jpg', 'caption': 'A bright cheesy pizza is still in the pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182503.jpg', 'caption': 'A pizza cutter is laying next to the pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182503.jpg', 'caption': 'A pizza cutter lying next to a well baked pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182503.jpg', 'caption': 'Extreme close-up of meet and cheese pizza and cutting wheel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182503.jpg', 'caption': 'A pizza cutter rests inside a pizza after use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182503.jpg', 'caption': 'a close up of a pizza cutter next to a pizza pie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499577.jpg', 'caption': 'A young man wearing a tennis racquet on his back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499577.jpg', 'caption': 'Young boy carrying tennis racket in clear pouch with tennis ball while walking on sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499577.jpg', 'caption': 'A boy with a tennis racket and ball in a cover on his back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499577.jpg', 'caption': 'A young boy walks through a park with his tennis racket and balls in a case over his shoulder. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499577.jpg', 'caption': 'A person on a street with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187352.jpg', 'caption': 'The young man tennis player is serving the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187352.jpg', 'caption': 'a man is getting ready to serve a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187352.jpg', 'caption': 'A man about to hit a tennis ball in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187352.jpg', 'caption': 'A man gets ready to swing a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187352.jpg', 'caption': 'a man holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461883.jpg', 'caption': 'A male tennis player in the act of serving the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461883.jpg', 'caption': 'A man prepares to hit the tennis ball with his racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461883.jpg', 'caption': 'A man on a tennis court serving a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461883.jpg', 'caption': 'A male tennis player swinging his tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461883.jpg', 'caption': 'A man serving the ball in a nighttime tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206512.jpg', 'caption': 'THERE IS A MAN THAT IS PLAYING TENNIS ON THE COURT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206512.jpg', 'caption': 'A tennis player in action on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206512.jpg', 'caption': 'A man playing tennis is serving a tennis ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206512.jpg', 'caption': 'A tennis player jumping to hit the tennis ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206512.jpg', 'caption': 'A man who is playing tennis reaches up to smack a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280612.jpg', 'caption': 'A man throwing a tennis ball to hit with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280612.jpg', 'caption': 'A male tennis player prepares to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280612.jpg', 'caption': 'A man taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280612.jpg', 'caption': 'A man is playing tennis on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280612.jpg', 'caption': 'A man is throwing a tennis ball into the air in order to serve it over the net. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271986.jpg', 'caption': 'A freezer with several boxes of a dish in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271986.jpg', 'caption': 'Some boxes of frozen pizzas are in the store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271986.jpg', 'caption': 'Food entree displayed in refrigerated cooler of grocery store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271986.jpg', 'caption': 'boxes of pizza well packed with their price on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271986.jpg', 'caption': 'A bunch of frozen boxes that are in a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458048.jpg', 'caption': 'A box of mini pizzas all with different toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458048.jpg', 'caption': 'many boxes with big tasty looking pizzas in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458048.jpg', 'caption': 'Seven pizzas in their boxes and two beers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458048.jpg', 'caption': 'a bunch of boxes of pizza sit next to a beer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458048.jpg', 'caption': 'Some pizzas in boxes are arranged on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190656.jpg', 'caption': 'A pizza sitting on top of a pan in an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190656.jpg', 'caption': 'a pizza sitting in an oven waiting to be cooked', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190656.jpg', 'caption': 'A pizza being made inside of an oven. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190656.jpg', 'caption': 'A pizza sits on the rack of an oven, uncooked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190656.jpg', 'caption': 'An unbaked pizza sitting on a rack in the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270303.jpg', 'caption': 'A pizza type dish with vegetables and a lemon wedge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270303.jpg', 'caption': 'A meal on a plate next to a fork with a lemon on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270303.jpg', 'caption': 'close up of a quiche with greens and lemon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270303.jpg', 'caption': 'A dish of potato pancakes is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270303.jpg', 'caption': 'A cheese pizza with spinach leaves and a lemon slice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399636.jpg', 'caption': 'A group of people at a table in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399636.jpg', 'caption': 'four men sitting at a table eating a meal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399636.jpg', 'caption': 'A group of men sitting at a dinner table having conversation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399636.jpg', 'caption': 'A group of men eating pizza and having a beer at a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399636.jpg', 'caption': 'A white table people sitting around plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416700.jpg', 'caption': 'a man is reaching back with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416700.jpg', 'caption': 'a male tennis player in a yellow shirt is playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416700.jpg', 'caption': 'A man holding a tennis racquet in front of a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416700.jpg', 'caption': 'a young man holding a tennis racket next to a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416700.jpg', 'caption': 'A man playing tennis near a large rock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532216.jpg', 'caption': 'a man runs on the court during a tennis match to hit a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532216.jpg', 'caption': 'A person prepares to hit a tennis ball while many people watch from the stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532216.jpg', 'caption': 'A tennis player runs to return a hit to his opponent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532216.jpg', 'caption': 'The man is playing tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532216.jpg', 'caption': 'a man stands on a tennis court as people look on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126512.jpg', 'caption': 'A crowd of people standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126512.jpg', 'caption': 'A picture of several women and men, some with tennis rackets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126512.jpg', 'caption': 'A black and white picture has a posing crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126512.jpg', 'caption': 'an old photo of a group of people posing for a camera ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126512.jpg', 'caption': 'An old photo taken of a group of tennis players.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372384.jpg', 'caption': 'A tennis player holding a tennis racquet while he serves a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372384.jpg', 'caption': 'A tennis player throws the ball up to make a serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372384.jpg', 'caption': 'A woman about to serve during a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372384.jpg', 'caption': 'A tennis player holding one arm up high on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372384.jpg', 'caption': 'A tennis player preparing to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246014.jpg', 'caption': 'A woman in white dress playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246014.jpg', 'caption': 'Woman about to serve a tennis ball while line judge watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246014.jpg', 'caption': 'A tennis player is out on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246014.jpg', 'caption': 'A person serving a tennis ball on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246014.jpg', 'caption': 'A tennis player jumps up to hit a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496486.jpg', 'caption': 'A woman standing on a tennis court with a tennis racquet in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496486.jpg', 'caption': 'A female tennis player stands in front of the net', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496486.jpg', 'caption': 'A young woman in a white shirt and black pants on a tennis court playing a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496486.jpg', 'caption': 'A girl is standing on a tennis court with her raquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496486.jpg', 'caption': 'A woman is holding a tennis racket on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260922.jpg', 'caption': 'A photo of an apartment building with a clock on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260922.jpg', 'caption': 'A person stands in the window of their apartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260922.jpg', 'caption': 'A clock lit up at night time on a building corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260922.jpg', 'caption': 'a brick building at night with a clock on the front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260922.jpg', 'caption': 'The illuminated clock is on a building above a traffic signal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313240.jpg', 'caption': 'a desk with a computer, books, paperwork and shelves with DVDs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313240.jpg', 'caption': 'A computer sitting on a desk with bookshelf behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313240.jpg', 'caption': \"A person's desk with a computer and many books in a case behind it.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313240.jpg', 'caption': 'A cluttered desk with many books, a computer and papers upon it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313240.jpg', 'caption': 'a bunch of books on a wood book shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365626.jpg', 'caption': 'People are on their laptops at he desks doodling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365626.jpg', 'caption': 'Four men are setting up an office and eating lunch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365626.jpg', 'caption': 'Men sitting and standing at desks in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365626.jpg', 'caption': 'four men in an office working on their computers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365626.jpg', 'caption': 'A group of office workers show off their computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574424.jpg', 'caption': 'a person watching another person doing something on a computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574424.jpg', 'caption': 'Two men are at a counter with two laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574424.jpg', 'caption': 'A couple of men doing something on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574424.jpg', 'caption': 'A man sitting in front of a laptop while a standing man looks at the screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574424.jpg', 'caption': 'the two friends are sharing information from the computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183364.jpg', 'caption': 'Two laptops next to each other with monitors turned on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183364.jpg', 'caption': 'Two laptops side by side next to a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183364.jpg', 'caption': 'Two laptop computers sitting side by side on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183364.jpg', 'caption': 'A cup of coffee in front of two laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183364.jpg', 'caption': 'a desk with two laptops on it next to cup of coffee and doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105786.jpg', 'caption': 'A bunch of tables with blue cloth on them sitting in a big courtyard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105786.jpg', 'caption': 'A picture of a large building with a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105786.jpg', 'caption': 'Tables are set up near a large building and people are milling around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105786.jpg', 'caption': 'A tower that has a clock on the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105786.jpg', 'caption': 'An outdoor plaza is surrounded by tall white buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225352.jpg', 'caption': 'A close up of a laptop sitting on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225352.jpg', 'caption': 'a laptop, mouse and coffee cup and a mans arm on another table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225352.jpg', 'caption': 'A laptop is kept on the table.A person is sitting on other table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225352.jpg', 'caption': 'a laptop computer sitting on a wood table open ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225352.jpg', 'caption': 'A laptop with a colorful screen is sitting on a table in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321665.jpg', 'caption': 'A black and white image of a clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321665.jpg', 'caption': 'Large square clock and advertisement cylinder hanging from top of building in European style building maybe a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321665.jpg', 'caption': 'A large clock suspended from a ceiling in a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321665.jpg', 'caption': 'The large clock in the station has a square shape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321665.jpg', 'caption': 'a big clock hanging on a piece of wood in a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447770.jpg', 'caption': 'an image of a child playing on a toy laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447770.jpg', 'caption': 'A young girl using a kids laptop computer on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447770.jpg', 'caption': 'A little girl uses a child-sized laptop in her living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447770.jpg', 'caption': 'A child working on a toy-like laptop that is on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447770.jpg', 'caption': \"A young girl using a childs' laptop toy.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185781.jpg', 'caption': 'A group of guys standing behind several covered tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185781.jpg', 'caption': 'A group of boys standing in front of a screen and by table with computers on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185781.jpg', 'caption': 'A group of fraternity students set up audio and video equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185781.jpg', 'caption': 'A group of people standing behind tables with laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185781.jpg', 'caption': 'A group of guys standing behind tables on a stage before a presentation. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406959.jpg', 'caption': 'A large clock sitting in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406959.jpg', 'caption': 'A large two sided clock by a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406959.jpg', 'caption': 'A large clock sits next to a large building\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406959.jpg', 'caption': 'This is a closeup of a clock that stands on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406959.jpg', 'caption': 'An elaborate lamp post clock in a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534894.jpg', 'caption': 'A tower with a clock on top on a concrete lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534894.jpg', 'caption': 'A large structure sitting in the middle of a walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534894.jpg', 'caption': 'An oriental clock tower sitting on top of a carnival ride.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534894.jpg', 'caption': 'A ride at a carnival in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534894.jpg', 'caption': 'The ride has a large circular track on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484312.jpg', 'caption': 'A man with a glass holding a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484312.jpg', 'caption': 'A man is holding a stuffed animal in his arm', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484312.jpg', 'caption': 'A man in a blue suit with a demonic smirk on his face holding a small brown teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484312.jpg', 'caption': 'Man in blue suit holding a teddy bear and a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484312.jpg', 'caption': 'A man sitting in a boat holding a drink and a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459449.jpg', 'caption': 'Four stuffed teddy bears having a picnic and \"eating\" sandwiches while having drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459449.jpg', 'caption': 'A group of teddy bears set up like they are having tea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459449.jpg', 'caption': 'A group of teddy bears with a basket a play food arranged as though at a picnic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459449.jpg', 'caption': 'A group of stuffed animals sitting near a a few sandwiches and drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459449.jpg', 'caption': 'there are many stuffed animals that are eating together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163105.jpg', 'caption': 'A little girl sleeping with her teddy bear and quilt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163105.jpg', 'caption': 'A small baby sleeping next to a big tan stuffed teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163105.jpg', 'caption': 'a small sleeping girl is next to her brown and white teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163105.jpg', 'caption': 'a young baby has fallen asleep with a stuffed bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163105.jpg', 'caption': 'An infant sleeping with a teddy bear with him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516766.jpg', 'caption': 'A white teddy bear sitting next to a brown teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516766.jpg', 'caption': 'Two teddy bears are wrapped in a blue ribbon on a red background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516766.jpg', 'caption': 'A large stuffed bear sits with a smaller stuffed bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516766.jpg', 'caption': 'A pair of stuffed bears are tied together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516766.jpg', 'caption': 'A stuffed white bear attached to a smaller one', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575867.jpg', 'caption': 'two stuffed bears one big and one small sitting in front of each other on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575867.jpg', 'caption': 'A big red stuffed bear with a small white stuffed bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575867.jpg', 'caption': 'Two teddy bears on a table with one holding a heart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575867.jpg', 'caption': 'A red teddy bear sitting behind a white bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575867.jpg', 'caption': 'Two teddy bears of different colours sit on a surface. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533407.jpg', 'caption': 'Two men with hard hats on next to laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533407.jpg', 'caption': 'Two men in hard hats are by their computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533407.jpg', 'caption': 'Tow men with hardhats and blue t-shirts standing in front of computers together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533407.jpg', 'caption': 'The young men are wearing hard hats as they refer to their laptops in the office. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533407.jpg', 'caption': 'Two man in hard hats next to laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163280.jpg', 'caption': 'A laptop computer sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163280.jpg', 'caption': 'a laptop sits in front of a group of people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163280.jpg', 'caption': 'a computer is on display for a group of people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163280.jpg', 'caption': 'The camera on the computer is showing the people at the event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163280.jpg', 'caption': 'A white laptop computer with an image of a man on the screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024880.jpg', 'caption': 'A laptop computer sitting on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024880.jpg', 'caption': 'a desk with a monitor and a laptop on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024880.jpg', 'caption': 'A computer desk has two computers sitting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024880.jpg', 'caption': 'View of a computer and laptop on a desk in a cubicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024880.jpg', 'caption': 'a computer desk with two computers and books', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358209.jpg', 'caption': 'A donut on a plate in the microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358209.jpg', 'caption': 'A doughnut that has been placed in a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358209.jpg', 'caption': 'A donut on a plate in a microwave oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358209.jpg', 'caption': 'A stainless steel microwave with a donut on a plate inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358209.jpg', 'caption': 'A doughnut on a plate in a microwave on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541687.jpg', 'caption': 'some people are sitting at a table on a phone and laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541687.jpg', 'caption': 'People sit and look at computers and phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541687.jpg', 'caption': 'Woman and two teens hanging out at a table using electronics.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541687.jpg', 'caption': 'Three people are sitting at a table on electronic devices. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541687.jpg', 'caption': 'A person on an orange compute while another is on her cell phone and the third one is staring out in space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157001.jpg', 'caption': 'The man is curious about what is on the laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157001.jpg', 'caption': 'a woman and man sit in front of white laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157001.jpg', 'caption': 'a person in glasses is using a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157001.jpg', 'caption': 'A male emo hipster wearing a furry jacket in front of a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157001.jpg', 'caption': 'An eccentric couple sitting in front of a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271063.jpg', 'caption': 'A kitchen with lots of cabinets with an oven underneath a microwave oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271063.jpg', 'caption': 'An unfinished kitchen has wooden panelling and cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271063.jpg', 'caption': 'a bare kitchen with a black microwave and oven built into the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271063.jpg', 'caption': 'A kitchen with open cabinets and black appliances. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271063.jpg', 'caption': 'A black stove and microwave are in an unfinished kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081361.jpg', 'caption': 'this is a stuffed animal on the concrete', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081361.jpg', 'caption': 'Two children carry an enormous stuffed teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081361.jpg', 'caption': 'The two children have a large teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081361.jpg', 'caption': 'The two animals are holding a very large bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081361.jpg', 'caption': 'Two children stand near a large teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254096.jpg', 'caption': 'A woman with a big ring is holding a golden cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254096.jpg', 'caption': 'A woman in a striped dress holding a gold cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254096.jpg', 'caption': 'A woman holding a gold cell phone in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254096.jpg', 'caption': 'A woman holding a gold cell phone in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254096.jpg', 'caption': 'A woman holding a shiny gold cell phone in her hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562345.jpg', 'caption': 'A woman in a yellow jacket standing against a concrete wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562345.jpg', 'caption': 'a person standing near a wall operating a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562345.jpg', 'caption': 'A woman in a yellow raincoat consults her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562345.jpg', 'caption': 'A woman standing in front of a cement wall looking at her cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562345.jpg', 'caption': 'A woman in a yellow jacket stands on and looks at her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130171.jpg', 'caption': 'Assortment of vegetable being cooked in metal pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130171.jpg', 'caption': 'The fresh vegetables are cooking in the pot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130171.jpg', 'caption': 'Silver metal bowl full of many different vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130171.jpg', 'caption': 'A pan filled with soup and lots of broth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130171.jpg', 'caption': 'Onions and other vegetables are being boiled in a stew pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484721.jpg', 'caption': 'Peanut butter, mustard an ketchup by two microwave ovens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484721.jpg', 'caption': 'Two microwaves are on top of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484721.jpg', 'caption': 'a close up of counter with a two microwaves stacked on one another', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484721.jpg', 'caption': 'On a gray counter, two white microwaves sit atop each other near some condiments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484721.jpg', 'caption': 'One microwave on top of another next to some basic condiments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512116.jpg', 'caption': 'An adorable kid walks across the rug holding a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512116.jpg', 'caption': 'A very cute small child standing on a carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512116.jpg', 'caption': 'A boy standing on a rug with a cell phone in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512116.jpg', 'caption': 'a child walking on the floor with a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512116.jpg', 'caption': 'A toddler holding a cell phone stands on a rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264919.jpg', 'caption': 'A man is making a phone call while surrounded by balloons. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264919.jpg', 'caption': 'A shirtless young man is shown at some type of street party with numerous baloons attached to his body.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264919.jpg', 'caption': 'A man holding multiple long skinny balloons around his head while talking on a cellular phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264919.jpg', 'caption': 'a man without a shirt and some white blue and pink baloons', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264919.jpg', 'caption': 'Man with no shirt and lots of balloons. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455464.jpg', 'caption': 'A man is in deep conversation holding the telephone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455464.jpg', 'caption': 'A man talking on the phone in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455464.jpg', 'caption': 'a person talking on a large cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455464.jpg', 'caption': 'A man talking on his cell phone in public', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455464.jpg', 'caption': 'A man talking on a cell phone in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282672.jpg', 'caption': 'A beautiful young lady with a flower in her hair talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282672.jpg', 'caption': 'A woman speaks on the phone on her wedding day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282672.jpg', 'caption': 'Smiling woman with a flower in her hair on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282672.jpg', 'caption': 'A girl with a flower in her hair talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282672.jpg', 'caption': 'Woman with a dress on holding a cellphone up to her ear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209347.jpg', 'caption': 'A woman sitting on a train while holding a smart device.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209347.jpg', 'caption': 'The woman sits on the metro train using her cell phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209347.jpg', 'caption': 'A woman is looking at a cell phone on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209347.jpg', 'caption': 'A woman uses her cell phone on a passenger train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209347.jpg', 'caption': 'A woman with earphones on a train using her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197756.jpg', 'caption': 'A woman standing next to another woman holding a bottle of beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197756.jpg', 'caption': 'Two girls standing under a tree looking at a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197756.jpg', 'caption': 'a couple of people that are staring at a camera ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197756.jpg', 'caption': 'Two women wearing hats smiling while looking at a cell phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197756.jpg', 'caption': 'Two women looking at pictures on a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414289.jpg', 'caption': 'A woman talking on a cell phone while holding a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414289.jpg', 'caption': 'A woman drinks her coffee while talking on her phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414289.jpg', 'caption': 'A woman is walking down a sidewalk talking on her cellphone and holding a cup of coffee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414289.jpg', 'caption': 'A woman with a coffee on her cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414289.jpg', 'caption': 'The young woman is talking on her cel phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504732.jpg', 'caption': 'A woman with her face painted like a cat is talking on her cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504732.jpg', 'caption': 'A woman using her cell phone smiles wearing cat make-up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504732.jpg', 'caption': 'A woman with a painted face is on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504732.jpg', 'caption': 'A woman on the sidewalk wearing cat makeup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504732.jpg', 'caption': 'A woman on a city street with face painted like a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218234.jpg', 'caption': 'A man and a woman take a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218234.jpg', 'caption': 'A male and a female in the foreground sitting in an airplane as the woman is holding out her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218234.jpg', 'caption': 'some people on an airplane and the woman is holding a cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218234.jpg', 'caption': 'Couple on an airplane showing off a text', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218234.jpg', 'caption': 'Man and woman on plane with woman showing the camera something on her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316237.jpg', 'caption': 'A beautiful young woman talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316237.jpg', 'caption': 'Woman walking and talking on a cellphone next to several posted flyers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316237.jpg', 'caption': 'A girl on her cell phone walking down a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316237.jpg', 'caption': 'A woman dressed walking on the street talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316237.jpg', 'caption': 'A girl talking on a cell phone in front of a bunch of flyers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093601.jpg', 'caption': 'A group of six cinnamon rolls sitting inside of an oven .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093601.jpg', 'caption': 'A group of uncooked cinnamon rolls on a pan in an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093601.jpg', 'caption': 'Half of a dozen cinnamon rolls are in the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093601.jpg', 'caption': 'Six cinnamon rolls baking in the oven on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093601.jpg', 'caption': 'Cinnamon rolls sitting on a pan in the oven. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476331.jpg', 'caption': 'A black refrigerator freezer mounted inside a kitchen wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476331.jpg', 'caption': 'A modern kitchen with large red wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476331.jpg', 'caption': 'A modern, spacious kitchen features wooden floor, and mahogany cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476331.jpg', 'caption': 'A glossy black refrigerator is inside a wooden cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476331.jpg', 'caption': 'A black fridge in the middle of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018461.jpg', 'caption': 'A refrigerator filled with food and almond milk.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018461.jpg', 'caption': 'A refrigerator with chocolate pudding, yogurt and other foods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018461.jpg', 'caption': 'Refrigerator filled with food on all the shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018461.jpg', 'caption': 'A refrigerator containing water, yoghurt and almond milk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018461.jpg', 'caption': 'The contents of a refrigerator includes yogurt, almond milk and bottled water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017909.jpg', 'caption': 'Well stocked refrigerator with food and beverage items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017909.jpg', 'caption': 'A refrigerator filled with lots of food and drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017909.jpg', 'caption': 'There are different food items in a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017909.jpg', 'caption': 'The refrigerator is stocked with many different foods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017909.jpg', 'caption': 'A refrigerator opened with several food items in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229234.jpg', 'caption': 'A clock mounted on top of a building in the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229234.jpg', 'caption': 'We are looking up at a tall building and a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229234.jpg', 'caption': 'The buildings that are red and white are taller than the clock building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229234.jpg', 'caption': 'A clock tower on top of a tall building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229234.jpg', 'caption': 'Two building across from each other in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274156.jpg', 'caption': 'A discarded white refrigerator sitting on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274156.jpg', 'caption': 'A white appliance stands by a graffiti sprayed wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274156.jpg', 'caption': 'A large electronic box in the middle of a street with graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274156.jpg', 'caption': 'An abandoned refrigerator sits on littered brick pavement beside a wall covered with graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274156.jpg', 'caption': 'A refrigerator sitting alone on a walkway by a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244218.jpg', 'caption': 'A refrigerator sitting in front of a vandalized wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244218.jpg', 'caption': 'used white refrigerator next to a wall of graffitti', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244218.jpg', 'caption': 'A refrigerator and trash items sit in front of a tagged wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244218.jpg', 'caption': 'A broken white fridge sits in front of a wall with graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244218.jpg', 'caption': 'A busted up refrigerator in front of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214527.jpg', 'caption': 'A train station with a large clock on the front of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214527.jpg', 'caption': 'a short clock tower that covers a walkway as well ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214527.jpg', 'caption': 'A covered area is made of glass and has a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214527.jpg', 'caption': 'People walking through a covered pedestrian walk-way that has a large clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214527.jpg', 'caption': 'A clock is high up on a large city structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210761.jpg', 'caption': 'a person opening a fridge to get some food out ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210761.jpg', 'caption': 'A man is in the kitchen preparing to cook a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210761.jpg', 'caption': 'A man reaching into the refrigerator while working on a large meal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210761.jpg', 'caption': 'Man in kitchen retrieving cooking items in kitchen preparation area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210761.jpg', 'caption': 'A man standing in front of an open refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538204.jpg', 'caption': 'A wooden table topped with three glass vases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538204.jpg', 'caption': 'Magenta and clear colored glass bottles are growing onion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538204.jpg', 'caption': 'Three vases sitting on a glass table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538204.jpg', 'caption': 'An assortment of oddly shaped glass candle holders on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538204.jpg', 'caption': 'Three glass candles sitting on a table and lit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138965.jpg', 'caption': \"A picture of children's toy reading story. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138965.jpg', 'caption': 'A collection of stuffed animals and a doll that is holding a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138965.jpg', 'caption': 'A doll sitting in front of a book on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138965.jpg', 'caption': 'Stuffed doll reading story to assorted stuffed animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138965.jpg', 'caption': 'Stuffed toys propped up as if they are reading and listening to a book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179793.jpg', 'caption': 'A man in the bathroom enjoying using the hairdryer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179793.jpg', 'caption': 'A man is using a hair dryer on himself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179793.jpg', 'caption': 'Man singing into an electric hair dryer in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179793.jpg', 'caption': 'A man with long hair using a blow drying in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179793.jpg', 'caption': 'Man thoroughly enjoying the use of a hair dryer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483476.jpg', 'caption': 'A man and woman singing into a blow dryer attached to a bathroom wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483476.jpg', 'caption': 'two people singing into a hair dryer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483476.jpg', 'caption': 'A man and a women yelling into a corded phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483476.jpg', 'caption': 'Man and woman opening their mouth towards a hairdryer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483476.jpg', 'caption': 'Two people are playing with an appliance in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251798.jpg', 'caption': 'there is a man holding up a blow dryer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251798.jpg', 'caption': 'A man holding a hair dryer it up to a pair of cloths.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251798.jpg', 'caption': 'A man holding a white hair dryer in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251798.jpg', 'caption': 'A male pointing a hot glue gun at some fabric hung on the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251798.jpg', 'caption': 'A man holding up a hair dryer toward clothes.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000101414.jpg', 'caption': \"A baby grabs his mother's robe as she gently brushes his hair.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101414.jpg', 'caption': 'A young baby has his hair brushed by mom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101414.jpg', 'caption': \"A woman is brushing a cute baby's hair.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101414.jpg', 'caption': 'a woman brushing a little boys hair with a brush ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101414.jpg', 'caption': 'Black and white photograph of a woman and baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127880.jpg', 'caption': 'A girl playing with a toy on a room floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127880.jpg', 'caption': \"A young girl sitting in front of a child's toilet, holding a brush.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127880.jpg', 'caption': 'A kid with a toy sitting in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127880.jpg', 'caption': 'A toddler girl is kneeling on the ground and holding a hairbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127880.jpg', 'caption': 'A young girl playing with a play doll while sitting on the floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408930.jpg', 'caption': 'A street between two buildings with a clock tower in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408930.jpg', 'caption': 'a clock tower in between some buildings ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408930.jpg', 'caption': 'An alley way, at the end of it their is a large clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408930.jpg', 'caption': 'a narrow alley leading to a tall clock tower in the back ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408930.jpg', 'caption': 'In the distance between two buildings stands a clock tower. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299353.jpg', 'caption': 'A large clock tower connected to a brick church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299353.jpg', 'caption': 'A large bell tower with a clock on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299353.jpg', 'caption': 'A tall tower with a clock on it made of red brick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299353.jpg', 'caption': 'A tall clock tower stands above a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299353.jpg', 'caption': 'A picture is taken of a building on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331230.jpg', 'caption': 'A cutting board with slices of fruit on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331230.jpg', 'caption': 'pieces of kiwi and peach cut up on a plate next to a teapot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331230.jpg', 'caption': 'The fresh fruit is cut up on the table ready to be eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331230.jpg', 'caption': 'A view of a plate of fruit that is on a wooden plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331230.jpg', 'caption': 'A fruit plate sitting on a table next to a tea setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372914.jpg', 'caption': 'a crowd of people with a clock tower in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372914.jpg', 'caption': 'a group of people standing in front of a clock tower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372914.jpg', 'caption': 'We are looking at a tall clock tower in a public square.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372914.jpg', 'caption': 'A giant massive clock tower towering over a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372914.jpg', 'caption': 'People are standing outside near a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118134.jpg', 'caption': 'a building with a very large clock on the side of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118134.jpg', 'caption': 'A clock tower with Roman Numerals and a Sun Dial.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118134.jpg', 'caption': 'A large clock with an astrological attached to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118134.jpg', 'caption': 'Ornamental clock sitting on the side of a brick building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118134.jpg', 'caption': 'A large clock on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074059.jpg', 'caption': 'An old building with a giant clock at the top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074059.jpg', 'caption': 'A very tall brick clock tower sitting under a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074059.jpg', 'caption': 'A cross tops the uppermost tower of a stone church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074059.jpg', 'caption': 'a very tall brick building with a big clock in the middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074059.jpg', 'caption': 'A tall brick building with a clock on the front of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017944.jpg', 'caption': 'A very tall castle sitting under a cloudy gray sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017944.jpg', 'caption': 'A roman numeral clock on a castle wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017944.jpg', 'caption': 'An old stone building with a clock on the front. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017944.jpg', 'caption': 'this is a stone and brick church on a cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017944.jpg', 'caption': 'a building with a big clock sitting on the outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064516.jpg', 'caption': 'VARIOUS ANTIQUE CHAIN CLOCKS KEPT ALTOGETHER ON A TABLE.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064516.jpg', 'caption': 'A lot of small clocks on different times.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064516.jpg', 'caption': 'A large array of pocket watches are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064516.jpg', 'caption': 'A table with several pocket watches on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064516.jpg', 'caption': 'A collection of antique pocket watches in various condition', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124018.jpg', 'caption': 'A sky view looking at the clock tower of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124018.jpg', 'caption': 'A large clock tower sitting beneath a bright blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124018.jpg', 'caption': 'A large steeple of building with a clock built into it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124018.jpg', 'caption': 'A tall clock tower in front of a clear sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124018.jpg', 'caption': 'A clock tower in the middle of the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472960.jpg', 'caption': 'a red and yellow tower with some clocks built into it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472960.jpg', 'caption': 'A gigantic clock tower catches sunlight on a clear day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472960.jpg', 'caption': 'Two clocks on a tower at the top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472960.jpg', 'caption': 'A tall four sided clock tower on the end of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472960.jpg', 'caption': 'upward looking picture of clock tower against a blue sky with sun shining on clock face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212239.jpg', 'caption': 'Artwork with a fish is hanging from the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212239.jpg', 'caption': 'A piece of art hangs in a window and features a wheel and a fish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212239.jpg', 'caption': 'A piece of art and a clock hanging from a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212239.jpg', 'caption': 'Perhaps this strange looking contraption is a sculpture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212239.jpg', 'caption': 'A mobile of some sort hanging on the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318157.jpg', 'caption': 'A couple of vases sitting in a window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318157.jpg', 'caption': 'a pair of colorful vases holding white daisies', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318157.jpg', 'caption': 'two vases placed on the window with some flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318157.jpg', 'caption': 'a couple of vases with some plants in them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318157.jpg', 'caption': 'Two vases with crochet covers sitting in a window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135708.jpg', 'caption': 'a stuffed chicken is sitting next to some flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135708.jpg', 'caption': 'A toy chicken standing beside a flower vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135708.jpg', 'caption': 'A stuffed rooster figure sitting next to a vase on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135708.jpg', 'caption': 'A small table with some very pretty flowers and a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135708.jpg', 'caption': 'A vase filled with flowers is sitting on a table with a chicken. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498555.jpg', 'caption': 'a white vase with a blue and yellow bird', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498555.jpg', 'caption': 'Two white vases on a shelf next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498555.jpg', 'caption': 'a couple of vases that are on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498555.jpg', 'caption': 'Small vase with a cute small bird sitting on a window seal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498555.jpg', 'caption': 'Blue bird on a branch painted on a white vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434858.jpg', 'caption': 'A red vase with an assortment of flowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434858.jpg', 'caption': 'The small vase on the table is holding some dry flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434858.jpg', 'caption': 'A floral arrangement in a vase sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434858.jpg', 'caption': 'Close up of a ceramic vase filled with dry flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434858.jpg', 'caption': 'An orange vase with dried flowers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558449.jpg', 'caption': 'A potted plant sitting on a concrete overview.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558449.jpg', 'caption': 'A planter with bright orange and white flowers sitting on a ledge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558449.jpg', 'caption': 'A pot of flowers is sitting on a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558449.jpg', 'caption': 'A terra cotta pot containing white and orange flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558449.jpg', 'caption': 'flowers in a pot sitting on a cement wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190292.jpg', 'caption': 'music sheets in a binder sit on the table with scissors, tape, a pen and ruler ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190292.jpg', 'caption': 'A table holding a binder with sheet music and scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190292.jpg', 'caption': 'Orange handled scissors and tape dispenser with pens and sheet music on desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190292.jpg', 'caption': 'A pair of scissors, cello-tape holder and pen on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190292.jpg', 'caption': 'A wooden table containing papers, scissors and a tape dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157102.jpg', 'caption': 'The young child is cutting up some paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157102.jpg', 'caption': 'There is a boy in a blue pajamas holding a pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157102.jpg', 'caption': 'A little child wearing blue holds a pair of yellow scissors and some paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157102.jpg', 'caption': 'A toddler plays with scissors and construction paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157102.jpg', 'caption': 'A CHILD IS CUTTING PAPER AT THE TABLE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513066.jpg', 'caption': 'A doctor tending to a persons injured leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513066.jpg', 'caption': \"A person wearing gloves is holding an instrument to a person's arm.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513066.jpg', 'caption': 'A boy in red shorts getting sutures in his leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513066.jpg', 'caption': 'A Doctor putting stitches into someones shin area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513066.jpg', 'caption': 'A person standing over another person sticking them with a hypodermic needle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016928.jpg', 'caption': 'A pair of rusted scissors stuck in a stone sculpture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016928.jpg', 'caption': 'A pair of scissors that is a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016928.jpg', 'caption': 'A pair of rusty scissors is standing up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016928.jpg', 'caption': 'Rusted scissors sticking out of a metal object in a backyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016928.jpg', 'caption': 'rusted scissors out in the field with grass growing around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561629.jpg', 'caption': 'A little boy with scissors and construction paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561629.jpg', 'caption': 'A toddler holds scissors up in the air around a big mess of cut up paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561629.jpg', 'caption': 'A boy is cutting up pieces of construction paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561629.jpg', 'caption': 'A boy is sitting on a floor cutting up paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561629.jpg', 'caption': 'A small child is playing on the floor and is surrounded by torn up pieces of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401398.jpg', 'caption': 'A young girl is holding a stuffed bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401398.jpg', 'caption': 'A little girl that is holding a stuffed bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401398.jpg', 'caption': 'there is a young girl that is holding a stuffed bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401398.jpg', 'caption': 'A woman holding a brown teddy bear next to a plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401398.jpg', 'caption': 'The young girl is holding a large brown stuffed bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547081.jpg', 'caption': 'A woman standing next to a drawing of a tree holding a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547081.jpg', 'caption': 'A girl sits holding a teddy bear in front of a tree with red leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547081.jpg', 'caption': 'A girls sits with a teddy bear in front of a painting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547081.jpg', 'caption': 'A woman holds a phone in her hand as a white teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547081.jpg', 'caption': 'Middle aged dark-haired woman on telephone with a teddy bear beside her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271607.jpg', 'caption': 'A boy in a straw hat sits with two stuffed bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271607.jpg', 'caption': 'a young boy with a cowboy hat on plays with a stuffed bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271607.jpg', 'caption': 'The first picture is blank all the time on purpose.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271607.jpg', 'caption': 'A boy sitting at a table with stuffed teddy bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271607.jpg', 'caption': 'A little boy that is sitting down next to some stuffed bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089924.jpg', 'caption': 'a large teddy bear that is next to a log', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089924.jpg', 'caption': 'A person wearing a teddy bear outfit and a coat sitting in a forest. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089924.jpg', 'caption': 'Stuffed bear sitting in the woods near a branch and rock contraption.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089924.jpg', 'caption': 'A teddy bear with a coat on sitting next to a tree stump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089924.jpg', 'caption': 'A stuffed bear sits on a log beside another log.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132161.jpg', 'caption': 'Cut open meat loaf sitting on aluminum foil in an outdoor setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132161.jpg', 'caption': 'a close up of food on a sheet of aluminum', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132161.jpg', 'caption': 'a large close up of a meatloaf on foil on top of a counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132161.jpg', 'caption': 'there is a close up picture of a piece of bread that is cut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132161.jpg', 'caption': 'A cake sitting on top of a piece of tin foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292103.jpg', 'caption': 'A person sitting at a table with two plates of food, silverware and a cup on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292103.jpg', 'caption': 'A fork in a plate filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292103.jpg', 'caption': 'A plate of rice, tortillas, and sauces on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292103.jpg', 'caption': 'A pair of breakfast dishes with pancakes, eggs, rice, and a tortilla.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292103.jpg', 'caption': 'A plate topped with mexican rice, salsa and a quesadilla.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472146.jpg', 'caption': 'A blueberry bagel rests on a plain plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472146.jpg', 'caption': 'A blueberry bagel sitting on top of a white plate on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472146.jpg', 'caption': 'A decent looking blueberry bagel on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472146.jpg', 'caption': 'A whole blueberry bagel on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472146.jpg', 'caption': 'A cooked blueberry bagel on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063848.jpg', 'caption': 'A meal on a plate is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063848.jpg', 'caption': 'The dish features eggs as well as a green vegetable.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063848.jpg', 'caption': 'An omelette and side of greens on a plate with coffee and a glass of juice. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063848.jpg', 'caption': 'A blue plate, with an omelet and salad is sitting on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063848.jpg', 'caption': 'A plate and glasses have food and drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055772.jpg', 'caption': 'HAM AND EGG ON A PANCAKE, WITH A DISH OF YOGURT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055772.jpg', 'caption': 'some food is laying out on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055772.jpg', 'caption': 'Some food that is sitting on a plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055772.jpg', 'caption': 'Two pancakes and a slice of Canadian bacon displayed on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055772.jpg', 'caption': 'A plate with yogurt and pancakes and ham', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574103.jpg', 'caption': 'A table topped with a white bowl filled with rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574103.jpg', 'caption': 'coffe cups, a cell phone, a fork, and a meal are scattered about the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574103.jpg', 'caption': 'A bowl of oatmeal on a table and various colors of mugs on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574103.jpg', 'caption': 'A table with a bowl of food and some mugs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574103.jpg', 'caption': 'a close up of a bowl of food on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360170.jpg', 'caption': 'A group of people sit around a table at a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360170.jpg', 'caption': 'A group of people at a dining table in a very large room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360170.jpg', 'caption': 'Friends gather around a table for dinner at a nice restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360170.jpg', 'caption': 'People sitting around an oval table in a restaurant posing for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360170.jpg', 'caption': 'A group of people sitting around a table sharing a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020177.jpg', 'caption': 'a family is gathered around a table for dinner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020177.jpg', 'caption': 'A group of people sitting at a table at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020177.jpg', 'caption': 'A group of older people sitting at a round table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020177.jpg', 'caption': 'A group of people sitting around a large round table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020177.jpg', 'caption': 'Everyone at the round table is wearing glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580555.jpg', 'caption': 'Some seafood and a lemon on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580555.jpg', 'caption': 'well made food potatoes on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580555.jpg', 'caption': 'A plate with scallops, green beans, and a baked potato.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580555.jpg', 'caption': 'A photo of dinner on a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580555.jpg', 'caption': 'A picture of a dish of scallops on a white plate with a baked potato and green beans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555904.jpg', 'caption': 'A man sitting at a bar filled with liquor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555904.jpg', 'caption': 'People sitting a a take near several bottles of wine on shelves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555904.jpg', 'caption': 'Several people are sitting at a table drinking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555904.jpg', 'caption': 'Several people in a bar sitting at a long table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555904.jpg', 'caption': 'People eating in a restaurant near wine bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223414.jpg', 'caption': 'A lady is sitting on a terrace drinking a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223414.jpg', 'caption': 'Woman enjoying beverage from glass while sitting on terrace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223414.jpg', 'caption': 'A woman drinking a glass of wine in an outdoor setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223414.jpg', 'caption': 'A girl in sunglasses and a black shirt holds a glass up to her mouth in an outdoor area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223414.jpg', 'caption': 'A woman drinking from a class on a balcony.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070471.jpg', 'caption': 'A man sitting in a chair holding a baby who is chewing on a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070471.jpg', 'caption': \"A baby is sitting in a man's lap and has a remote control in its mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070471.jpg', 'caption': 'A adult holding a child biting into a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070471.jpg', 'caption': 'A baby is biting a remote control and staring straight ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070471.jpg', 'caption': 'A baby with a remote control in her mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127050.jpg', 'caption': 'The tables at the restaurant are very crowded with people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127050.jpg', 'caption': 'An outdoor cafe with people sitting at multiple tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127050.jpg', 'caption': 'Groups of people sitting at tables talking in blue chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127050.jpg', 'caption': 'Outdoor tables at a restaurant with blue chairs and umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127050.jpg', 'caption': 'A large group of people sitting at tables with umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031519.jpg', 'caption': 'A group of rescue workers helping an overturned car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031519.jpg', 'caption': 'A group of people are around the upside down car on the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031519.jpg', 'caption': 'a car over turned on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031519.jpg', 'caption': 'it is a scene of a crash with a vehicle overturned.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031519.jpg', 'caption': 'An overturned car at the intersection of a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268927.jpg', 'caption': 'Black and white photograph of person with birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268927.jpg', 'caption': 'A black and white photo of a person close to a pigeon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268927.jpg', 'caption': 'A person in a hood looking at a pair of birds on a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268927.jpg', 'caption': 'A black and white photo of someone feeding two birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268927.jpg', 'caption': 'A person in a hoodie close to perched pigeons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387696.jpg', 'caption': 'A group of people standing around a kitchen preparing food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387696.jpg', 'caption': ' two men and one woman standing in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387696.jpg', 'caption': 'Three people are standing in the same kitchen area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387696.jpg', 'caption': 'A man, woman, and child preparing food in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387696.jpg', 'caption': 'Three people are preparing a meal in a small kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294595.jpg', 'caption': 'a kitchen with cabinets and counter tops sitting on a tiled floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294595.jpg', 'caption': 'A tiny kitchen has a dishwasher, cabinets and a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294595.jpg', 'caption': 'partial picture of kitchen looking through door to another area with cabinets and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294595.jpg', 'caption': 'A separate room off of a kitchen with a dishwasher and microwave in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294595.jpg', 'caption': 'A white automatic dishwasher sitting under a microwave oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281296.jpg', 'caption': 'a woman and her cat nervously look at the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281296.jpg', 'caption': 'A woman sitting down with a cat on her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281296.jpg', 'caption': 'A woman is shown snuggling with her cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281296.jpg', 'caption': 'A woman wearing a red sweater holding a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281296.jpg', 'caption': 'In person cuddling in a blanket with a cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241645.jpg', 'caption': 'A black stove top oven sitting in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241645.jpg', 'caption': 'a collage with a kitchen a stove and a refrigerator', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241645.jpg', 'caption': 'Several pictures showing minor details of a home. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241645.jpg', 'caption': 'A kitchen with a sink, stove, refrigerator, microwave, and kitchen decor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241645.jpg', 'caption': 'A kitchen with small photos of other walls in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171371.jpg', 'caption': 'The skilled skier is taking the downhill route.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171371.jpg', 'caption': 'Downhill Skiier traveling on steep slope of snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171371.jpg', 'caption': 'A man skiing down a mountain on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171371.jpg', 'caption': 'A person on skis is riding down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171371.jpg', 'caption': 'a skier skiing down a steep snowy slope ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009668.jpg', 'caption': 'A kitchen filled with appliances and a wall mounted picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009668.jpg', 'caption': 'That seems like a very small sink for this kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009668.jpg', 'caption': 'A little bitty corner sink is in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009668.jpg', 'caption': 'The corner of a kitchen with a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009668.jpg', 'caption': 'A nearly empty modern style kitchen with wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523373.jpg', 'caption': 'A table full of vegetables and fruits piled on top of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523373.jpg', 'caption': 'Group of mixed vegetables sitting on a counter top in a kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523373.jpg', 'caption': 'Close-up of fruits and vegetables on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523373.jpg', 'caption': 'There is a pile of fruit and vegetables on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523373.jpg', 'caption': 'Assorted fruits and vegetables displayed in a kitchen scene.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308543.jpg', 'caption': 'A hand holding two spoons over a metal sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308543.jpg', 'caption': 'A person is holding two spoons over the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308543.jpg', 'caption': 'A person holding two spoons over a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308543.jpg', 'caption': 'A person is washing two spoons in a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308543.jpg', 'caption': 'a person holds two spoons over a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491223.jpg', 'caption': 'A man holding a remote control in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491223.jpg', 'caption': 'a man with a cell phone in his mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491223.jpg', 'caption': 'Funny close up of a man staring cross eyed at a remote control in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491223.jpg', 'caption': 'A man crossing his eyes with a remote in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491223.jpg', 'caption': 'A man with crossed eyes holding a remote in his mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449296.jpg', 'caption': 'A kitchen sink with cupboards of dishes stored above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449296.jpg', 'caption': 'sink area of a kitchen with coral colored shelving', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449296.jpg', 'caption': 'A kitchen sink with a metallic faucet under a cupboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449296.jpg', 'caption': 'The dishes on the open shelves are easily at hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449296.jpg', 'caption': 'Large set up of glasses and plates in a kitchen cupboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511844.jpg', 'caption': 'A man carrying a large US flag on a horse riding down a town street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511844.jpg', 'caption': 'A man on a horse holding an American flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511844.jpg', 'caption': 'A person sitting on a horse in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511844.jpg', 'caption': 'A person riding on the back of a brown horse holding the American Flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511844.jpg', 'caption': 'A man holding an American flag riding down the street on a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227220.jpg', 'caption': 'A kitchen with a white tile wall and a chrome counter with a built in oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227220.jpg', 'caption': 'A kitchen with a stove, shelves and various cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227220.jpg', 'caption': 'The kitchen has stainless steel appliances with only one white door. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227220.jpg', 'caption': 'A beautiful high end stainless steel commercial kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227220.jpg', 'caption': 'A kitchen with stainless steel appliances and counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508605.jpg', 'caption': 'Boy rides skateboard and does trick over stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508605.jpg', 'caption': 'Man in air on skateboard at night by light of street lamps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508605.jpg', 'caption': 'Skateboarder does airborne trick in front of concrete steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508605.jpg', 'caption': 'A skateboarder jumping over the set of steps. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508605.jpg', 'caption': 'A person is doing a skateboarding trick on the stairs of a public plaza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538092.jpg', 'caption': 'A man standing in a kitchen while closing a cupboard door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538092.jpg', 'caption': 'A man standing in kitchen surrounded by items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538092.jpg', 'caption': 'A kitchen area with a cooler and container stacked on the floor and a man getting an item out of a cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538092.jpg', 'caption': 'A man holding a cabinet in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538092.jpg', 'caption': 'a man stocking up his kitchen with groceries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005476.jpg', 'caption': 'A group of people walking towards a beach while carrying surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005476.jpg', 'caption': 'Beach scene, 12 people walking to water carrying surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005476.jpg', 'caption': 'People walking on a beach, many carrying surfboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005476.jpg', 'caption': 'Many people are carrying surfboards to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005476.jpg', 'caption': 'Two groups of surfers walk side by side on their way to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443949.jpg', 'caption': 'Cooking utensils in a glass next to an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443949.jpg', 'caption': 'A bowl with kitchen utensils sits next to the stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443949.jpg', 'caption': 'Some cooking utensils are sitting in a pitcher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443949.jpg', 'caption': 'Kitchen cooking utensils in glass container next to modern oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443949.jpg', 'caption': 'A glass sitting on a table next to an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229481.jpg', 'caption': 'A woman cooking in a skillet on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229481.jpg', 'caption': 'a woman standing over a kitchen sink preparing food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229481.jpg', 'caption': 'A woman in a floral shirt preparing food in a skillet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229481.jpg', 'caption': 'A woman is standing over a pan of food on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229481.jpg', 'caption': 'A woman cooking food at a skillet on a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253171.jpg', 'caption': 'A couple of glasses next to a bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253171.jpg', 'caption': 'a bottle and two glasses against a black background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253171.jpg', 'caption': 'Blue glasses wait to be filled with wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253171.jpg', 'caption': 'There are two light up wine glasses with light wine up bottle beside them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253171.jpg', 'caption': 'A pair of wine glasses next to a bottle of win', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223094.jpg', 'caption': 'a fridge and a sink in a home kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223094.jpg', 'caption': 'A stove standing next to a fridge freezer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223094.jpg', 'caption': 'Small kitchen with silver appliances inside of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223094.jpg', 'caption': 'A kitchen with a stove, oven, and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223094.jpg', 'caption': 'THIS IS A PHOTO OF A PINKISH KITCHEN IN A RESIDENTIAL PLACE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470313.jpg', 'caption': 'A girl takes a picture of herself in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470313.jpg', 'caption': 'A woman takes a picture of herself in a bathroom mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470313.jpg', 'caption': 'A woman takes a picture in front of the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470313.jpg', 'caption': 'A woman taking a selfie in a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470313.jpg', 'caption': 'A woman wearing a white shirt and black vest looks into a mirror while holding a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283816.jpg', 'caption': 'a kitchen with a refrigerator a small table and chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283816.jpg', 'caption': 'A kitchen containing several appliances, a table with chairs and an open spice rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283816.jpg', 'caption': 'Kitchen area, with storage shelves, stove/oven, dish washer, refrigerator, counter and two person dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283816.jpg', 'caption': 'A clean kitchen with a counter, spice rack and eating area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283816.jpg', 'caption': 'Eating and kitchen area of a small apartment ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337815.jpg', 'caption': 'A small kitchen with black and wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337815.jpg', 'caption': 'This modern kitchen is pictured at a side view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337815.jpg', 'caption': 'A kitchen filled with black counter tops and a black stove top oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337815.jpg', 'caption': 'A small kitchen features dark cabinets and counters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337815.jpg', 'caption': 'A small kitchen with dark counters and woodwork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043243.jpg', 'caption': 'A TV sitting on top of a counter inside of a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043243.jpg', 'caption': 'a t.v. that is sitting on a shelf with some lights near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043243.jpg', 'caption': 'a bunch of different electronics all on one big pile. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043243.jpg', 'caption': 'a bright light sitting in front of a tv ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043243.jpg', 'caption': 'A collection of cameras and lights in front of a tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487338.jpg', 'caption': 'A girl is holding a paper up over her face as a man is shown behind in a mirror talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487338.jpg', 'caption': 'a woman holding onto a piece of paper and covering her face with it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487338.jpg', 'caption': 'A person holding up papers while sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487338.jpg', 'caption': 'A person sits at a white table holding a white piece of paper in front of her face and in the background, a man with glass is sitting with his head leaning in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487338.jpg', 'caption': 'A woman hides her face behind a blank sheet of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564629.jpg', 'caption': 'A kitchen, with a sink, oven, fridge, and cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564629.jpg', 'caption': 'Kitchen with wooden cabinets and a metal sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564629.jpg', 'caption': 'A kitchen with wooden walls and cabinets and a metal sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564629.jpg', 'caption': 'An empty kitchen with wooden cabinets and black appliances. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564629.jpg', 'caption': 'A kitchen with a sink, stove, and wooden cabinets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157416.jpg', 'caption': 'A girls bicycle leaning against a street sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157416.jpg', 'caption': 'A bike parked up against the side of a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157416.jpg', 'caption': ' A road with pavement on which street sign board is attached on a pole.A cycle is standing by the pole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157416.jpg', 'caption': 'A rusty street sign with a bicycle leaning against the pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157416.jpg', 'caption': 'A street sign with a bike leaned up against it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205533.jpg', 'caption': 'A bathroom with powers on a towel rack under a painting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205533.jpg', 'caption': 'Towels are hanging over rods in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205533.jpg', 'caption': 'A bathroom with towels hung up and bamboo plants. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205533.jpg', 'caption': 'Three stalks of bamboo grow over a bathroom towel rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205533.jpg', 'caption': 'Bathroom with many towels hanging to dry out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362127.jpg', 'caption': 'Elegant marbled bathroom with blinds and toiletries with mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362127.jpg', 'caption': 'A hotel bathroom shows a large bathtub by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362127.jpg', 'caption': \"A bathroom with modern fixtures including a garden style bathtub near a window that has it's shades closed.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362127.jpg', 'caption': 'A huge luxury bathroom with an oval tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362127.jpg', 'caption': 'A view of a bathroom with a mirror, towels and a tub. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570138.jpg', 'caption': 'A bathroom with a sink, toilet, and vanity.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570138.jpg', 'caption': 'tiled bathroom with a couple towels hanging up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570138.jpg', 'caption': 'An old bathroom with a black marble sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570138.jpg', 'caption': 'A bathroom with a black sink counter next to a white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570138.jpg', 'caption': 'the corner of a bathroom with light mint green walls above the tile. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557677.jpg', 'caption': 'A bathroom with a white toilet sitting next to a white tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557677.jpg', 'caption': 'A bathroom with large tiles and an orange towel hanging on the shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557677.jpg', 'caption': 'a bathroom that has a tub and a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557677.jpg', 'caption': 'A bathroom with a sink, toilet, and shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557677.jpg', 'caption': 'A bathroom with a shower, toilet, sink and other accessories', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535643.jpg', 'caption': 'A urinal mounted to a pink wall next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535643.jpg', 'caption': 'A bathroom has a toilet and a urinal in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535643.jpg', 'caption': 'A urinal seperated from a toilet in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535643.jpg', 'caption': 'A bathroom contains a toilet and urinal divided by a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535643.jpg', 'caption': 'A toilet and urinal against a pink tiled wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557135.jpg', 'caption': 'A large empty bathroom with a walk in shower tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557135.jpg', 'caption': 'A large bathroom that is very well kept', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557135.jpg', 'caption': 'A bathroom that has two sinks and a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557135.jpg', 'caption': 'THE VIEW OF A BATHROOM WITH WASHBASINS AND A LARGE MIRROR.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557135.jpg', 'caption': 'A large white bathroom with white cabinets and double sinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106193.jpg', 'caption': 'A modern bathroom is designed to be useful.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106193.jpg', 'caption': 'A bathroom made with stone walls and counters, and plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106193.jpg', 'caption': 'A oarge open bathroom with walk in shower and double sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106193.jpg', 'caption': 'A bathroom with two sinks and two mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106193.jpg', 'caption': 'A vase in a bathroom with one white flower in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146999.jpg', 'caption': 'A modern bathroom with a spacious tub and shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146999.jpg', 'caption': 'tiled bathroom with tub and rounded vanity containing lots of mirrors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146999.jpg', 'caption': 'A bathroom with a vanity, sink, and bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146999.jpg', 'caption': 'A bath tub sitting under a large mirror next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146999.jpg', 'caption': 'A modern bathroom with a vanity sink and large bath tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513129.jpg', 'caption': \"A man's reflection is in a mirror of a bathroom.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513129.jpg', 'caption': 'A person taking a picture of a bathroom sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513129.jpg', 'caption': 'The man taking the picture is seen in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513129.jpg', 'caption': 'A person taking a picture in a mirror, in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513129.jpg', 'caption': 'A modern looking sink in a nice bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010393.jpg', 'caption': 'a man is riding a white bike down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010393.jpg', 'caption': 'A man rides a bicycle on a street past stores.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010393.jpg', 'caption': 'A man on a white bike is biking on the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010393.jpg', 'caption': 'a man sitting on a bike outside a conveneince store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010393.jpg', 'caption': 'A male on his bike that seems shocked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084540.jpg', 'caption': 'Two people on bicycles riding next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084540.jpg', 'caption': 'Two people on bikes crossing an intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084540.jpg', 'caption': 'A couple of people with backpacks riding bicycles down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084540.jpg', 'caption': 'two people riding bicycles and a man walking on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084540.jpg', 'caption': 'Some people riding bikes down a wide empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251075.jpg', 'caption': 'A bathroom with a vanity mirror toilette and kitchen sink next to a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251075.jpg', 'caption': 'A bathroom with a tan sink and white toliet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251075.jpg', 'caption': 'Bathroom with a sink, toilet, and a shower with towels on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251075.jpg', 'caption': 'A bathroom with a picture and red and black vase on the vanity.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251075.jpg', 'caption': 'A bathroom is shown with a sink and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043997.jpg', 'caption': 'A row of wall mounted sinks in a restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043997.jpg', 'caption': 'A set of sinks and mirrors in a public restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043997.jpg', 'caption': 'Picture of bathroom with four sinks, mirrors, and three open windows above them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043997.jpg', 'caption': 'An empty public bathroom with a row sinks and yellow walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043997.jpg', 'caption': 'There is a bathroom with four sinks and mirrors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175310.jpg', 'caption': 'A large bathroom has white walls and cabinets and blue wall tiles and countertops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175310.jpg', 'caption': 'A room with a mirror, sink, cabinets and towels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175310.jpg', 'caption': 'A white sink with blue back splash and counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175310.jpg', 'caption': 'A white sink is in a bathroom with blue tile. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175310.jpg', 'caption': 'A bathroom with a sink, cabinets and a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007125.jpg', 'caption': 'Bicyclists are riding on a trail beside other walkers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007125.jpg', 'caption': 'A dude on a bike rides quietly across the place', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007125.jpg', 'caption': 'A road that lines the shoreline with people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007125.jpg', 'caption': 'The man was riding the bike in the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007125.jpg', 'caption': 'A biker bikes down the road as people walk on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507249.jpg', 'caption': 'Two bikes parked next to each other on a bike rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507249.jpg', 'caption': 'A white and a black bicycle parked in a concrete bicycle parking station, next to a grass yard area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507249.jpg', 'caption': \"A man and woman's bike parked in a bike rack.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507249.jpg', 'caption': 'Two bicycles parked in a bike rack near the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507249.jpg', 'caption': 'A couple of bikes that are on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075923.jpg', 'caption': 'A bicycle is parked next to a bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075923.jpg', 'caption': 'A bicycle leaning on the back of a bench at the edge of the grass and sand at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075923.jpg', 'caption': 'A bike pared behind a wooden bench on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075923.jpg', 'caption': 'A bicycle leaning next to a bench on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075923.jpg', 'caption': 'A bicycle resting against a bench on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240918.jpg', 'caption': 'Pink bike sits on a guard rail by the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240918.jpg', 'caption': 'A pink bicycle leaning against a green railing next to a canal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240918.jpg', 'caption': 'A purple bicycle is parked on a fence next to a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240918.jpg', 'caption': 'A bike is chained to the post on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240918.jpg', 'caption': 'A pink bicycle leaning against a fence near a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184700.jpg', 'caption': 'A white sink sitting under a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184700.jpg', 'caption': 'A well lit bathroom with a walk-in shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184700.jpg', 'caption': 'A bathroom with sink, toilet and shower stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184700.jpg', 'caption': 'A bunch of lights that are on over a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184700.jpg', 'caption': 'The bathroom sink counter has drawers beneath it and a mirror above. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191691.jpg', 'caption': 'A man is shaving while looking in a mirror of a cluttered bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191691.jpg', 'caption': 'A man looking into a mirror shaving in a white tiled bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191691.jpg', 'caption': 'A man is seen shaving his face in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191691.jpg', 'caption': 'A man in the bathroom shaving his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191691.jpg', 'caption': 'a man shaving in a bathroom while looking in the mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130732.jpg', 'caption': 'a man is shaving in a mirror in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130732.jpg', 'caption': 'A man standing in front of a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130732.jpg', 'caption': 'a reflection of a man getting ready to shave in the bathroom mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130732.jpg', 'caption': 'a man in front of the mirror shaving in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130732.jpg', 'caption': 'A man shaving in a large bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304389.jpg', 'caption': 'A bathroom depicting a vanity, window and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304389.jpg', 'caption': 'There are items on this bathroom shelf and a window is above the shelf. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304389.jpg', 'caption': 'Massage tools sit on the counter of the clean bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304389.jpg', 'caption': 'A dresser drawer that has toys on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304389.jpg', 'caption': 'A window in a house sitting over a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196793.jpg', 'caption': 'A full view of a bathroom with the shower and sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196793.jpg', 'caption': 'A bathroom with a shower, sink and shelving unit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196793.jpg', 'caption': 'Long bathroom with view of the shower and the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196793.jpg', 'caption': 'A bathroom has a half circle shower. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196793.jpg', 'caption': 'A small bathroom has a corner shelf not in a corner, a standing sink, and a corner tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418070.jpg', 'caption': 'A bathroom that has tools on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418070.jpg', 'caption': 'A bathroom in the process of being built.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418070.jpg', 'caption': 'A toilet that is in a bathroom near tools.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418070.jpg', 'caption': 'A white toilet sitting next to a sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418070.jpg', 'caption': 'a bath room with a toilet and a sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122302.jpg', 'caption': 'a parking area for motorcycles and bicycles along a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122302.jpg', 'caption': 'A row of bikes and motorbikes line the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122302.jpg', 'caption': 'A crowded city street with a row of bicycles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122302.jpg', 'caption': 'Several rows of bicycles and scooters parked next to a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122302.jpg', 'caption': 'A lot of bikes and motorcycles lined up near a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140006.jpg', 'caption': 'Mopeds and bicycles parked next to parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140006.jpg', 'caption': 'Two vespas parked next to a light post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140006.jpg', 'caption': 'Two mopeds and two bicycles locked up in a row.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140006.jpg', 'caption': 'This is an image of scooters and bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140006.jpg', 'caption': 'Mopeds are parked near bicycles on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536444.jpg', 'caption': 'there is an air plane that is in the sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536444.jpg', 'caption': 'A person on a bike and a airplane in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536444.jpg', 'caption': 'An airplane is flying over a bicycle rider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536444.jpg', 'caption': 'a person in a hat riding a bicycle and an airplane in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536444.jpg', 'caption': 'People and a bicyclist watching a plane fly overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386766.jpg', 'caption': 'A marble tiled bathroom with double sinks and wooden cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386766.jpg', 'caption': 'A bathroom has gold wall and brown counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386766.jpg', 'caption': 'A bathroom with a small TV screen next to the bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386766.jpg', 'caption': 'A bathroom has a tub and a counter with two sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386766.jpg', 'caption': 'A bathroom with tiled floor and bathing area, with a large double sink and mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576576.jpg', 'caption': 'A bathroom with white fixtures and green flooring', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576576.jpg', 'caption': 'A bathroom area with toilet, sink and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576576.jpg', 'caption': 'A fisheye lens photograph of a residential bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576576.jpg', 'caption': 'A sparsely furnished bathroom is dimly lit by the overhead bulb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576576.jpg', 'caption': 'A picture taken with a fish bowl lens', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344271.jpg', 'caption': 'A man sitting eating an apple with his bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344271.jpg', 'caption': 'A man with bike on a passenger train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344271.jpg', 'caption': 'a man holding onto a bike while sitting in a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344271.jpg', 'caption': 'A man sitting on a bus with a bike in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344271.jpg', 'caption': 'A man with his bicycle riding a city train or bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445812.jpg', 'caption': 'This bathroom has a toilet that sits back in a small niche and a shower with sliding glass doors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445812.jpg', 'caption': 'A toilet is sitting in a home bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445812.jpg', 'caption': 'THERE IS A TOILET IN THE BATHROM AND A SHOWER IN THERE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445812.jpg', 'caption': 'A view of a bathroom with a yellow towel sitting on the shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445812.jpg', 'caption': 'A bathroom with a white toilet and walk in shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231732.jpg', 'caption': 'A sink with a toothbrush holder, soap and a mirror around it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231732.jpg', 'caption': 'A sink of a bathroom with things on the counter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231732.jpg', 'caption': 'A bottle of soap is sitting on a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231732.jpg', 'caption': 'there is a white sink and white counter in this bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231732.jpg', 'caption': 'this is a standard white sink in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253441.jpg', 'caption': 'A pink bathroom contains a toilet sink, cabinets, and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253441.jpg', 'caption': 'a bathroom with pink tiles on the wall and wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253441.jpg', 'caption': 'A bathroom has a sink and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253441.jpg', 'caption': 'A long bathroom with pink tile and counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253441.jpg', 'caption': 'A clean bathroom with nothing but a bar of soap on the counter top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471097.jpg', 'caption': 'A white car parked next to a parking meter in front of a parking garage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471097.jpg', 'caption': 'White four door automobile parked on the street by a meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471097.jpg', 'caption': 'A white car parked at a meter on a curb side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471097.jpg', 'caption': 'White car parked at curb with parking meter in city setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471097.jpg', 'caption': 'A car is parked next to a meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416184.jpg', 'caption': 'The bath room is clean with brown tile, white sink and large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416184.jpg', 'caption': 'A public bathroom area with orange tile walls.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000248300.jpg', 'caption': 'A bride and groom eating a piece of their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248300.jpg', 'caption': 'The bride is feeding the groom there wedding cake .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248300.jpg', 'caption': 'The couple is sharing a piece of cake while being photographed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248300.jpg', 'caption': 'A bride feeding the groom a piece of cake as a photographer takes a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300368.jpg', 'caption': 'Bride and groom looking at wedding cake with server in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300368.jpg', 'caption': 'A bride and groom cutting their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300368.jpg', 'caption': 'A bride and a groom cut into their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300368.jpg', 'caption': 'A formally dressed man and woman lean close to a cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300368.jpg', 'caption': 'A woman in a white dress standing next to a man in a tuxedo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115924.jpg', 'caption': 'A man on a surfboard riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115924.jpg', 'caption': 'A surfer jumps on top of a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115924.jpg', 'caption': 'The surfer is barely hanging on to his surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115924.jpg', 'caption': 'THIS LOOKS LIKE A MAN WITH ONE ARM SURFING', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115924.jpg', 'caption': 'A man is surfing down a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115043.jpg', 'caption': 'A man riding a white surfboard on a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115043.jpg', 'caption': 'A surfer doing stunts on the waves in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115043.jpg', 'caption': 'A surf boarding man is catching a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115043.jpg', 'caption': 'A surfer is in the air on top of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115043.jpg', 'caption': 'A man surfing on the ocean waters waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349754.jpg', 'caption': 'A man surfing and being knocked over by a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349754.jpg', 'caption': 'Person surfing a wave in a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349754.jpg', 'caption': 'A surfer is in the midst of a big white wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349754.jpg', 'caption': 'A male surfer on a surfboard riding an ocean wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349754.jpg', 'caption': 'An altered image of a person on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287484.jpg', 'caption': 'A messy bed in a bedroom between two tables with lamps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287484.jpg', 'caption': 'An unmade bed and two tables in a bedroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287484.jpg', 'caption': 'A bedroom shows an unmade bed with white sheets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287484.jpg', 'caption': 'A frumpled bed sits in between two blue covered nightstands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287484.jpg', 'caption': 'A bed with a wooden headboard is disheveled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558577.jpg', 'caption': 'A man lying down on a bed showing his clean sneaker bottoms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558577.jpg', 'caption': 'A person laying in a bed with no sheets with his shoes on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558577.jpg', 'caption': 'A man laying down on a twin size bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558577.jpg', 'caption': 'A person lying on a bed with their feet as a closeup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558577.jpg', 'caption': 'A shot from the foot end of the bed of an adult laying down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141807.jpg', 'caption': 'The simple white shelving unit is against the white wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141807.jpg', 'caption': 'A white night stand table in a white room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141807.jpg', 'caption': 'A white bedroom with a white shelf and bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141807.jpg', 'caption': 'A nearly all white colored bedroom with a brown wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141807.jpg', 'caption': 'A white bedroom decorated with low level furniture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380244.jpg', 'caption': 'A large bed sitting beside a night stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380244.jpg', 'caption': 'A lavish hotel room with a comfy bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380244.jpg', 'caption': 'a bed well made with white bed cover', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380244.jpg', 'caption': 'A bedroom with a bed that has white and turquoise sheets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380244.jpg', 'caption': 'A big white big with a night stand next to it in a big room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334826.jpg', 'caption': 'A close shot of a fully cooked pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334826.jpg', 'caption': 'A pizza that is sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334826.jpg', 'caption': 'A whole personal pizza with toppings such as cheese and onions. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334826.jpg', 'caption': 'The round, traditional pizza is fresh from the oven topped with mozzarella and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334826.jpg', 'caption': 'A cooked pizza sitting on a pizza pan ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192834.jpg', 'caption': 'A bed, a table, a chair, a TV and a bean bag in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192834.jpg', 'caption': 'A bedroom area with a bed, desk and television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192834.jpg', 'caption': 'A bed sitting in a living room next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192834.jpg', 'caption': 'A modernly styled hotel room has a bed that appears to float off the floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192834.jpg', 'caption': 'A bedroom decorated in a futuristic style with a floating bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307166.jpg', 'caption': 'A picture of some food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307166.jpg', 'caption': 'A table with three each of three different kinds of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307166.jpg', 'caption': 'A preparation table for pizza that is ready for the oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307166.jpg', 'caption': 'A table is laid out with a line of bread with cheese and toppings on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307166.jpg', 'caption': 'The table is covered in pizza bread and condiments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013525.jpg', 'caption': 'a nude person sitting on a bed with sheets and pillows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013525.jpg', 'caption': 'a naked girl that is sitting down on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013525.jpg', 'caption': 'A woman with no clothes on sitting on the edge of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013525.jpg', 'caption': 'A woman sits on the edge of a rumpled bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013525.jpg', 'caption': 'A naked woman with a tattoo sits on the edge of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220538.jpg', 'caption': 'Two pizzas that are sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220538.jpg', 'caption': 'A couple of large cooked pizzas on a surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220538.jpg', 'caption': '2 gourmet pizzas on a table one with fresh herbs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220538.jpg', 'caption': 'a couple of different pizzas that are on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220538.jpg', 'caption': 'A picture of two pizzas with different topping. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113722.jpg', 'caption': 'A group of surfers rinse their boards before leaving the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113722.jpg', 'caption': 'Families out on the beach with their surf boards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113722.jpg', 'caption': 'A group of people on a beach with surfboards and chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113722.jpg', 'caption': 'People with surfboards showing off on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113722.jpg', 'caption': 'several people on a beach showering with their surfboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486093.jpg', 'caption': 'A group of people swimming out in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486093.jpg', 'caption': 'An ocean of water with three surfers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486093.jpg', 'caption': 'a couple of people swimming in the ocean ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486093.jpg', 'caption': 'Three seagulls swimming in the ocean with waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486093.jpg', 'caption': 'A group of swimmers floating in choppy waters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133251.jpg', 'caption': 'Black and white dog laying down on bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133251.jpg', 'caption': 'A dog and cat sleeping together on a dog bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133251.jpg', 'caption': 'An adorable dog laying down on a dog bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133251.jpg', 'caption': 'A black down lounging on its pet bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133251.jpg', 'caption': 'A dog laying in a doggy bed with a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026630.jpg', 'caption': 'There is an unmade bed in a Victorian style room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026630.jpg', 'caption': 'The light from the window shows an unmade bed beside a messy one. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026630.jpg', 'caption': 'An unmade bed with tangled silk and cotton sheets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026630.jpg', 'caption': 'A bed lies unmade in a Victorian style bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026630.jpg', 'caption': 'A half unmade bed in a hotel room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378614.jpg', 'caption': 'A print ad for the Pizzeria La Crescia.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378614.jpg', 'caption': 'A plate of food and a bottle of beer is seen outside of a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378614.jpg', 'caption': 'a beer sits in front of a box of food ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378614.jpg', 'caption': 'Some people are eating quesadillas and a beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378614.jpg', 'caption': 'a big pizza is on a big white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068396.jpg', 'caption': 'A pizza sitting on top of a plate covered in cheese and tomatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068396.jpg', 'caption': 'A pizza with cheese and tomatoes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068396.jpg', 'caption': 'A just baked thin crust pizza with tomatoes and feta cheese. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068396.jpg', 'caption': 'An appetizing pizza with tomato and cheese on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068396.jpg', 'caption': 'A whole pizza with large slices of tomatoes on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294487.jpg', 'caption': 'A small canopy next to a dresser in a wood paneled room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294487.jpg', 'caption': 'This bed has a canopy above it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294487.jpg', 'caption': 'An old style bedroom with a bed, dresser and bed side table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294487.jpg', 'caption': 'A bed in a bedroom with a white blanket on top of a hard wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294487.jpg', 'caption': 'The room has an antique canopy bed topped with a quilt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204432.jpg', 'caption': 'A man and woman pose for a picture together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204432.jpg', 'caption': 'a couple of people that are eating some food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204432.jpg', 'caption': 'A man with a mustache is eating a sandwich. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204432.jpg', 'caption': 'A man and a woman sit next to each other as they eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204432.jpg', 'caption': 'A man and a woman sitting on steps in front a building with food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366569.jpg', 'caption': 'A woman taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366569.jpg', 'caption': 'A woman leaning over swinging a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366569.jpg', 'caption': 'A woman that is holding onto a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366569.jpg', 'caption': 'The woman is playing tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366569.jpg', 'caption': 'A woman swinging a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267251.jpg', 'caption': 'A young girl hitting a ball with a racquet..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267251.jpg', 'caption': 'A pretty tennis player in action on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267251.jpg', 'caption': 'A professional tennis player struggles to connect with the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267251.jpg', 'caption': 'A woman takes a near-ground shot while playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267251.jpg', 'caption': 'A girl is hitting a tennis ball that was served to her. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050099.jpg', 'caption': 'A wooden desk with a lap top computer and a computer monitor with a keyboard and mouse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050099.jpg', 'caption': 'A desktop computer monitor sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050099.jpg', 'caption': 'A wooden desk office space with a functioning computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050099.jpg', 'caption': 'A full view of a computer with a screen on the wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050099.jpg', 'caption': 'A monitor by a laptop, keyboard, mouse and Xbox 360.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389986.jpg', 'caption': 'A person is hitting a ball with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389986.jpg', 'caption': 'A graphite tennis racket hits a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389986.jpg', 'caption': 'a close up of a racket hitting a ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389986.jpg', 'caption': 'A tennis racket being held by a person and balancing a tennis ball at the top of the racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389986.jpg', 'caption': 'A close up shot of a tennis racket striking a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382309.jpg', 'caption': 'Small slice of pizza sitting on a table next to the bottle of beer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382309.jpg', 'caption': 'Small sample of food with bear nearby on napkin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382309.jpg', 'caption': 'A meal on a napkin with an alcoholic drink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382309.jpg', 'caption': 'A plate with food next to a bottle of booze.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382309.jpg', 'caption': 'Food on a paper towel with a beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458781.jpg', 'caption': 'A cell phone on top of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458781.jpg', 'caption': 'a cell phone sitting on a laptop in front of a television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458781.jpg', 'caption': 'A cell phone sitting on a laptop in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458781.jpg', 'caption': 'THERE IS A TV IN THE LIVING ROOM AND A LAP TOP ON THE DESK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458781.jpg', 'caption': 'A TV siting inside of a wooden stand in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242909.jpg', 'caption': 'A pizza sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242909.jpg', 'caption': 'a big pizza that is laying on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242909.jpg', 'caption': 'A pizza is topped with many different ingredients.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242909.jpg', 'caption': 'A whole round shaped pizza with cheese and other toppings that is cut into slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242909.jpg', 'caption': 'A deep dish pizza is shown with cheese and meat toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253665.jpg', 'caption': 'A cat in a living room with a burning fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253665.jpg', 'caption': 'A cat standing on a table in front of the fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253665.jpg', 'caption': 'A cat standing on a table in front of a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253665.jpg', 'caption': 'a gray cat is walking on a glass table and theres a fire in the fireplace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253665.jpg', 'caption': 'A fire is going in the living room with a cat on the coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448897.jpg', 'caption': 'A pizza sitting on top of a white plate on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448897.jpg', 'caption': 'A pizza topped with tomatoes and basil leafs and a glass of cola on a picnic table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448897.jpg', 'caption': 'A tomato and mozzarella pizza sits on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448897.jpg', 'caption': 'A personal pizza is resting on a plate on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448897.jpg', 'caption': 'a pizza on a white plate on a wooden table and a drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127129.jpg', 'caption': 'A table full of food and two glasses with drinks .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127129.jpg', 'caption': 'A wooden table with a white plate containing a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127129.jpg', 'caption': 'A pizza is served on a plate with silverware.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127129.jpg', 'caption': 'Pizza with cheese and greens with drinks on table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127129.jpg', 'caption': 'A meal of gourmet pizzas and beer at a restaurant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421286.jpg', 'caption': 'a plate with cut slices of pizza and peppeoni', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421286.jpg', 'caption': 'A plate that has two pieces of bread with a fork and knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421286.jpg', 'caption': 'some pieces of pizza on a plate with a fork', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421286.jpg', 'caption': 'A plate with two pieces of pizza on top of it near a knife and fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421286.jpg', 'caption': 'A plate of food sitting on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054252.jpg', 'caption': 'A dirty laptop turned off on a wood table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054252.jpg', 'caption': 'Picture of a laptop sitting next to a box for a MacBook Pro', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054252.jpg', 'caption': 'A laptop box sitting next to a laptop on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054252.jpg', 'caption': 'An old MacBook laptop sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054252.jpg', 'caption': 'A open laptop is on the table next to a box. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120199.jpg', 'caption': 'A freshly made pizza is on an oven rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120199.jpg', 'caption': 'A pizza that is sitting on a grate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120199.jpg', 'caption': 'A pizza with peppers is sitting on a rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120199.jpg', 'caption': 'A large cooked pizza on a metal rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120199.jpg', 'caption': 'A mushroom, pepperoni, pepper pizza on a cooling rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176060.jpg', 'caption': 'Three pieces of sliced pizza on a wooden surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176060.jpg', 'caption': 'Some home baked pizza slices are ready to eat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176060.jpg', 'caption': 'There pieces of pizzas have pepperoni on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176060.jpg', 'caption': 'Pieces of thing crust pizza laying on a wood surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176060.jpg', 'caption': 'Three slices of pizza sitting on top of a wooden cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226959.jpg', 'caption': 'a woman jumping in the air so she can hit a tennis ball with her racket ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226959.jpg', 'caption': 'A women who is playing tennis jumping in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226959.jpg', 'caption': 'A woman holding a tennis racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226959.jpg', 'caption': 'a lady playing tennis and others watching the game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226959.jpg', 'caption': 'THERE IS A WOMAN THAT IS PLAYING TENNIS ON THE COURT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356660.jpg', 'caption': 'a man on a tennis court swinging a racket towards a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356660.jpg', 'caption': 'A tennis player reaching with his tennis racket at the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356660.jpg', 'caption': 'Professional tennis player about to make contact with the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356660.jpg', 'caption': 'A person that is playing in a tennis game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356660.jpg', 'caption': 'The tennis player is going to return the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216303.jpg', 'caption': 'A pretty young lady walking across a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216303.jpg', 'caption': 'a girl is about to hit the tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216303.jpg', 'caption': 'a woman is holding a tennis racket on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216303.jpg', 'caption': 'a woman standing at a tennis court with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216303.jpg', 'caption': 'a woman playing tennis walks forwards in a skirt while holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427245.jpg', 'caption': 'A couple of women sitting at a table next to drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427245.jpg', 'caption': 'A pizza is sitting on a tray and two people are in the background eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427245.jpg', 'caption': 'A gourmet pizza served at a restaurant on a silver platter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427245.jpg', 'caption': 'A pizza on a fancy pedestal at a restaurant with two women at a table in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427245.jpg', 'caption': 'Pizza served at an Italian restaurant, with patrons in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573853.jpg', 'caption': 'A pizza with thick crust sitting on top of a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573853.jpg', 'caption': 'A deep dish vegetable pizza on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573853.jpg', 'caption': 'A puffy pizza is on a metal plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573853.jpg', 'caption': 'a small pizza in a restaurant with a bunch of vegetables on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573853.jpg', 'caption': 'A freshly baked tomato and pesto pizza at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154193.jpg', 'caption': 'A woman sitting at a table with a pizza in front of her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154193.jpg', 'caption': 'a person sitting at a table with a plate of pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154193.jpg', 'caption': 'A women who has a plate with pizza on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154193.jpg', 'caption': 'A woman that is sitting in front of a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154193.jpg', 'caption': 'a couple of large pizzas that are on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097048.jpg', 'caption': 'Athlete on red clay court preparing to return ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097048.jpg', 'caption': 'The tennis court seems to be made of dirt or clay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097048.jpg', 'caption': 'A distant shot of a man on the tennis field while people look on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097048.jpg', 'caption': 'A tennis player takes a swing on a clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097048.jpg', 'caption': 'A man in white shirt and shorts playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441701.jpg', 'caption': 'a man is on a court playing tennis ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441701.jpg', 'caption': 'A tennis player about to hit a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441701.jpg', 'caption': 'A red shirted tennis player tosses the ball to serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441701.jpg', 'caption': 'A man standing on top of a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441701.jpg', 'caption': 'A professional tennis player engaged in competition on a clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333440.jpg', 'caption': 'A lady in a pink outfit finishing a tennis shot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333440.jpg', 'caption': 'Woman hitting a tennis ball in a tennis court next to some bleachers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333440.jpg', 'caption': 'a woman in pink is playing a tennis game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333440.jpg', 'caption': 'A young woman standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333440.jpg', 'caption': 'The tennis player is returning a strong serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203102.jpg', 'caption': 'a woman on a tennis court playing tennis ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203102.jpg', 'caption': 'A woman standing on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203102.jpg', 'caption': 'Female tennis player engaged in a match on a clay surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203102.jpg', 'caption': 'A woman playing a tennis match with a crowd watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203102.jpg', 'caption': 'A large crowd are in the stands watching a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573647.jpg', 'caption': 'A woman standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573647.jpg', 'caption': 'A female tennis player wearing red and preparing to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573647.jpg', 'caption': 'A tennis player getting ready to hit a ball on a clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573647.jpg', 'caption': 'A woman that is playing tennis on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573647.jpg', 'caption': 'A woman on a tennis court is hitting a ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167647.jpg', 'caption': 'A medium sized pizza on a platter with about half of it gone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167647.jpg', 'caption': 'A pizza sits on a pan on the counter and has been cut in slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167647.jpg', 'caption': 'Pizza that has been cooked is on a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167647.jpg', 'caption': 'A half eaten pizza sits on a silver pizza tin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167647.jpg', 'caption': 'Slices of pizza sit on a baking pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416335.jpg', 'caption': 'Multiple pizzas sitting on top of a wooden counter next to a crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416335.jpg', 'caption': 'A counter with several pizzas and food items with people walking by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416335.jpg', 'caption': 'A line up of pizzas for sale at a festival.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416335.jpg', 'caption': 'Numerous pizzas are on display on a counter as people walk by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416335.jpg', 'caption': 'many pans of pizza on a table being displayed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075636.jpg', 'caption': 'A pizza and a salad are sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075636.jpg', 'caption': 'A pizza sitting next to a bowl of salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075636.jpg', 'caption': 'A meal consists of pizza and a salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075636.jpg', 'caption': 'A home made pizza next to a bowl of salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075636.jpg', 'caption': 'A picture of a salad and pizza being served. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567562.jpg', 'caption': 'a family that is eating at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567562.jpg', 'caption': 'A lady sitting at a table eating with two small children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567562.jpg', 'caption': 'Two little girls and a woman sitting at a table preparing to eat some pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567562.jpg', 'caption': 'A woman and two children sitting at a table with full table of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567562.jpg', 'caption': 'A woman and two children sitting at a table eating pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577893.jpg', 'caption': 'Man playing tennis with tennis racket on court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577893.jpg', 'caption': 'A man on a court standing with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577893.jpg', 'caption': 'A man in glue shirt and white shorts playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577893.jpg', 'caption': 'A man with a racket stands on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577893.jpg', 'caption': 'A man playing tennis with his racket raised to receive the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002235.jpg', 'caption': 'A tennis player prepares to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002235.jpg', 'caption': 'A tennis player trying to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002235.jpg', 'caption': 'A tennis player has sweat on his chest as he plays. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002235.jpg', 'caption': 'a man on a tennis court holding a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002235.jpg', 'caption': 'A tennis player watches the ball as he prepares to serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221172.jpg', 'caption': 'A man in a blue shirt is playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221172.jpg', 'caption': 'Man running playing tennis with ball in air on court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221172.jpg', 'caption': 'A man playing tennis with his tennis racket and his tennis ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221172.jpg', 'caption': 'Male tennis player gets ready to hit the tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221172.jpg', 'caption': 'A male tennis player in action on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517855.jpg', 'caption': 'a tennis court that has a man with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517855.jpg', 'caption': 'a man with his arm in the air during a tennis match', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517855.jpg', 'caption': 'the tennis player prepares to serve the tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517855.jpg', 'caption': 'A man holding his hand in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517855.jpg', 'caption': 'This player has thrown the ball in the air to serve it to his opponent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530905.jpg', 'caption': 'A kitchen sink with hair clips, toothpaste and nail polish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530905.jpg', 'caption': 'a close up of a sink with hair pins tooth paste and brushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530905.jpg', 'caption': 'A bathroom sink covered in hair and hygiene products.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530905.jpg', 'caption': 'Several personal care items on a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530905.jpg', 'caption': 'a bathroom sink counter with toothpaste and toiletries on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426070.jpg', 'caption': 'a person sitting on a couch in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426070.jpg', 'caption': 'A man is on a couch with ripped jeans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426070.jpg', 'caption': 'A man in striped shirt sitting on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426070.jpg', 'caption': 'an image of a guy sitting on a couch with pink shirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426070.jpg', 'caption': 'A man on a couch wearing jeans with a big hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038892.jpg', 'caption': 'a little girl in front of a book shelf and chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038892.jpg', 'caption': 'A little girl holds something in her hand next to a Christmas stocking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038892.jpg', 'caption': 'a little girl with a christmas stocking and a toy ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038892.jpg', 'caption': 'A young girl in pajamas has a Christmas stocking on her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038892.jpg', 'caption': 'An adorable little girl holding a toothbrush and a Christmas stocking..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034524.jpg', 'caption': 'A bed is scattered with papers and a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034524.jpg', 'caption': 'Multiple documents sit on top of a bed next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034524.jpg', 'caption': 'Several papers are scattered on top of a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034524.jpg', 'caption': 'A bunch of papers scattered on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034524.jpg', 'caption': 'A lot of papers on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565326.jpg', 'caption': 'YOUNG CHILD HOLDING A BABY HAIRBRUSH TO HER MOUTH', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565326.jpg', 'caption': 'a small child is holding a yellow toothbrush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565326.jpg', 'caption': 'A young boy putting a brush in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565326.jpg', 'caption': 'A young baby chewing on a yellow hair brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565326.jpg', 'caption': 'A baby chews on a yellow hairbrush while sitting on a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355272.jpg', 'caption': 'A young boy sitting on a rug holding a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355272.jpg', 'caption': 'A toddler boy sitting and looking into the camera, holding a remote control in both hands up to cheek, on a woven wool oval rug on a wood floor with toys and furniture around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355272.jpg', 'caption': 'A little boy using a remote control and sitting on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355272.jpg', 'caption': 'A child holding a tv remote like a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355272.jpg', 'caption': 'A young boy holds a remote control to his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355228.jpg', 'caption': 'A small white mouse sleeping on top of a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355228.jpg', 'caption': 'White rodent laying its head on a black controller. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355228.jpg', 'caption': 'A white ferret laying its head on a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355228.jpg', 'caption': \"A ferret lays it's head down on a remote control.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355228.jpg', 'caption': 'White ferret under a blanket resting its head on a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070351.jpg', 'caption': 'A package of tooth brush shaped gum on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070351.jpg', 'caption': 'There are tooth brush and gum like candies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070351.jpg', 'caption': 'Candy shaped like teeth and toothbrushes sit on the empty package.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070351.jpg', 'caption': 'Some gummy teeth and gummy toothbrushes on a wrapper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070351.jpg', 'caption': 'This is a kind of weird and fun candy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298622.jpg', 'caption': 'An old radio with a computer keyboard and mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298622.jpg', 'caption': 'A radio and a keyboard on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298622.jpg', 'caption': 'Electronic equipment including a keyboard on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298622.jpg', 'caption': 'A keyboard and a mouse with a machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298622.jpg', 'caption': 'A keyboard and mouse in front of a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501429.jpg', 'caption': 'The baby sits on the furniture holding a toothbrush in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501429.jpg', 'caption': 'The young baby is sticking a tooth brush in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501429.jpg', 'caption': 'A baby is sticking a toothbrush in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501429.jpg', 'caption': 'A baby playing with a white toothbrush in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501429.jpg', 'caption': 'A baby boy has a toothbrush in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107656.jpg', 'caption': 'A living room with a black couch sitting next to a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107656.jpg', 'caption': 'A black couch and a coffee table on light carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107656.jpg', 'caption': 'A black couch is the centerpiece of a living room set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107656.jpg', 'caption': 'a living room wit ha couch a table and shelves\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107656.jpg', 'caption': 'A living room with a couch that has a dog on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044220.jpg', 'caption': 'A couple of people standing in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044220.jpg', 'caption': 'there is a boy and a woman that are playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044220.jpg', 'caption': 'Two people are mimicking the position of a figure on a computer monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044220.jpg', 'caption': 'A boy and a female playing a video game while standing up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044220.jpg', 'caption': 'two people playing a dancing game in a living room ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068155.jpg', 'caption': 'A woman standing in front of a TV in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068155.jpg', 'caption': 'A young woman and her brother in the living room with video games', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068155.jpg', 'caption': 'Two people playing a video game in their living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068155.jpg', 'caption': 'A girl and boy dance to a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068155.jpg', 'caption': 'Two people in font of a television play a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341118.jpg', 'caption': 'A person is on a living room couch watching TV and there is a stuffed panda bear and a purse on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341118.jpg', 'caption': 'A child watches television while a panda bear sits by a purse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341118.jpg', 'caption': 'A simple living room with a panda on the coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341118.jpg', 'caption': 'A black and white stuffed koala bear is in the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341118.jpg', 'caption': 'A stuffed panda is on the living room table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335153.jpg', 'caption': 'A couple of people standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335153.jpg', 'caption': 'a kid and a lady playing video game in the house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335153.jpg', 'caption': 'a couple of people are standing in the middle of a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335153.jpg', 'caption': 'Two people standing up beside each other while one holds a controller to a Wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335153.jpg', 'caption': 'A young boy and a woman standing besides each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004092.jpg', 'caption': 'The woman holding the video game remote looks shocked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004092.jpg', 'caption': 'A woman playing a game with some remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004092.jpg', 'caption': 'A woman standing in a room with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004092.jpg', 'caption': \"A portrait of a woman's funny face while playing a Wii.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004092.jpg', 'caption': 'Person standing while holding video game remotes in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512182.jpg', 'caption': 'a young boy playing with a wii mote and a video game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512182.jpg', 'caption': 'A kid plays video games on a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512182.jpg', 'caption': 'a little boy playing video bowling on a television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512182.jpg', 'caption': 'A little kid standing in front of a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512182.jpg', 'caption': 'a small child in a green shirt is playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289172.jpg', 'caption': 'There are woman playing a video game together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289172.jpg', 'caption': 'Two women in a living room playing the Wii together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289172.jpg', 'caption': 'a couple of kids play a video game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289172.jpg', 'caption': 'Two woman playing a game with the Wii controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289172.jpg', 'caption': 'A group of people are playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476455.jpg', 'caption': 'Two young men standing in front of a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476455.jpg', 'caption': 'Two gentleman playing video games on the tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476455.jpg', 'caption': 'Two men play a video game while posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476455.jpg', 'caption': 'Man gives a thumbs up while holding a controller in front of a television. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476455.jpg', 'caption': 'A couple of men playing a game with remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578130.jpg', 'caption': 'A room cluttered with old furniture and old rugs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578130.jpg', 'caption': 'A bunch of different couches and chairs that are on a carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578130.jpg', 'caption': 'An open living room has a wicker rocking chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578130.jpg', 'caption': 'this is a living room with furniture and rugs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578130.jpg', 'caption': 'Living room full of different vintage furniture and television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243134.jpg', 'caption': 'A living room with two couches and several chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243134.jpg', 'caption': 'A living room is shown with vintage furniture in front of a red brick fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243134.jpg', 'caption': 'A nice big living room with a big fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243134.jpg', 'caption': 'A living room with a lot of chairs and couches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243134.jpg', 'caption': ' a living room with lot of chairs and couches in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007320.jpg', 'caption': 'A Wii controller facing a TV with a video game on the channel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007320.jpg', 'caption': 'a hand holding a controller and a television set on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007320.jpg', 'caption': 'A television with a wii remote in the front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007320.jpg', 'caption': 'A person holding a wii remote near a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007320.jpg', 'caption': 'Someone playing a videogame on a medium sized television. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307323.jpg', 'caption': 'A living room/dining room where a family would sit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307323.jpg', 'caption': 'A wood dining table with two blue chairs and two white chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307323.jpg', 'caption': 'A wooden kitchen table with white and blue chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307323.jpg', 'caption': 'A living area with a table and chairs and various art.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307323.jpg', 'caption': 'A dining room that has a table and chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336600.jpg', 'caption': 'A close up of hands holding a video game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336600.jpg', 'caption': 'a person with two nintendo wii controllers in their hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336600.jpg', 'caption': 'Two hands holding two white Nintendo Wii controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336600.jpg', 'caption': 'A person holding a video game remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336600.jpg', 'caption': 'A man holds a Wii remote with a nun-chuck attachment. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435321.jpg', 'caption': 'A woman standing in a living room holding a Wii game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435321.jpg', 'caption': 'A woman is playing a Wii in a living room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435321.jpg', 'caption': 'A woman stands in a living room playing an interactive video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435321.jpg', 'caption': 'A woman plays a video game in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435321.jpg', 'caption': 'A woman standing in front of a tv holding a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207275.jpg', 'caption': 'A man holding a Nintendo Wii game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207275.jpg', 'caption': 'A man holding remotes playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207275.jpg', 'caption': 'A man playing a WII video game in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207275.jpg', 'caption': 'A man with glasses playing with a Nintendo Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207275.jpg', 'caption': 'A bald man in a red shirt and glasses holding a wii remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192651.jpg', 'caption': 'A nice living room with a television is pictured.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192651.jpg', 'caption': 'in this living room there are beige couches and a fire place', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192651.jpg', 'caption': 'A living room with a fireplace, TV, couch and other furniture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192651.jpg', 'caption': 'A living room, with a laptop on the couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192651.jpg', 'caption': 'A living room with a tv, couch, coffee table, and fake tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291245.jpg', 'caption': 'A computer keyboard sitting next to a computer mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291245.jpg', 'caption': 'a keyboard sitting on a tiled floor next to a mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291245.jpg', 'caption': 'A keyboard sitting on a table with a computer mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291245.jpg', 'caption': 'A computer mouse is in front of a keyboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291245.jpg', 'caption': 'a white mouse a keyboard some books and cords', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483525.jpg', 'caption': 'The photographer used a panoramic view for this photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483525.jpg', 'caption': 'Big living room with couches, TV, fireplace, and shelving.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483525.jpg', 'caption': 'There are multiple pieces of furniture in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483525.jpg', 'caption': 'A panoramic photo is shown of a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483525.jpg', 'caption': 'a living room a fire place a tv and a shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090365.jpg', 'caption': 'The image is a closeup of a computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090365.jpg', 'caption': 'A close shot of a computer keyboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090365.jpg', 'caption': 'A keyboard is shown up close to the keys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090365.jpg', 'caption': 'White keyboard with large clean letters on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090365.jpg', 'caption': 'a close up of a white keyboard with a black monitor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436963.jpg', 'caption': 'A keyboard, mouse and monitor sit on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436963.jpg', 'caption': 'A office desk with a computer and papers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436963.jpg', 'caption': 'A computer and keyboard sitting on a desk with other accessories. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436963.jpg', 'caption': 'An office with a brown desk has clutter on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436963.jpg', 'caption': 'THERE IS A JUNKY DESK WITH A COMPUTER IN A HOME OFFICE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241355.jpg', 'caption': 'A woman is sitting on the rock bench talking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241355.jpg', 'caption': 'A woman in a striped skirt is sitting on rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241355.jpg', 'caption': 'A woman is sitting on a stone bench by a statue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241355.jpg', 'caption': 'A person that is sitting down on some rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241355.jpg', 'caption': 'A women who is sitting on some rocks on her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291724.jpg', 'caption': 'A lot of people that are looking at something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291724.jpg', 'caption': 'A crowd of people standing next to each other holding up a Nintendo cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291724.jpg', 'caption': 'The people hold their phone up and make hand motions at the event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291724.jpg', 'caption': 'Someone is using their phone as a light at a concert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291724.jpg', 'caption': 'Several young people are enjoying a concert and recording via phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448259.jpg', 'caption': 'A man is sitting beside a walk way with a beverage beside him looking at his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448259.jpg', 'caption': 'A man checks his smart phone while sitting at an outside table on a city street one night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448259.jpg', 'caption': 'A man looks at his cell phone while sitting outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448259.jpg', 'caption': 'A man sitting at an outdoor table checking his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448259.jpg', 'caption': 'Person sitting on a bench on the sidewalk looking at his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150639.jpg', 'caption': 'A man sits in a car while on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150639.jpg', 'caption': 'a male with a red jacket is holding a red phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150639.jpg', 'caption': 'Man with glasses talking on cell phone in car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150639.jpg', 'caption': 'A man on a red phone while in a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150639.jpg', 'caption': 'A man with glasses is talking on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456942.jpg', 'caption': 'A laptop, a flip phone, and a radio sit next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456942.jpg', 'caption': 'A radio, laptop computer and cell phone sit next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456942.jpg', 'caption': 'A table with a radio, cell phone and laptop on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456942.jpg', 'caption': 'Laptop computer, radio, and cell phone on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456942.jpg', 'caption': 'A computer is next to a radio and a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024601.jpg', 'caption': 'A woman holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024601.jpg', 'caption': 'A woman swings her hand out to hit a ball as people are staring in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024601.jpg', 'caption': 'A female tennis player preparing to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024601.jpg', 'caption': 'a woman getting ready to hit a tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024601.jpg', 'caption': 'A woman throws a tennis ball into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301011.jpg', 'caption': 'Man standing getting ready to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301011.jpg', 'caption': 'A large crowd watches a tennis player while he serves a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301011.jpg', 'caption': 'A tennis player stands on the court holding a racket and ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301011.jpg', 'caption': 'A man dressed in a white shirt and black shorts with a tennis racket and ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301011.jpg', 'caption': 'A male tennis player prepares to serve on a clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408327.jpg', 'caption': 'A women with a tennis racquet in one hand and a towel in the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408327.jpg', 'caption': 'A woman is holding a tennis racket and a towel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408327.jpg', 'caption': 'The woman in pink is holding her tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408327.jpg', 'caption': 'A yoing woman is standing on a tennis court holding a towel and racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408327.jpg', 'caption': 'A woman in a tennis outfit walks on a court holding a towel and a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138180.jpg', 'caption': 'A woman on a tennis court holding a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138180.jpg', 'caption': 'A woman waiting for a tennis ball that hit the net.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138180.jpg', 'caption': 'A woman holding a tennis racquet on a purple tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138180.jpg', 'caption': 'A woman playing tennis on a hard surface court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138180.jpg', 'caption': 'A woman serving the tennis ball across the net.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337899.jpg', 'caption': 'Flag post out front of large official government building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337899.jpg', 'caption': 'A flagpole with the flag of Texas flying at the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337899.jpg', 'caption': 'Th flag is on the pole beside of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337899.jpg', 'caption': 'a flag pole sitting in front of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337899.jpg', 'caption': 'A flag on a white flag pole in front of a historic building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401971.jpg', 'caption': 'A computer chair at the desk with two computer monitors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401971.jpg', 'caption': 'Small desk chair sitting under a personal computer table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401971.jpg', 'caption': 'The desk has a lot of computer equipment on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401971.jpg', 'caption': 'A large desk with several computes beside a book shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401971.jpg', 'caption': 'Two computer screens are on a long desk .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075976.jpg', 'caption': 'A chandelier hanging from a ceiling over a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075976.jpg', 'caption': 'A very pretty light fixture above some nice flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075976.jpg', 'caption': 'A room with a chandelier and a table with a vase on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075976.jpg', 'caption': 'Vase with flowers make up the center piece for the table in front of the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075976.jpg', 'caption': 'A chandelier hanging above a table with a vase of flowers in front of a window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268484.jpg', 'caption': 'A crowd of people flying kites next to a city with tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268484.jpg', 'caption': 'Group of people outdoors flying a series of kites in a park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268484.jpg', 'caption': 'Group of people in a city park flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268484.jpg', 'caption': 'A crowd of people with kites flying overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268484.jpg', 'caption': 'an image of a group of people outside for an event', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183416.jpg', 'caption': 'A peacock-shaped kite flying overhead in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183416.jpg', 'caption': 'A multicolored blue bird flying in the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183416.jpg', 'caption': 'A blue bird shaped kite flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183416.jpg', 'caption': 'A blue peacock in a cloudless sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183416.jpg', 'caption': 'A kite shaped like a bird is flying high in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137271.jpg', 'caption': 'A color kite flying over a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137271.jpg', 'caption': 'A kite flying in the air above the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137271.jpg', 'caption': 'A group of people on the beach flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137271.jpg', 'caption': 'People flying kites on the beach with boats in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137271.jpg', 'caption': 'A kite flies over a small group of people by the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369533.jpg', 'caption': 'Light breaks through a cloudy day at the pier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369533.jpg', 'caption': 'a landscape of water, cloudy sky and a ray of sun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369533.jpg', 'caption': 'A kite is flying over a waterway and under a dark sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369533.jpg', 'caption': 'Sun rays breaking through an overcast sky over a beach pier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369533.jpg', 'caption': 'A photo of a jetty and a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431067.jpg', 'caption': 'The lounge chairs are waiting for the kite fliers to finish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431067.jpg', 'caption': 'A red kite sails high in the sky above a grassy green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431067.jpg', 'caption': 'Adults flying kite in grassy area with lawn chairs.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000416184.jpg', 'caption': 'A sink sits in a public bathroom with bright orange tile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416184.jpg', 'caption': 'A public restroom with focus on the sink and towel dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416184.jpg', 'caption': 'A bathroom has gold tile and a silver box on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317639.jpg', 'caption': 'A woman is taking a picture of herself in a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317639.jpg', 'caption': 'A double sinked bathroom has circular twig wreaths hanging above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317639.jpg', 'caption': 'The two wreaths were each hung above a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317639.jpg', 'caption': 'A woman taking a selfie in a bathroom with a digital camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317639.jpg', 'caption': 'Two wreaths above two sinks in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156324.jpg', 'caption': 'A woman takes a selfie in front of a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156324.jpg', 'caption': 'Woman taking picture of self in bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156324.jpg', 'caption': 'A women is taking a picture of herself and her bathroom in the bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156324.jpg', 'caption': 'A woman is taking a picture of herself in a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156324.jpg', 'caption': 'A woman stands in front of the mirror to take a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325356.jpg', 'caption': 'A tiger cat sitting in a bathroom sink next to a tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325356.jpg', 'caption': 'A cat is sitting in a sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325356.jpg', 'caption': 'a close up of a catt in a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325356.jpg', 'caption': 'a little cat sitting in a bathroom sink and looking at the camera ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325356.jpg', 'caption': 'Young calico cat hides out inside the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137490.jpg', 'caption': 'A small bird sitting on the handle of a car door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137490.jpg', 'caption': 'A BIRD PERCHED ON THE CAR DOOR HANDLE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137490.jpg', 'caption': 'A brown bird resting on the handle of a black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137490.jpg', 'caption': 'Close up of passenger door of car exterior with dove on handle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137490.jpg', 'caption': 'A pigeon perched on a car door handle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068878.jpg', 'caption': 'A cat that is sitting on the hood of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068878.jpg', 'caption': 'a cat sitting on the hood of a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068878.jpg', 'caption': 'A grey cat sitting on the hood of black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068878.jpg', 'caption': 'Tabby cat sitting on the hood of a blue car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068878.jpg', 'caption': 'a cat that is parked on a purple car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225014.jpg', 'caption': 'A person in a costume on the back of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225014.jpg', 'caption': 'A person in a bear costume is riding in the back of a red car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225014.jpg', 'caption': 'Large brown teddy bear sitting on the back of a red sports car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225014.jpg', 'caption': 'a huge teddy bear riding in a red sports car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225014.jpg', 'caption': 'A large bear mascot is riding in a red Pontiac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274773.jpg', 'caption': 'there are many bikes parked outside a pizzeria ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274773.jpg', 'caption': 'A blue van is parked next to several motorcycles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274773.jpg', 'caption': 'A car and some motor bikes parked on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274773.jpg', 'caption': 'Several bikes and a car sitting in front of a store front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274773.jpg', 'caption': 'Empty building with mopeds in front, all bearing the same phone number.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071345.jpg', 'caption': 'two trains go side by side down a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071345.jpg', 'caption': 'Cars are traveling next to the parked trains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071345.jpg', 'caption': 'A highway filled with lots of traffic and two trains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071345.jpg', 'caption': 'Cars drive by a busy train depot during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071345.jpg', 'caption': 'two trains on tracks near a road with cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575946.jpg', 'caption': 'Small white toilet with spare rolls of toilet paper beside it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575946.jpg', 'caption': 'A toilet in a bathroom with some cleaning supplies on and around it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575946.jpg', 'caption': 'A birds eye view of a clean toilet with the lid up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575946.jpg', 'caption': 'A white toilet inside of a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575946.jpg', 'caption': 'A small white toilet sitting in a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145523.jpg', 'caption': 'A few items sit on top of a toilet in a bathroom stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145523.jpg', 'caption': 'A dirty toilet in a small bathroom.with items on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145523.jpg', 'caption': 'A toilet seat is left open inside of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145523.jpg', 'caption': 'A dirty toilet in a small cramped space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145523.jpg', 'caption': 'A photo of a toilet with items on the tank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290078.jpg', 'caption': 'A toilet sitting outside a building in an alley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290078.jpg', 'caption': 'A broken toilet sitting outside of a motel room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290078.jpg', 'caption': 'The toilet is set on the sidewalk near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290078.jpg', 'caption': 'A toilet sitting outside beside a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290078.jpg', 'caption': 'A white toilet on the side of a street by a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282658.jpg', 'caption': 'Two people going through belongings from the truck of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282658.jpg', 'caption': 'A group of people that are packing up some luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282658.jpg', 'caption': 'Two men look at things out of a car trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282658.jpg', 'caption': 'A man and woman looking through luggage in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282658.jpg', 'caption': 'A pair of people cleaning out the suitcases in their trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008267.jpg', 'caption': 'A small white toilet sitting in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008267.jpg', 'caption': 'The toilet in the small stall has the lit up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008267.jpg', 'caption': 'A porcelain toilet in a very small bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008267.jpg', 'caption': 'A white toilet surrounded by white tile in a small stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008267.jpg', 'caption': 'A European toilet with seat up and a cleaning brush on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256156.jpg', 'caption': 'A white toilet sitting in a bathroom next to a tile wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256156.jpg', 'caption': 'A public restroom stall with large gray tiles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256156.jpg', 'caption': 'a toilet sits in a tiled bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256156.jpg', 'caption': 'Bathroom commode with cleaning brush nearby in small tiled stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256156.jpg', 'caption': 'A white toilet in a very small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372495.jpg', 'caption': 'An odd bathroom with stone walls, and two rolls of toilet paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372495.jpg', 'caption': 'A bathroom with a toilet paper holder on each side of the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372495.jpg', 'caption': 'A toilet facility in a stone cell on a plank floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372495.jpg', 'caption': 'The receptacle is sitting in the middle of the unusual bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372495.jpg', 'caption': 'A white plastic toilet sitting between two toilet paper rollers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548201.jpg', 'caption': 'Toilet with soap and cleaners on tile with white walls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548201.jpg', 'caption': 'A bathroom toilet with an air freshener, brush and towel dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548201.jpg', 'caption': 'A toilet with its seat open in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548201.jpg', 'caption': 'this bathroom is small and has a white toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548201.jpg', 'caption': 'A clean white toilet that has its lid open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305464.jpg', 'caption': 'there is a large bucket and a small pot in this bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305464.jpg', 'caption': 'A bathroom has supplies in it for cleaning, but it is not clean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305464.jpg', 'caption': 'A bathroom floor with m any buckets and stripped walls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305464.jpg', 'caption': 'A bathroom with a toilet, sink and a blue bucket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305464.jpg', 'caption': 'A bucket is sitting on the floor of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155617.jpg', 'caption': 'A small bathroom with a checker board wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155617.jpg', 'caption': 'a bathroom with a toilet with tiled walls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155617.jpg', 'caption': 'a view of a toilet with the seat open from above', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155617.jpg', 'caption': 'The toilet space walls are tiled in black and white ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155617.jpg', 'caption': 'A black and white checkered bathroom with toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554900.jpg', 'caption': 'a close up of a toilet with tiled walls ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554900.jpg', 'caption': 'A white toilet in a stall with a scrubber', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554900.jpg', 'caption': 'a small white toiler in a public bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554900.jpg', 'caption': 'Looking down at a white toilet in a bathroom stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554900.jpg', 'caption': 'an overhead shot of a toilet in a narrow area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262514.jpg', 'caption': 'A display of a toilet and sink in a store. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262514.jpg', 'caption': 'Toilet and sink on display in a furniture store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262514.jpg', 'caption': 'A toilet with a sink on the back is displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262514.jpg', 'caption': 'A store filled with bathroom equipment and accessories.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262514.jpg', 'caption': 'a white toilet with a brown lid and a sink behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022963.jpg', 'caption': 'A white toilet in a white tiled bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022963.jpg', 'caption': 'A simple bathroom with a toilet and two rolls of toilet paper. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022963.jpg', 'caption': 'Simple tiled bathroom with yellow door and commode.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022963.jpg', 'caption': 'White bathroom with door and white toilet on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022963.jpg', 'caption': 'A tiled restroom has a toilet and toilet paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302185.jpg', 'caption': 'There is s toilet scrubber next to the toilet in the stall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302185.jpg', 'caption': 'A bathroom with a white toilet with a tiled floor and wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302185.jpg', 'caption': 'A toilet sits in the stall of a public restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302185.jpg', 'caption': 'A white toilet sitting inside of a tiled stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302185.jpg', 'caption': 'A toilet with its lid raised in a stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294763.jpg', 'caption': 'a close up of a toilet in a bath room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294763.jpg', 'caption': 'A toilet that is sitting in tile on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294763.jpg', 'caption': 'The bathroom toilet is clean and ready for customers to use. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294763.jpg', 'caption': 'A bathroom toilet with a bowl brush and a dispenser above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294763.jpg', 'caption': 'a bathroom with one toilet next to a toilet bowl cleaner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561620.jpg', 'caption': 'Light from an open door shines on a simple wooden pew in a church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561620.jpg', 'caption': 'Light shining onto the pews of a church through an open door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561620.jpg', 'caption': 'A church has pews with the sun shining in on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561620.jpg', 'caption': 'church doors open and lights peers through on chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561620.jpg', 'caption': 'Sun shining through to a pew in a church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280972.jpg', 'caption': 'A foot pushing a flush button in a blue tiled bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280972.jpg', 'caption': 'the person is using there foot to flush the toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280972.jpg', 'caption': 'A person is using their foot to flush the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280972.jpg', 'caption': 'a foot is flushing a toilet in a blue bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280972.jpg', 'caption': 'A person standing next to a metal urinal in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370444.jpg', 'caption': 'The bathroom has a blue trash can on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370444.jpg', 'caption': 'a room that has a toilet in the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370444.jpg', 'caption': 'A bathroom urinal is place on a gray tiled floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370444.jpg', 'caption': 'A floor urinal with a flushing system in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370444.jpg', 'caption': 'A public restroom with a urinal installed in the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103757.jpg', 'caption': 'A cat on a toilet seat of some sort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103757.jpg', 'caption': 'a little cat with a blue collar standing on a toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103757.jpg', 'caption': 'A small cat sitting on top of a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103757.jpg', 'caption': 'The cat looks down intently from the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103757.jpg', 'caption': 'A cat perched on a toilet seat looking down at the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245659.jpg', 'caption': 'A small bathroom with a toilet, trash can and toilet brush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245659.jpg', 'caption': 'There is a toilet with a toilet brush beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245659.jpg', 'caption': 'A white toilet sitting next to a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245659.jpg', 'caption': 'Toilet without a toilet seat in a cement room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245659.jpg', 'caption': 'a toilet in a brick bathroom stall with red clay floors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451412.jpg', 'caption': 'A child is flushing the commode as an adult stands near.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451412.jpg', 'caption': 'Older person reaches over while little girl goes to flush toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451412.jpg', 'caption': 'A small child looking down at the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451412.jpg', 'caption': 'The girl is using the toilet in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451412.jpg', 'caption': 'A child and an adult in a room with a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489624.jpg', 'caption': 'A white toilet in a very small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489624.jpg', 'caption': 'A picture of a toilet taken from above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489624.jpg', 'caption': 'A toilet with the lid opened placed beside a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489624.jpg', 'caption': 'A smaller, yet clean toilet, is sitting idly. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489624.jpg', 'caption': 'Toilet with seat lid up in brown tiled bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507879.jpg', 'caption': 'A dark picture of a toilet with a small roll of toilet paper on the back of the tank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507879.jpg', 'caption': 'A toilet that appears to be dirty and out of toilet paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507879.jpg', 'caption': 'A red light is glaring over the toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507879.jpg', 'caption': 'This bathroom has a red light on and its toilet lid is up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507879.jpg', 'caption': 'Top down view of a toilet with a scrubbing brush holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578314.jpg', 'caption': 'Public toilet with the lid up and a garbage can nearby. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578314.jpg', 'caption': 'A toilet is seen from above with the lid up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578314.jpg', 'caption': 'A white toilet in a bathroom next to a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578314.jpg', 'caption': 'a small public bathroom with the seat up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578314.jpg', 'caption': 'A toilet is shown with the lid up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253223.jpg', 'caption': 'a building with two towers and an air plane in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253223.jpg', 'caption': 'A jet airliner in flight over a religious structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253223.jpg', 'caption': 'A plane flying high over a historically built building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253223.jpg', 'caption': 'a view of an old building with a plane flying in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253223.jpg', 'caption': 'The upper portion of an ornate stone church, with an airplane flying overhead', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568502.jpg', 'caption': 'A man smiling near the seat of a toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568502.jpg', 'caption': 'A young man presenting how a bidet works.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568502.jpg', 'caption': 'Young man smiling and displaying a toilet with the seat removed and a water fountain installed on the rim. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568502.jpg', 'caption': 'a person drinking water from a toilet fountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568502.jpg', 'caption': 'omg a drinking fountain installed on a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110783.jpg', 'caption': 'a small little bathroom with a toilet in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110783.jpg', 'caption': 'A white toilet in a generic public bathroom stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110783.jpg', 'caption': 'Modern commode in small all white and tiled water closet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110783.jpg', 'caption': 'a photo of white toilet in a bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110783.jpg', 'caption': 'THIS IS A PHOTO LOOKING DOWN ON A TOILET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355575.jpg', 'caption': 'the hands of a man crawling out of a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355575.jpg', 'caption': 'A toilet with a seat open and some hands on the rim', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355575.jpg', 'caption': 'a toilet fixed so it looks like hands coming out of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355575.jpg', 'caption': 'A woman climbing out of a toilet with her hands on the rim of the bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355575.jpg', 'caption': 'A gag of the camera person of someone climbing there way out of the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191301.jpg', 'caption': 'there is a chocolate cake and ice cream on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191301.jpg', 'caption': 'Dessert for two is placed on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191301.jpg', 'caption': 'a cake and two spoons on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191301.jpg', 'caption': 'THERE IS A PLATE WITH SWEET DESSERTS ON THE PLATE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191301.jpg', 'caption': 'Some cakes are on a white plate with spoons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131504.jpg', 'caption': 'A BRICK TOWER WITH A BIG CLOCK IN THE MIDDLE OF IT.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131504.jpg', 'caption': 'A large building with a metal clock on the front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131504.jpg', 'caption': 'A clock is shown on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131504.jpg', 'caption': 'A church steeple clock with roman numerals set at 1:00. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131504.jpg', 'caption': 'A clock set onto the face of an old stone building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134483.jpg', 'caption': 'A white toilet with a black seat in a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134483.jpg', 'caption': 'A toilet with a black seat, with a pack of toilet paper on the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134483.jpg', 'caption': 'A full view of a dirty restroom that needs some cleaning.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134483.jpg', 'caption': 'A toilet with a case of toilet paper on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134483.jpg', 'caption': 'VERY SMALL BATHROOM WITH ONLY A TOILET AND LARGE BUNDLE OF TOILET PAPER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552901.jpg', 'caption': 'The bathroom in the cabin needs to be remodeled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552901.jpg', 'caption': 'A BATHROOM THAT IS IN SERIOUS NEED OF A REMODEL', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552901.jpg', 'caption': 'A corner of a rest room with a toilet in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552901.jpg', 'caption': 'The bathroom has a shower and a toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552901.jpg', 'caption': 'A toilet in a very basic bathroom with an open shower next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314328.jpg', 'caption': 'A clean white toilet in a stall with a chrome toilet brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314328.jpg', 'caption': 'a white toilet with its lid open in a stall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314328.jpg', 'caption': 'A toilet in stall with a changing table over it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314328.jpg', 'caption': 'A restroom with a white toilet next to a metallic object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314328.jpg', 'caption': 'A white toilet in a public washroom that looks very clean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512463.jpg', 'caption': 'a plastic toilet in a small bathroom stall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512463.jpg', 'caption': 'A toilet that has its seat up and water inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512463.jpg', 'caption': 'Toilet with the lid up and a device on the wall above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512463.jpg', 'caption': 'Looking down at an open toilet bowl in a small but clean restroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512463.jpg', 'caption': 'A white toilet sitting inside of a bathroom stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242679.jpg', 'caption': 'A seat under a mirror onboard a train, next to a cluttered counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242679.jpg', 'caption': 'A seat on a train is shown by the trash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242679.jpg', 'caption': 'No one is sitting on that see inside of the train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242679.jpg', 'caption': 'A picture of a gray seat on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242679.jpg', 'caption': 'A seat sitting next to a window on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024845.jpg', 'caption': 'A bathroom with tan walls and fake tiled flooring. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024845.jpg', 'caption': 'A beige and white bathroom with white toilet and honey colored hardwood vanity', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024845.jpg', 'caption': 'A bathroom has two sinks and a toilet in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024845.jpg', 'caption': 'The toilet and sinks are separated by a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024845.jpg', 'caption': 'The bathroom has a toilet and a double sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050443.jpg', 'caption': 'A filthy sink and toilet are seen from above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050443.jpg', 'caption': 'A toilet with a wooden cover, and a dirty sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050443.jpg', 'caption': 'The sink next to the small toilet is very dirty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050443.jpg', 'caption': 'An extremely dirty sink and toilet in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050443.jpg', 'caption': 'A toilet has the lid down by a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179611.jpg', 'caption': 'A toilet sitting in a bathroom on top of a tiled floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179611.jpg', 'caption': 'A NARROW HALLWAY WITH A TOILET IN THE BATHROOM', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179611.jpg', 'caption': 'A bathroom viewed from far away with a diamond black floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179611.jpg', 'caption': 'a white and black bathroom a cupboard and a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179611.jpg', 'caption': 'a picture of a bathroom and its toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202748.jpg', 'caption': 'The black and white toilet is opened in the narrow bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202748.jpg', 'caption': 'A white toilet with a black seat sitting in a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202748.jpg', 'caption': 'A white toilet with a black seat sits next to the shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202748.jpg', 'caption': 'A porcelain toilet with toilet lid and seat covered in black.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202748.jpg', 'caption': 'A clean toilet with black toilet seat and tiled black walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167700.jpg', 'caption': 'a silver toilet and some toilet paper and a green switch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167700.jpg', 'caption': 'A metal toilet and some tissue in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167700.jpg', 'caption': 'A stainless steel toilet in a small bathroom area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167700.jpg', 'caption': 'A bathroom with a metal toilet and a toilet paper dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167700.jpg', 'caption': 'A chrome metal toilet inside a small bathroom stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132861.jpg', 'caption': \"A large church tower with a clock mounted on each of it's sides.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132861.jpg', 'caption': 'Building steeple with clocks under the top windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132861.jpg', 'caption': 'BEAUTIFUL CATHEDRAL WITH TALL SPIRE REACHING TO THE SKY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132861.jpg', 'caption': 'An old, brown brick building hosts a tower and a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132861.jpg', 'caption': 'An old building with a steeple and two clocks is surrounded by gray clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084064.jpg', 'caption': 'A bathroom with white tile and a beige toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084064.jpg', 'caption': 'A view form the top of a bathroom of a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084064.jpg', 'caption': 'Overhead picture of a toilet in a white stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084064.jpg', 'caption': 'A photo looking down into a toilet bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084064.jpg', 'caption': 'A bathroom stall with white tiled walls and motion sensors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336695.jpg', 'caption': 'A person riding a motorcycle down a rural country road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336695.jpg', 'caption': 'View from the front of a motorcycle on a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336695.jpg', 'caption': 'The handlebars and mirrors of a moving motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336695.jpg', 'caption': 'a person riding a motorcycle on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336695.jpg', 'caption': 'A motorcycle riders view of going down a country road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185930.jpg', 'caption': 'This is a public bathroom with soap dispensers installed on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185930.jpg', 'caption': 'Three white sinks in a bathroom under mirrors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185930.jpg', 'caption': 'Three sinks and a mirror in a public restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185930.jpg', 'caption': 'There is a bathroom with sinks and soap dispensers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185930.jpg', 'caption': 'there are many sinks in this public bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455261.jpg', 'caption': 'The view of a person riding a motorcycle on a paved road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455261.jpg', 'caption': 'A person is traveling down the road on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455261.jpg', 'caption': 'a first person view of a person riding a motorcyle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455261.jpg', 'caption': 'We are looking at the front of a motorcycle from the drivers point of view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455261.jpg', 'caption': 'A person riding a motorcycle down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107960.jpg', 'caption': 'Riding a motorcycle down a street that has no one else on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107960.jpg', 'caption': \"The view from a motorcyclist's point of view, looking down a street.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107960.jpg', 'caption': 'A man rides a motorcycle down an empty street next to houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107960.jpg', 'caption': 'The view of the street from the perspective of the rider of a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107960.jpg', 'caption': 'A motorcycle moves forward down an empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531167.jpg', 'caption': 'a toilet with no tank attached to the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531167.jpg', 'caption': 'Top view of a toilet connected to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531167.jpg', 'caption': 'A toilet in a tile room has a strange square opening in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531167.jpg', 'caption': 'The aerial view of a toilet in a bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531167.jpg', 'caption': 'A white toilet in a small restroom with a silver trashcan nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355221.jpg', 'caption': 'A silver motorcycle with many lights parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355221.jpg', 'caption': 'A flashy motorcycle parked on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355221.jpg', 'caption': 'Old style motorcycle with many lights parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355221.jpg', 'caption': 'A motorcycle with more than the usual number of headlights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355221.jpg', 'caption': 'A black-and-white photo of a motorcycle with many headlights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278961.jpg', 'caption': 'There is more than one roll of toilet paper for this toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278961.jpg', 'caption': 'Motion sensor hangs on wall above the public toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278961.jpg', 'caption': 'Looking down at a toilet in a particularly small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278961.jpg', 'caption': 'a very small bathroom with a toilet with the seat up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278961.jpg', 'caption': 'A small toilet in a very small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057495.jpg', 'caption': 'A standing toilet sitting inside of a stone and cement room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057495.jpg', 'caption': 'some kind of nasty bathroom that I would never use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057495.jpg', 'caption': 'A dirty and nasty looking rest room stuck in a corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057495.jpg', 'caption': 'An old area with a toddler toilet is sitting idly. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057495.jpg', 'caption': 'A crude latrine with a stone sink and toilet seat area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431047.jpg', 'caption': 'A baby boy sitting on top of a toilet reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431047.jpg', 'caption': 'A boy with a book sitting on a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431047.jpg', 'caption': 'Young child reads magazine while using his baby toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431047.jpg', 'caption': 'A baby is sitting on a toilet reading a magazine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431047.jpg', 'caption': 'a small child sitting on a toilet in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225731.jpg', 'caption': 'a green motorcycle parked and resting next to another vehicle inside a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225731.jpg', 'caption': 'A green motorbike is parked on a roadside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225731.jpg', 'caption': 'A green motor bike is parked next to a white van.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225731.jpg', 'caption': 'a motor bike sits parked next to a car ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225731.jpg', 'caption': 'A bike is painted like the Teenage Mutant Ninja Turtles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159233.jpg', 'caption': 'Man taking a photograph of a black and silver motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159233.jpg', 'caption': 'A man is taking a picture up close of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159233.jpg', 'caption': 'A man taking a close up picture of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159233.jpg', 'caption': \"He's getting in close for a tight shot of his chopper\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159233.jpg', 'caption': 'A person laying next to a motor bike on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309492.jpg', 'caption': 'A cop riding on the back of a motorcycle down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309492.jpg', 'caption': 'A police officer driving a motorcycle down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309492.jpg', 'caption': 'A man in yellow vest on street next to traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309492.jpg', 'caption': 'A man riding a motorcycle on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309492.jpg', 'caption': 'A motorcycle cop driving along the road between traffic lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394773.jpg', 'caption': 'A parked motorcycle on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394773.jpg', 'caption': 'A parked blue and white motorcycle with a black seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394773.jpg', 'caption': 'A parked motor cycle with a pack on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394773.jpg', 'caption': 'A blue and white motorcycle with a trunk on the back parked by a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394773.jpg', 'caption': 'A motorcycle sitting on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009527.jpg', 'caption': 'A picture of a messy desk with an open laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009527.jpg', 'caption': 'a laptop that is sitting on a table with some papers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009527.jpg', 'caption': 'A bowl of food is next to a laptop and many scattered papers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009527.jpg', 'caption': 'An open laptop computer sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009527.jpg', 'caption': 'A laptop computer sits on a cluttered desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510230.jpg', 'caption': 'a street sign with a stop sign below it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510230.jpg', 'caption': 'A stop sign underneath two street signs on a corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510230.jpg', 'caption': 'Two street signs that are above a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510230.jpg', 'caption': 'a stop sign and street signs close to some businesses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510230.jpg', 'caption': 'A stop sign with two street signs above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053058.jpg', 'caption': 'there is a older man sitting and using a lap top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053058.jpg', 'caption': 'a man writing on his laptop in a cafe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053058.jpg', 'caption': 'An elderly man is using a laptop computer at a desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053058.jpg', 'caption': 'a person at a table with a laptop and a luggage bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053058.jpg', 'caption': 'A woman sitting at a desk with his laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441245.jpg', 'caption': 'A row of motorcycles are parked in a parking garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441245.jpg', 'caption': 'a bunch of motor bikes sit parked next to each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441245.jpg', 'caption': 'A bunch of motorcycles parked in a parking garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441245.jpg', 'caption': 'A group of parked motorcycles at a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441245.jpg', 'caption': 'A group of motor scooters sitting in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176034.jpg', 'caption': 'Large wall with an antique finish window and an old clock above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176034.jpg', 'caption': 'A very tall room has a clock on the wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176034.jpg', 'caption': 'a large building with high ceilings and lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176034.jpg', 'caption': 'a clock on a wall with two doors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176034.jpg', 'caption': 'A room with several doors and clock high on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223930.jpg', 'caption': 'A motorcycle parked next to a few bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223930.jpg', 'caption': 'The Honda motorcycle is parked beside of bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223930.jpg', 'caption': 'a mortor cycle parked next to some regular bikes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223930.jpg', 'caption': 'a black and white parked motorcycle and some bicycles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223930.jpg', 'caption': 'A scooter sitting parked on a sidewalk by a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173379.jpg', 'caption': 'Four apples sitting in a bowl viewed from above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173379.jpg', 'caption': 'there are fur apples that are in the bowl on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173379.jpg', 'caption': 'A bowl holds four apples on a wooden table in black and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173379.jpg', 'caption': 'Four apples sitting in a bowl on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173379.jpg', 'caption': 'Black and white photograph of a bowl of apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436814.jpg', 'caption': 'A laptop computer sitting on top of a computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436814.jpg', 'caption': 'A room with a door open and a computer opened up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436814.jpg', 'caption': 'Small desk with electronic equipment in office type room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436814.jpg', 'caption': 'An office room with a desk holding a computer, laptop and camera tripod.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436814.jpg', 'caption': 'An office with a desk and chair with the door open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114184.jpg', 'caption': 'A table filled with cakes, cupcakes, pies and whip cream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114184.jpg', 'caption': 'A table filled with many cakes and pastries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114184.jpg', 'caption': 'A table that is filled with many kinds of baked goods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114184.jpg', 'caption': 'There are many desserts on this table of different kinds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114184.jpg', 'caption': 'A table is full of desserts including cakes, pies, and cupcakes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359128.jpg', 'caption': 'A desk that has a laptop computer on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359128.jpg', 'caption': 'A laptop computer sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359128.jpg', 'caption': 'The computers are left on the desk in the room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359128.jpg', 'caption': 'A laptop sitting in front of a monitor, mouse and tripod.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359128.jpg', 'caption': 'A desk with a laptop in front of a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150685.jpg', 'caption': 'two gray stove burners and a wooden bowl with four apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150685.jpg', 'caption': 'four green apples in a bowl near a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150685.jpg', 'caption': 'a bowl of apples on a counter next to a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150685.jpg', 'caption': 'A bowl of apples is positioned in a bowl next to gas burners.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150685.jpg', 'caption': 'Four green apples in a bowl on a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251344.jpg', 'caption': 'Cupcakes with white frosting and different colored star frosting decoration on each.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251344.jpg', 'caption': 'A surface with many small cup cakes with icing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251344.jpg', 'caption': 'White and pink icing on cupcakes in paper linings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251344.jpg', 'caption': 'Some vanilla cupcakes have a little special icing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251344.jpg', 'caption': 'close up of white frosting on a tray of cupcakes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146805.jpg', 'caption': 'Laptop and desktop computers in use on a cluttered desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146805.jpg', 'caption': 'A clean and tidy desk area is mostly white and features a computer and a black laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146805.jpg', 'caption': 'This tech wizard leaves all options open, equipping his computer area with both a laptop and desktop machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146805.jpg', 'caption': 'A table top with multiple computers and other office items', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146805.jpg', 'caption': 'A very neat white computer desk with white desktop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313337.jpg', 'caption': 'A paper bowl filled with cake and a muffin next to a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313337.jpg', 'caption': 'A blueberry muffin in a bowl and a banana on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313337.jpg', 'caption': 'A banana is next to a bowl with pastries in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313337.jpg', 'caption': 'Pastries on a plate accompanied with a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313337.jpg', 'caption': 'A bowl of muffins on a table with a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567730.jpg', 'caption': 'The sign of a restaurant in the outside of the store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567730.jpg', 'caption': 'A sign on a building advertising an Italian restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567730.jpg', 'caption': 'A sign for an Italian restaurant hangs outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567730.jpg', 'caption': 'Italian Reaffaello restaurant sign at front of building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567730.jpg', 'caption': 'A sign outside of a restaurant for Italian food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324008.jpg', 'caption': 'A meal on an airplane of cereal, milk, and fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324008.jpg', 'caption': 'A tray covered in food on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324008.jpg', 'caption': 'An airline lunch tray filled with healthy food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324008.jpg', 'caption': 'a tray with breakfast of orange juice, cereal with milk, a banana and a piece of bread', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324008.jpg', 'caption': 'Breakfast on the train prepares the worker for the day ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011721.jpg', 'caption': 'A golden stoned elevator has a clock above it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011721.jpg', 'caption': 'A clock sits high on a wall while below it on the wall features mosaic tiles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011721.jpg', 'caption': 'A clock on the wall of a brick building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011721.jpg', 'caption': ' A large entryway with a clock mounted on a wall above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011721.jpg', 'caption': 'A yellow doorway with a clock above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183348.jpg', 'caption': 'A entrance into a building next to a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183348.jpg', 'caption': 'Entrance to a building with a black canopy. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183348.jpg', 'caption': 'A canopy is over the entrance to a business.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183348.jpg', 'caption': 'Parking meter outside the door of a run down club', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183348.jpg', 'caption': 'A simple store entrance is located discreetly on the side of a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361386.jpg', 'caption': 'A motorcycle is in a parking lot with a helmet on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361386.jpg', 'caption': 'A motorcycle parked in a parking lot next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361386.jpg', 'caption': 'A motorcycle parked in a parking lot with a helmet on the seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361386.jpg', 'caption': 'A motorcycle is parked in an empty parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361386.jpg', 'caption': 'A motorcycle with a helmet on it is parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541783.jpg', 'caption': 'Blurred image of motorized scooters on a wooded road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541783.jpg', 'caption': 'a blurry photo of a person riding a motorcycle ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541783.jpg', 'caption': 'A blurry photo of people riding motorcycles in the woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541783.jpg', 'caption': 'A motorcycle traveling down a dirt path with trees on either side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541783.jpg', 'caption': 'Blurred photo of motorbike giving impression of movement away from viewer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198352.jpg', 'caption': 'a man sits on a motor cycle next to a gas pump', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198352.jpg', 'caption': 'a person sitting on a motorcycle near a car ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198352.jpg', 'caption': 'Someone on their motorcycle is about to pump gas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198352.jpg', 'caption': 'A person on a motorcycle is at a gas pump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198352.jpg', 'caption': 'A motorcycle rider pumping gas while still on the bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030611.jpg', 'caption': 'A dog is looking out the door to the outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030611.jpg', 'caption': 'Large dog stands at door of home looking out onto deck area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030611.jpg', 'caption': 'The dog with a pink collar is staring out of a glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030611.jpg', 'caption': 'A large dog sitting in front of a sliding glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030611.jpg', 'caption': 'A dog looks out a glass door overlooking a porch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147872.jpg', 'caption': 'A person on skis heading down a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147872.jpg', 'caption': 'The person is skiing down the snowy mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147872.jpg', 'caption': 'A person in black jacket skiing down hill with mountains in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147872.jpg', 'caption': 'The man is skiing down the snow covered slopes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147872.jpg', 'caption': 'Skier going down the side of a mountain alone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466332.jpg', 'caption': 'a bench in front of a house with bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466332.jpg', 'caption': 'This bench is located near a door of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466332.jpg', 'caption': 'Empty wrought iron bench outside the house on a tile base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466332.jpg', 'caption': 'A bench sitting outside of a brick house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466332.jpg', 'caption': 'a blue bench a house and some bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520108.jpg', 'caption': 'A big screen TV in a fancy looking Hotel room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520108.jpg', 'caption': 'A bedroom with a bed dresser and large screen television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520108.jpg', 'caption': 'a bedroom with a bed and a flat screen television ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520108.jpg', 'caption': 'A room with a bed and a flat screen television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520108.jpg', 'caption': 'A large screen TV in a small bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483328.jpg', 'caption': 'A flat screen TV mounted to a wall next to a doorway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483328.jpg', 'caption': 'A bedroom containing a bed, a dresser, a large TV on the wall and 2 four-door cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483328.jpg', 'caption': 'A bedroom with double doors has a mounted television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483328.jpg', 'caption': 'A wall mounted television and built in cabinets in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483328.jpg', 'caption': 'A bed and a desk in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573823.jpg', 'caption': 'a laptop computer on a desk and a tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573823.jpg', 'caption': 'Residential room with computer and large television screens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573823.jpg', 'caption': 'A laptop computer screen with a tv in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573823.jpg', 'caption': 'A laptop computer displays details of a football game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573823.jpg', 'caption': 'A laptop computer sitting on a desk in a white room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058254.jpg', 'caption': 'A remote controller hitting a signal on a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058254.jpg', 'caption': 'A remote control has all black and white buttons except for a yellow \"Light\" button.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058254.jpg', 'caption': 'This is a point of view shot from a TV remote with a TV in view in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058254.jpg', 'caption': 'Looking down the length of a remote control at a television screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058254.jpg', 'caption': 'A TV remote control and a television, each facing each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060548.jpg', 'caption': 'A man sitting on a couch in a hotel room that also has a bed and desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060548.jpg', 'caption': 'Man sitting in an efficiency or dorm room with different color paper birds on the walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060548.jpg', 'caption': 'A bedroom and couch with paper mache hanging on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060548.jpg', 'caption': 'A man sitting on a couch in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060548.jpg', 'caption': 'someones room with a purple bed and paper everywhere ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051628.jpg', 'caption': 'People are lying down watching television with their socks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051628.jpg', 'caption': 'Two people with their feet up with white socks watching TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051628.jpg', 'caption': 'People feet resting on a table as they watch tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051628.jpg', 'caption': '2 people are kicking back while watching the Tv. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051628.jpg', 'caption': 'Two people watch TV on a couch with their legs propped up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463132.jpg', 'caption': 'The top of the computer desk is very shiny.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463132.jpg', 'caption': 'a desk is shown with a computer and mouse on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463132.jpg', 'caption': 'The computer is turned off and the desk is clean and organized. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463132.jpg', 'caption': 'A desktop computer on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463132.jpg', 'caption': 'plant sitting on computer desk near a bright window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218224.jpg', 'caption': 'A large white airplane sits on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218224.jpg', 'caption': 'A passenger jet that has been docked to the terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218224.jpg', 'caption': 'A jet sitting on an airfield awaiting taxi to the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218224.jpg', 'caption': 'A white and blue jet airliner docked at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218224.jpg', 'caption': 'A large airplane parked on a runway at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459502.jpg', 'caption': 'A black and white plane flying in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459502.jpg', 'caption': 'Plane flying high in a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459502.jpg', 'caption': 'a plane flying high in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459502.jpg', 'caption': 'An airplane flying in the sky during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459502.jpg', 'caption': 'A plane flying on a clear blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078580.jpg', 'caption': 'A large jetliner sitting on top of an airport tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078580.jpg', 'caption': 'The Air France airplane is stopped just past the jetways.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078580.jpg', 'caption': 'An airplane is parked at the airport near the terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078580.jpg', 'caption': 'an airplane parked on a runway next to a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078580.jpg', 'caption': 'An \"Air France\" airplane that has landed in an airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368611.jpg', 'caption': 'a large passenger sitting next to a loading doc at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368611.jpg', 'caption': 'large commercial plane ready to load passengers onto the plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368611.jpg', 'caption': 'an air plane at an air port run way', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368611.jpg', 'caption': 'The airplane is on the runway at the airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368611.jpg', 'caption': 'This airplane is parked at a terminal entrance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345329.jpg', 'caption': 'A jet airplane flying above the clouds in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345329.jpg', 'caption': 'A plane flying in the sky above some very thick clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345329.jpg', 'caption': 'A plane in the distance flying over some clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345329.jpg', 'caption': 'An airplane in the sky above the clouds. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345329.jpg', 'caption': 'The airplane is flying high above many clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118728.jpg', 'caption': 'A plane flying in the sky during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118728.jpg', 'caption': 'A large jetliner flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118728.jpg', 'caption': 'The sun is shining down on a passing airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118728.jpg', 'caption': 'there is a very large and long plane flying in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118728.jpg', 'caption': 'An aeroplane soaring in the sky with a halo of light around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091667.jpg', 'caption': 'Two jets fly overhead while the crowds look', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091667.jpg', 'caption': 'Two military aircraft make a steep turn while releasing colored smoke.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091667.jpg', 'caption': 'Two fighter jets are performing an aerial acrobatic routine in front of a crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091667.jpg', 'caption': 'Two jets trailing smoke make a tight turn above a crowd of spectators. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091667.jpg', 'caption': 'a couple of airplanes that are flying through the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403820.jpg', 'caption': 'Large airplane flying below the clouds from underneath', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403820.jpg', 'caption': 'A plane that is flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403820.jpg', 'caption': 'A sky view looking up at the underside of an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403820.jpg', 'caption': 'A large plane with propellers high up in the sky.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000149376.jpg', 'caption': 'The stop light found at a Hocken avenue intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149376.jpg', 'caption': 'The intersection has two red lights, a red arrow and a green street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149376.jpg', 'caption': 'Traffic signals on post above roadway in urban area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149376.jpg', 'caption': 'A sign that is in between two stoplights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149376.jpg', 'caption': 'a couple of red stop lights are over a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165056.jpg', 'caption': 'Two giraffes are standing together under the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165056.jpg', 'caption': 'Two giraffes stand next to each other while a person looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165056.jpg', 'caption': 'A couple of giraffe standing next to each other in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165056.jpg', 'caption': 'There is a human head in between the two Giraffes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165056.jpg', 'caption': 'Two giraffes looking at a woman very intensively.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227806.jpg', 'caption': 'A man in an orange outfit is directing traffic to drive slowly.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227806.jpg', 'caption': 'A man stands with a slow sign is shown on the corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227806.jpg', 'caption': 'A construction worker holding a slow sign standing in the middle of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227806.jpg', 'caption': 'a man in orange safety clothing holding a slow sign on the side of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227806.jpg', 'caption': 'A worker holds a slow sign on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538533.jpg', 'caption': 'Street sign at the corner of SW 6th and Spencer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538533.jpg', 'caption': 'Two street signs sitting atop of a stop sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538533.jpg', 'caption': 'A sign indicates the corner of 6th St and Spencer Ave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538533.jpg', 'caption': 'A stop sign topped with green street signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538533.jpg', 'caption': 'Street sign at the corner of Spencer and 6th Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567198.jpg', 'caption': 'Two giraffe standing on a dirt road next to a jungle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567198.jpg', 'caption': 'Group of giraffes leaning forward to eat out of a feeding area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567198.jpg', 'caption': 'Two giraffes investigating something inside of an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567198.jpg', 'caption': 'Two giraffes are positioned on both sides of a much larger animal who is taking the lead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567198.jpg', 'caption': 'Two giraffes foraging for food along the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554828.jpg', 'caption': 'a flock of geese are walking in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554828.jpg', 'caption': 'A group of geese are walking down the parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554828.jpg', 'caption': 'Swans gather in the middle of a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554828.jpg', 'caption': 'A flock of ducks walking across a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554828.jpg', 'caption': 'Geese walking in a parking lot with parked cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334642.jpg', 'caption': 'A lane closed traffic sign sitting next to a no right turn sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334642.jpg', 'caption': 'A group of street signs on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334642.jpg', 'caption': 'Several road signs are pictured in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334642.jpg', 'caption': 'a group of signs sitting together in the dark', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334642.jpg', 'caption': 'Road signs and orange barrels lit up at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240119.jpg', 'caption': 'an red and white fire truck and a red truck and buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240119.jpg', 'caption': 'Teddy bear sitting on the front of a fire truck with a hat on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240119.jpg', 'caption': 'A small teddy bear sitting on a fire truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240119.jpg', 'caption': 'A teddy bear sits on the front of a firetruck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240119.jpg', 'caption': 'A teddy bear sits on the front bumper of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440706.jpg', 'caption': 'a close up of a small bird on a tree branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440706.jpg', 'caption': 'A small blue bird sitting on a thin branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440706.jpg', 'caption': 'A black and blue colored bird sitting in an exotic tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440706.jpg', 'caption': 'A blue bird is sitting on a branch of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440706.jpg', 'caption': 'A bird that is sitting on the branch of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133611.jpg', 'caption': 'a big boat is going down a small river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133611.jpg', 'caption': 'Two people in a boat on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133611.jpg', 'caption': 'A white pontoon-type boat is in the water with people in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133611.jpg', 'caption': 'A white yacht going down a river. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133611.jpg', 'caption': 'A white boat sailing down a river while people in the background walk down a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297419.jpg', 'caption': 'A pair of fancy chickens among the daffodils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297419.jpg', 'caption': 'A chicken standing next to two other chickens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297419.jpg', 'caption': 'Some chickens stand next to a bunch of yellow flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297419.jpg', 'caption': 'Two chickens look at the camera over another chicken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297419.jpg', 'caption': 'Chickens play next to the pretty yellow flowers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262175.jpg', 'caption': 'a man is standing in the woods wearing a hat and glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262175.jpg', 'caption': 'A man in sunglasses wears a grass tie and hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262175.jpg', 'caption': 'A man wearing a woven crown and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262175.jpg', 'caption': 'a man in a blue shirt with some weird crown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262175.jpg', 'caption': 'a man that is standing around in a hate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227656.jpg', 'caption': 'A laptop computer on a table in the passenger cabin of an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227656.jpg', 'caption': 'A laptop computer on a table and chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227656.jpg', 'caption': 'A laptop computer that is on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227656.jpg', 'caption': 'a powered on laptop sitting on a desk in front of two chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227656.jpg', 'caption': 'A laptop computer on a table in an airplane or train compartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420929.jpg', 'caption': 'The two white birds are flying in the clear sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420929.jpg', 'caption': 'Two white birds flying over a beach under a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420929.jpg', 'caption': 'Two seagulls are flying through the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420929.jpg', 'caption': 'Two birds flying in the air together by the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420929.jpg', 'caption': 'two black and white seagulls flying and some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399628.jpg', 'caption': 'Two children looking at a steam train engine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399628.jpg', 'caption': 'A boy and his younger sister looking at a steam engine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399628.jpg', 'caption': 'Two young children observing a train on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399628.jpg', 'caption': 'Two children look at an old, black steam engine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399628.jpg', 'caption': 'A steam train at a park being watch by two kids. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330018.jpg', 'caption': 'A pretty bird is sitting on a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330018.jpg', 'caption': 'A bird that is in the branches of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330018.jpg', 'caption': 'A black and white bird on a branch in tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330018.jpg', 'caption': 'A black and white bird perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330018.jpg', 'caption': \"Little bird looking out from the tree it's standing in\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534128.jpg', 'caption': 'A sleeping area of a train car with a seat belt buckle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534128.jpg', 'caption': 'A seatbelt hanging of a compartment labelled number 31', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534128.jpg', 'caption': \"A hospital bed is seen from a floor's eye view.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534128.jpg', 'caption': 'A berth in a train showing the number 31. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534128.jpg', 'caption': 'The side of a two train beds with black curtains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215781.jpg', 'caption': 'A bird sitting on a branch of plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215781.jpg', 'caption': 'A bird perched on top of a tree with lots of red flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215781.jpg', 'caption': 'A small tan and striped bird is sits on the branch of a red flowering bush. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215781.jpg', 'caption': 'A small brown bird sits on a green and red plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215781.jpg', 'caption': 'A bird sits on a bush with red flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230247.jpg', 'caption': 'A mirror that is on a tiled wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230247.jpg', 'caption': 'An upclose photo of a security mirror and a reflection of someone talking a photo in the mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230247.jpg', 'caption': 'a door in the reflection of a mirror ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230247.jpg', 'caption': 'A mirror shows a reflection of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230247.jpg', 'caption': 'A subway station is seen through the reflection of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264957.jpg', 'caption': 'A large convex mirror mounted to a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264957.jpg', 'caption': 'A round mirror is on a wall with a reflection in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264957.jpg', 'caption': 'a mirror on the wall showing a reflection of train and a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264957.jpg', 'caption': 'A round mirror for seeing around corners is attached to the shiny tiles of the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264957.jpg', 'caption': 'A reflective mirror at the junction of two hallways.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574063.jpg', 'caption': 'A man standing in front of a mirror with a light around them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574063.jpg', 'caption': 'A man taking a picture of himself between two mirrors that are repeating his image. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574063.jpg', 'caption': 'A dude is standing looking in a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574063.jpg', 'caption': 'A man is taking a mirror image of himself. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574063.jpg', 'caption': 'A person in a mirror in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054955.jpg', 'caption': 'A small boy leaning up against a window on a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054955.jpg', 'caption': 'A child is in the window of a silver bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054955.jpg', 'caption': 'A child and two adults watching out the window of a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054955.jpg', 'caption': 'A boy next to some other people is looking out the window of a bus or train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054955.jpg', 'caption': 'A boy is looking outside a window on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548538.jpg', 'caption': 'A black train car with a group of men standing on the back of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548538.jpg', 'caption': 'People are standing and looking out of the caboose of a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548538.jpg', 'caption': 'A group of people standing on the caboose of a traveling train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548538.jpg', 'caption': 'A trolley rolling down the tracks in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548538.jpg', 'caption': 'People riding on the caboose of a train with a mountain in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177994.jpg', 'caption': 'Empty restaurant dinning room set for dinner guests.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177994.jpg', 'caption': 'A virtual dinning with with tables chairs and plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177994.jpg', 'caption': 'A screenshot of tables rendered from a video game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177994.jpg', 'caption': 'The digital dining car of a digital train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177994.jpg', 'caption': 'A dining room is set up with white tablecloths.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303942.jpg', 'caption': 'A blue and white street sign next to a white building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303942.jpg', 'caption': 'A large sign on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303942.jpg', 'caption': 'A road sign with both English and Arabic directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303942.jpg', 'caption': 'A sports utility vehicle parked by a sign giving direction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303942.jpg', 'caption': 'An information sign written in Pasto and English, probably in Afghanistan or Pakistan. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245431.jpg', 'caption': 'A black bird sitting in grass by water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245431.jpg', 'caption': 'A black bird sitting on top of a lush green hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245431.jpg', 'caption': 'A crow sitting on the ground near a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245431.jpg', 'caption': 'A black bird sitting on a cliff side overlooking some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245431.jpg', 'caption': 'A single bird that sits on a mossy and rocky outcrop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443160.jpg', 'caption': 'The would is dressed up wearing a hat and tie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443160.jpg', 'caption': 'Woman in a hat and tie posing for a picture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443160.jpg', 'caption': 'A woman wearing a tie and a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443160.jpg', 'caption': 'A woman wearing a neck tie and a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443160.jpg', 'caption': 'A woman dressed in a hat, tie, jeans and cut off gloves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065981.jpg', 'caption': 'A large train is coming down the track between a beautiful mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065981.jpg', 'caption': 'Dusty train passing through a dry mountain valley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065981.jpg', 'caption': 'A train traveling between two very large rocky mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065981.jpg', 'caption': 'A train exiting a tunnel goes in between two cliffs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065981.jpg', 'caption': 'An old train moving in a valley with rocks on both sides', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433182.jpg', 'caption': 'A train pulling into a train station next to a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433182.jpg', 'caption': 'A red commuter train pulling into a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433182.jpg', 'caption': 'A commuter train arriving at an out door station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433182.jpg', 'caption': 'A train pulling into a train station platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433182.jpg', 'caption': 'A red train is on some tracks near an awning and a cement area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434618.jpg', 'caption': 'Some smiling happy skiers riding on a lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434618.jpg', 'caption': 'Three people in ski gear are posing for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434618.jpg', 'caption': 'three skiers taking a sky lift up the mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434618.jpg', 'caption': 'there are three people riding a trolly up a snow mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434618.jpg', 'caption': 'Three people in ski gear are riding in the ski lift. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405104.jpg', 'caption': 'A green street sign mounted to a metal pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405104.jpg', 'caption': 'The street sign is in clear view for everyone to see. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405104.jpg', 'caption': 'A green street sign with white letters that read Marginal Street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405104.jpg', 'caption': 'A green and white street sign that reads \"marginal st.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405104.jpg', 'caption': 'A sign is displayed against a deep blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533069.jpg', 'caption': 'A train sitting next to a loading area near a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533069.jpg', 'caption': 'An outdoor train platform at 15:53 with one train stopped there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533069.jpg', 'caption': 'A train arriving at 3:53 in the afternoon. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533069.jpg', 'caption': 'A train sitting at a train station on a sunny day ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533069.jpg', 'caption': 'Picture of train pulling up to the station with doors open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109361.jpg', 'caption': 'A flock of birds sitting on top of a dirt ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109361.jpg', 'caption': 'a bunch of birds are walking near a couple of trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109361.jpg', 'caption': 'A walking street in a small town with a large number of birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109361.jpg', 'caption': 'A flock of birds on the sand near a market area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109361.jpg', 'caption': 'Many birds are sitting on the ground in a resort type area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340781.jpg', 'caption': 'A floodway sign sitting on the side of a road in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340781.jpg', 'caption': 'a street sign on the side of a road with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340781.jpg', 'caption': 'A yellow and black sign that reads \"floodway.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340781.jpg', 'caption': 'a yellow \"floodway\" sign stands erect near a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340781.jpg', 'caption': 'A yellow sign on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145862.jpg', 'caption': 'a train sitting on a train track at a stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145862.jpg', 'caption': 'a red train on a train track with a mountain background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145862.jpg', 'caption': 'An old red train car is sitting on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145862.jpg', 'caption': 'An old train is on rusted train tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145862.jpg', 'caption': 'A train traveling down towards some snow covered mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220214.jpg', 'caption': 'Two people standing in front of a train on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220214.jpg', 'caption': 'a train on a field of grass with mountains in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220214.jpg', 'caption': 'A picture of two people posing in front of a train. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220214.jpg', 'caption': 'a black train traveling on a train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220214.jpg', 'caption': 'an image of a train that is going down the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117368.jpg', 'caption': 'A stop sign with two street signs above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117368.jpg', 'caption': 'A stop sign under street signs in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117368.jpg', 'caption': 'Street signs and a stop sign are all on one post in front of a tan building with white windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117368.jpg', 'caption': 'The stop sign has two street signs above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117368.jpg', 'caption': 'A stop sign with street signs on top next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564317.jpg', 'caption': 'A street sign for Jack Kerouac (Adler) Road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564317.jpg', 'caption': 'A green pole with street signs next to a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564317.jpg', 'caption': 'A street sign with the word Jack Kerouac on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564317.jpg', 'caption': 'A large sign on a pole on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564317.jpg', 'caption': 'A blue and white street sign next to building on lamppost.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403104.jpg', 'caption': 'Group of signs on top of each other on a pole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403104.jpg', 'caption': 'A street sign mounted to the side of a wooden pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403104.jpg', 'caption': 'Several signs on a wooden pole with damaged homes in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403104.jpg', 'caption': 'A sign asking for witnesses is posted in front of a destroyed home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403104.jpg', 'caption': 'A one way sign has cluttered signs all around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226256.jpg', 'caption': 'A garden is surrounded by a train and phone booth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226256.jpg', 'caption': 'A train sits at the edge of a garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226256.jpg', 'caption': 'A raised garden bed with stone walls in front of a trailer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226256.jpg', 'caption': 'a lot of plants and greenery with a train in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226256.jpg', 'caption': 'A green and white rain next to a phone booth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351554.jpg', 'caption': 'Street sign for Hollywood Boulevard with a building in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351554.jpg', 'caption': 'Hollywood Boulevard seems smaller when looking at this street sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351554.jpg', 'caption': 'A right lane must turn right sign in front of a yellow building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351554.jpg', 'caption': 'A street pole showing two street signs and a building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351554.jpg', 'caption': 'A stop sign that is on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289889.jpg', 'caption': 'A whole bunch of traffic stop signs huddled together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289889.jpg', 'caption': 'A group of stop signs with buildings in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289889.jpg', 'caption': 'There are a lot of old stop signs stored together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289889.jpg', 'caption': 'A group of clustered stop signs in the middle of a park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289889.jpg', 'caption': 'Many large red stop signs on metal poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028071.jpg', 'caption': 'A picture of a very tall stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028071.jpg', 'caption': 'A shopping cart sits outside of a target by a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028071.jpg', 'caption': 'A stop sign is on the corner near a shopping cart with a large store in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028071.jpg', 'caption': 'STOP SIGN WITH A RED CART SITTING BESIDE IT ON A STREET CORNER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028071.jpg', 'caption': 'a street sign with a shopping cart next to a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495014.jpg', 'caption': 'There is a sign with both French and English on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495014.jpg', 'caption': 'A stop sign is in a parking garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495014.jpg', 'caption': 'Stop sign on two yellow bars placed under a check in area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495014.jpg', 'caption': 'Stop sign pointing to two lanes to stop in', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495014.jpg', 'caption': 'A parking garage with a Stop Here sign at the exit area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167510.jpg', 'caption': 'A stop sign at the intersection of Lyndon Ave and South.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167510.jpg', 'caption': 'A road and stop sign at an intersection by a large tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167510.jpg', 'caption': 'A stop sign in foreground of a tree in fall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167510.jpg', 'caption': 'A stop sign on the corner of Lynden Avenue and South Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167510.jpg', 'caption': 'a close up of a stop sign under a street sign ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328785.jpg', 'caption': 'A red stop sign and a person on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328785.jpg', 'caption': 'A person wearing glasses is walking away from a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328785.jpg', 'caption': 'The side of a mans face with a stop sign in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328785.jpg', 'caption': 'A red stop sign sitting on the side of a tree line road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328785.jpg', 'caption': \"Man's head shown next to a stop street sign\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045966.jpg', 'caption': 'A stop sign posted in a foreign language\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045966.jpg', 'caption': 'A stop sign in Arabic by a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045966.jpg', 'caption': 'Foreign stop sign, possibly in Sanskrit or Cambodian script, with nice tree and water background, off-white property wall typical of India or southeast Asia.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045966.jpg', 'caption': 'A stop sign in a foreign language by a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045966.jpg', 'caption': 'A stop sign has a language that is not english.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564739.jpg', 'caption': 'A train with a yellow engine car traveling down railroad tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564739.jpg', 'caption': 'A Union Pacific train is moving along the train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564739.jpg', 'caption': 'A Union Pacific train comes down the track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564739.jpg', 'caption': 'A Union Pacific engine pulls its train around the bend.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564739.jpg', 'caption': 'A close up of the front of a train on train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101096.jpg', 'caption': 'A oool lookign stop sign by a murky bog hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101096.jpg', 'caption': 'A red stop sign sitting next to a grass covered cliff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101096.jpg', 'caption': 'The stop sign is next to a big grass covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101096.jpg', 'caption': 'The hills are covered with a bunch of moss.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101096.jpg', 'caption': 'A stop sign at a corner in a rural area, above a storm drain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073731.jpg', 'caption': 'A back that has a skull and two swords on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073731.jpg', 'caption': 'A bag that is inside of a blue pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073731.jpg', 'caption': 'The skull bag shows displeasure for the parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073731.jpg', 'caption': 'A blue street sign with a pirate bag on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073731.jpg', 'caption': 'A parking meter beside a statue with a bag hung from it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460813.jpg', 'caption': 'There is a parking meter with a graffiti stenciled in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460813.jpg', 'caption': 'Expired parking meter with backdrop of artistic graffiti. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460813.jpg', 'caption': 'A parking meter in front of a painted metal structure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460813.jpg', 'caption': 'A parking meter in a sidewalk next to a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460813.jpg', 'caption': 'A coin meter and a spray painted silhouette on a wall in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351904.jpg', 'caption': 'The town square is covered by many inches of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351904.jpg', 'caption': 'A street sign covered in snow in front of a theater. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351904.jpg', 'caption': 'A couple of parking meters baried in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351904.jpg', 'caption': 'A parking meter covered in snow next to a row of stores.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351904.jpg', 'caption': 'Two parking meters that are nearly covered with snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531585.jpg', 'caption': 'A group of people hanging out around a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531585.jpg', 'caption': 'There are men loading equipment onto a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531585.jpg', 'caption': 'A group of people outside a parked truck with a bunch of luggage inside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531585.jpg', 'caption': 'a number of people in and a around a truck with its back open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531585.jpg', 'caption': 'Men putting bags and gear into a moving van', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136846.jpg', 'caption': 'A large truck driving past a shopping center on a rain covered road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136846.jpg', 'caption': 'A truck is traveling down a wet road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136846.jpg', 'caption': 'A colorful truck is driving on a wet road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136846.jpg', 'caption': 'A truck pulling two trailers behind it while driving down the highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136846.jpg', 'caption': 'A colorful truck drives through the rainy street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001799.jpg', 'caption': 'A large green truck on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001799.jpg', 'caption': 'A truck driving down a city street, a car behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001799.jpg', 'caption': 'A delivery truck riding down a street past a person directing traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001799.jpg', 'caption': 'A large truck traveling on a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001799.jpg', 'caption': 'A truck is parked on the side of a street in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193498.jpg', 'caption': 'various items from the bag are on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193498.jpg', 'caption': 'A large number of personal items atop a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193498.jpg', 'caption': 'The wooden table is covered with small bags, pouches, and keys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193498.jpg', 'caption': 'It is a good idea to lay everything out for the trip before packing the items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193498.jpg', 'caption': 'A bag with its contents laid out on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010615.jpg', 'caption': 'a track without a door near an ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010615.jpg', 'caption': 'A white truck is parked by a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010615.jpg', 'caption': 'a broken down truck with no door sits parked next to other cars ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010615.jpg', 'caption': 'A white truck parked next to a black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010615.jpg', 'caption': 'A white pickup trucking is lacking doors, bumpers, grill and one headlight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150235.jpg', 'caption': 'An orange cat sitting on the ground next to a purse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150235.jpg', 'caption': 'A big orange cat on the floor by a handbag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150235.jpg', 'caption': 'A cat is standing in the corner of the room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150235.jpg', 'caption': 'A cat sits with a hand bag near a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150235.jpg', 'caption': \"A cat rests it's head on a purse\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271359.jpg', 'caption': 'there is a cow and people in the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271359.jpg', 'caption': 'A cow and two pass each other on a crowded street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271359.jpg', 'caption': 'A horse walking down a street next to people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271359.jpg', 'caption': 'A market place that has a donkey walking in the middle of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271359.jpg', 'caption': 'a animal that is walking in a crowd of people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457900.jpg', 'caption': 'Two trucks that are sitting in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457900.jpg', 'caption': 'A blue delivery truck driving down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457900.jpg', 'caption': 'People walking past buildings and trucks on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457900.jpg', 'caption': 'a bench near a tree near a light pole ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457900.jpg', 'caption': 'A couple of delivery trucks parked next to a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507421.jpg', 'caption': 'Two stuffed bears seated at a table for a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507421.jpg', 'caption': 'Toy bears sitting at the table with dishes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507421.jpg', 'caption': 'Teddy bears are sitting in chairs around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507421.jpg', 'caption': 'Two teddy bears having a tea party at a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507421.jpg', 'caption': 'Two teddy bears sitting at a wooden table having a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071090.jpg', 'caption': 'A cat sleeping next to a large white teddy bear wearing birthday hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071090.jpg', 'caption': 'A cat sleeping against a stuffed polar bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071090.jpg', 'caption': 'A black and white cat sleeps next to a stuffed bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071090.jpg', 'caption': 'giant stuffed polar bear looks down on a sleeping cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071090.jpg', 'caption': 'A white teddy bear with a cat sleeping beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158354.jpg', 'caption': 'a white cat sits underneath an umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158354.jpg', 'caption': 'A white cat sitting under an open umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158354.jpg', 'caption': 'A pretty white cat sits patiently beneath a white parasol.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158354.jpg', 'caption': 'A white cat is sitting under the umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158354.jpg', 'caption': 'A white cat sitting under a white umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059949.jpg', 'caption': 'a white cat covering itself with an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059949.jpg', 'caption': 'A white cat sitting on a floor under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059949.jpg', 'caption': 'The white cat is sitting underneath an umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059949.jpg', 'caption': 'A small white cat is sitting under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059949.jpg', 'caption': 'a white cat sitting under a white umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322164.jpg', 'caption': 'A tiger cat sitting on a floor next to a piece of string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322164.jpg', 'caption': 'A brown cat on a red surface next to a silver thread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322164.jpg', 'caption': 'A kitten is staring down at a silver string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322164.jpg', 'caption': 'THERE IS A CAT SITTING ON THE FLOOR LOOKING AT SOMETHING ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322164.jpg', 'caption': 'A cat sitting on the floor with a piece of ribbon in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522380.jpg', 'caption': 'A cat sitting on top of a blue piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522380.jpg', 'caption': 'A cat is sitting on top of a suitcase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522380.jpg', 'caption': 'A cat is laying on top of a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522380.jpg', 'caption': 'A cat on top of a blue suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522380.jpg', 'caption': 'A cat with a concerned look sitting on a suit case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351621.jpg', 'caption': 'Two kites sail high in a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351621.jpg', 'caption': 'Two kites in the sky, one is a kitty and the other is a shark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351621.jpg', 'caption': 'A shark design and a car design kite being flown in the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351621.jpg', 'caption': 'two kites flying one is a shark the other a tiger', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351621.jpg', 'caption': 'Two kites flying in a blue sky side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435785.jpg', 'caption': 'Several cows laying down in a hilly area near a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435785.jpg', 'caption': 'A herd of cattle laying on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435785.jpg', 'caption': 'There are a herd of cows laying on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435785.jpg', 'caption': 'A group of cattle are laying in the sun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435785.jpg', 'caption': 'A herd of cows are sitting on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218255.jpg', 'caption': 'A black bear standing next to a metal pole fence near plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218255.jpg', 'caption': 'a black bear standing over a purple bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218255.jpg', 'caption': 'a bear messing with something near bushes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218255.jpg', 'caption': 'A black bear eating something tied to a rope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218255.jpg', 'caption': 'A very big black bear holding an object by a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279159.jpg', 'caption': 'A large orange cat laying on top of a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279159.jpg', 'caption': 'An orange and white cat sleeping on a blanket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279159.jpg', 'caption': 'A cat laying on a fleece blanket on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279159.jpg', 'caption': 'an orange cat laying on a yellow blanket sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279159.jpg', 'caption': 'An orange tabby cat loves this blanket today', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192620.jpg', 'caption': 'there are many trucks that are going down the freeway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192620.jpg', 'caption': 'Several large trucks traveling down a busy highway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192620.jpg', 'caption': 'Many large trucks are creating a traffic jam.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192620.jpg', 'caption': 'A group of trucks that are sitting in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192620.jpg', 'caption': 'A highway filled with large trucks driving down it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573066.jpg', 'caption': 'Two animals grazing in a wooded area with thin trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573066.jpg', 'caption': 'A blurry shot of two deer in a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573066.jpg', 'caption': 'Wild animals are grazing in the sparse bare forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573066.jpg', 'caption': 'Two animals eating grass in the forest side by side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573066.jpg', 'caption': 'a blurry photo of deer in between trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186518.jpg', 'caption': 'A old truck with a busted window in the tall bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186518.jpg', 'caption': 'a rusty old truck sitting in an overgrown field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186518.jpg', 'caption': 'A rusted out truck parked next to some yellow flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186518.jpg', 'caption': 'Old pick-up with flowers growing in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186518.jpg', 'caption': 'A truck is shown decaying among flowers without a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236162.jpg', 'caption': 'The two cats are laying on the chair together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236162.jpg', 'caption': 'A cat viewing another cat lying in complete slumber on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236162.jpg', 'caption': 'Two cats laying on a red couch next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236162.jpg', 'caption': 'two cats laying on a couch with books', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236162.jpg', 'caption': 'One cat sleeping on sofa arm and another on sofa cushion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502663.jpg', 'caption': 'Food truck with customers ordering them with friends.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502663.jpg', 'caption': 'A group of people that are outside of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502663.jpg', 'caption': 'A could people stand around a food truck to get their dinner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502663.jpg', 'caption': 'People wait outside of a food truck for their dinner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502663.jpg', 'caption': 'A woman buys food from an orange food truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576564.jpg', 'caption': 'a couple of cows stand on some grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576564.jpg', 'caption': 'A herd of black cows standing on top of a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576564.jpg', 'caption': 'Three Bovines looking standing in a field facing the pictures taker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576564.jpg', 'caption': 'a close up of a number of cows near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576564.jpg', 'caption': 'Three cows are standing in the grass outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572702.jpg', 'caption': 'Cat squints through paneled window and metal bars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572702.jpg', 'caption': 'Siamese cat sticking head out of window with bars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572702.jpg', 'caption': 'A grey and white cat in a window behind bars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572702.jpg', 'caption': 'A grey cat stares through steel bars from window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572702.jpg', 'caption': 'The cat is looking out the window wanting to go outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218220.jpg', 'caption': 'Cows and caves behind barbed wire fence on a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218220.jpg', 'caption': 'Cows standing inside of a barbed wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218220.jpg', 'caption': 'Serveral cows behind barbed wire in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218220.jpg', 'caption': 'There are several cows behind a fence, they are looking at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218220.jpg', 'caption': 'A pasture of cows looking over a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513312.jpg', 'caption': 'A cat standing on a desk with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513312.jpg', 'caption': 'A cat looking to its left sitting on a desk next to a remote controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513312.jpg', 'caption': 'there is a orange tabby sitting at a computer desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513312.jpg', 'caption': 'A cat sitting on desk near a remote control. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513312.jpg', 'caption': 'A very cute orange cat sitting on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361111.jpg', 'caption': 'A man standing in front of a hello kitty tv with a cat sleeping on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361111.jpg', 'caption': 'an image of a man petting his cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361111.jpg', 'caption': 'A man petting a cat laying on a shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361111.jpg', 'caption': 'A man petting a cat that is sleeping on a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361111.jpg', 'caption': 'A kitten sleeps high up on a television shaped like a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241273.jpg', 'caption': 'A convoy of dump trucks make their way past the supermarket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241273.jpg', 'caption': 'The car is stopped at an intersection with trucks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241273.jpg', 'caption': 'A white car pulling out of a driveway onto a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241273.jpg', 'caption': 'A car pulling out into a street lined with dump trucks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241273.jpg', 'caption': 'Several dump trucks are going along the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465295.jpg', 'caption': 'A blurry cat sits on top of a bright television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465295.jpg', 'caption': 'A cat sitting on top of a television looking down. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465295.jpg', 'caption': 'Fuzzy picture of a cat sitting on top of a small Phillips television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465295.jpg', 'caption': 'blurred image of a cat sitting on top of a television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465295.jpg', 'caption': 'Cat sitting on top of a television with a blurry face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304819.jpg', 'caption': 'a cat is staring at a television on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304819.jpg', 'caption': 'A cat standing in front of a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304819.jpg', 'caption': 'A cat sitting in front of tv on a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304819.jpg', 'caption': 'a cat that is looking into a computer screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304819.jpg', 'caption': 'The cat is watching closely watching the television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197424.jpg', 'caption': 'A white utility vehicle park next to black van', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197424.jpg', 'caption': 'A white truck and a black truck parked in a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197424.jpg', 'caption': 'This truck is parked next to a black van.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197424.jpg', 'caption': 'Several trucks are parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197424.jpg', 'caption': 'Several types of trucks parked near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580607.jpg', 'caption': 'a couple of boats are parked at a dock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580607.jpg', 'caption': 'A canal with barges on it next to a path with people sitting alongside it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580607.jpg', 'caption': 'People sitting on a bench above the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580607.jpg', 'caption': 'Two people leaning on the edge of a bridge with boats along a quayside in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580607.jpg', 'caption': 'A river and boats seen from atop a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159269.jpg', 'caption': 'some outdoor tables sitting next to some umbrellas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159269.jpg', 'caption': 'Patio furniture is set up near the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159269.jpg', 'caption': 'A patio setting on the beach near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159269.jpg', 'caption': 'A couple of patio sets sitting outside on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159269.jpg', 'caption': 'tables and chairs and closed umbrellas next to a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382850.jpg', 'caption': 'A boat with ropes attached to it, sitting on pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382850.jpg', 'caption': 'A blue boat sitting on a beach next to a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382850.jpg', 'caption': 'A boat is docked on the ground near a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382850.jpg', 'caption': 'a boat tied to the side of a concrete cliff', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382850.jpg', 'caption': 'A small boat suspended by ropes tied to a post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388569.jpg', 'caption': 'A couple of bags of luggage sitting on top of a ship.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388569.jpg', 'caption': 'a couple of black bags are on a boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388569.jpg', 'caption': 'A number of suitcases on the boat in the sea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388569.jpg', 'caption': 'Two suitcases sit with the handles up, on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388569.jpg', 'caption': 'some black suitcases standing by a white fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454610.jpg', 'caption': 'Two boats filled with lots of fresh produce floating on a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454610.jpg', 'caption': 'some people and two women in their boats with vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454610.jpg', 'caption': 'Two women in canoes that are full of porduce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454610.jpg', 'caption': 'Some small wooden boats filled with various produce items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454610.jpg', 'caption': 'people bringing their vegetables to the market by boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576084.jpg', 'caption': 'A man milking a cow during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576084.jpg', 'caption': 'A man milking a brown and white cow in barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576084.jpg', 'caption': 'The guy with the white shirt and baseball cap is milking the cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576084.jpg', 'caption': 'A man on a stool milking a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576084.jpg', 'caption': 'a man sitting on a stool milking a cow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342146.jpg', 'caption': 'A man sanding next to a cow in a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342146.jpg', 'caption': 'a boy looking over a gate at a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342146.jpg', 'caption': 'The boy is admiring the cow in the barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342146.jpg', 'caption': 'A boy observing a cow in a stall of hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342146.jpg', 'caption': 'A man leaned against a fence with a cow in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084097.jpg', 'caption': 'A man holding a phone up to take a selfie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084097.jpg', 'caption': 'The man wearing a green sport jacket takes his picture in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084097.jpg', 'caption': 'A man with an Ipod standing in a coat, tie and leather pants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084097.jpg', 'caption': 'A person with a tie and a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084097.jpg', 'caption': 'A man taking a self photo of himself, in a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339512.jpg', 'caption': 'Dairy cows line up against a barber wire fence to graze the sweeter grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339512.jpg', 'caption': 'Cows standing in grass at a barbed wire fence with ear tags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339512.jpg', 'caption': 'Herd of spotted brown and white cows line up at the fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339512.jpg', 'caption': 'Brown and white cows behind wire fencing in grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339512.jpg', 'caption': 'Brown and white cows lined up against a barbed wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122229.jpg', 'caption': 'Two men taking care of an elephant near stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122229.jpg', 'caption': 'A person is standing on a stairway beside an elephant carrying a man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122229.jpg', 'caption': 'an elephant eating some leaves next to a flight of steps ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122229.jpg', 'caption': 'A person is getting ready to ride on top of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122229.jpg', 'caption': 'One man riding on top of an elephant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322858.jpg', 'caption': 'A baby elephant and an adult elephant in sandy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322858.jpg', 'caption': 'A zoo exhibit with an elephant and her baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322858.jpg', 'caption': 'The older elephant is standing next to the younger elephant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322858.jpg', 'caption': 'a mommy and baby elephant in a zoo setting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322858.jpg', 'caption': 'An elephant in his spot at the zoo with his mother.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123244.jpg', 'caption': 'A man with his foot on the face of someone lying on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123244.jpg', 'caption': 'THERE IS A MAN THAT IS STEPPING ON SOMEONE ON THE GROUND ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123244.jpg', 'caption': 'a man sticking his foot on a person on the ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123244.jpg', 'caption': \"A child laying on the grass with a man putting his foot near the child's face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123244.jpg', 'caption': 'A man has his foot on someone laying on the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549255.jpg', 'caption': 'A girl with running mascara and a bottle of Bacardi in an easy chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549255.jpg', 'caption': 'Woman with bottle of alcohol sitting in chair wearing shirt and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549255.jpg', 'caption': 'A woman drinks rum while slouched in a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549255.jpg', 'caption': 'A woman with mascara smeared on her face with whiskey in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549255.jpg', 'caption': 'A woman sitting on a couch drinking bacardi with smeared mascara', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056400.jpg', 'caption': 'A man wearing glasses while holding a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056400.jpg', 'caption': 'A man holding a banana in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056400.jpg', 'caption': 'A man is holding a banana in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056400.jpg', 'caption': 'Man with glasses holding a mini banana and making a face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056400.jpg', 'caption': 'a guy in a suit holding a banana', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557562.jpg', 'caption': 'A bald man in a suit looking down at something ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557562.jpg', 'caption': 'A bald young man in a black coat and bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557562.jpg', 'caption': 'A man in a suit is looking down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557562.jpg', 'caption': 'The man in the tuxedo is also bald headed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557562.jpg', 'caption': 'A bald headed man looking down and he is wearing a suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407822.jpg', 'caption': 'A man is posing with two young ladies, while holding his drink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407822.jpg', 'caption': 'A formally dressed man with a martini poses with two women in evening gowns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407822.jpg', 'caption': 'A couple of beautiful women standing beside a bald headed man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407822.jpg', 'caption': 'Three young adults pose for a photo in fancy dress', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407822.jpg', 'caption': 'A man in a tuxedo with a wine glass and two women beside him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125160.jpg', 'caption': 'A rear view mirror shows an elephant walking down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125160.jpg', 'caption': 'A large elephant walking behind a car on a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125160.jpg', 'caption': 'the cover of \"alternative route\" has an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125160.jpg', 'caption': 'a guide book with a picture of elephants reflected in a side view mirror ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125160.jpg', 'caption': \"A traveler's guide features a car mirror with the reflection of elephants following.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539874.jpg', 'caption': 'A man wearing a red and black neck tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539874.jpg', 'caption': 'A man is tying a red and black striped tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539874.jpg', 'caption': 'A man in a dress shirt puts on a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539874.jpg', 'caption': 'a man trying to tie his tie in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539874.jpg', 'caption': 'a man tying a tie on a white shirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287970.jpg', 'caption': 'A large elephant standing in front of the capital building in Washington DC.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287970.jpg', 'caption': 'This is an image of an elephant walking with a man near the capitol.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000287970.jpg', 'caption': 'A man walking an elephant down a street in Washington D.C. with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287970.jpg', 'caption': 'An elephant and his handler walk down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287970.jpg', 'caption': 'a person leading an elephant on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024097.jpg', 'caption': 'A group of people and elephants on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024097.jpg', 'caption': 'People and elephants in a procession on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024097.jpg', 'caption': 'people in red coats marching in a parade with elephants while small boy looks on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024097.jpg', 'caption': 'there are many elephants that are walking on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024097.jpg', 'caption': 'boy in plaid observes parade of elephants walking away', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342334.jpg', 'caption': 'A harbor filled with boats floating on water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342334.jpg', 'caption': 'A parade of people in boats on the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342334.jpg', 'caption': 'Many people on boats in the water next to a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342334.jpg', 'caption': 'A Chinese woman rowing a boat has met up with other boats on parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342334.jpg', 'caption': 'A bunch of boats on a river with a man in another boat rowing the opposite direction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531581.jpg', 'caption': 'Three young children who appear to be impoverished stand together in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531581.jpg', 'caption': 'Three little boys, one with a dirty face and sad faces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531581.jpg', 'caption': 'Three children stand huddled together with solemn expressions on their faces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531581.jpg', 'caption': 'A group of young boys standing next to each other on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531581.jpg', 'caption': 'Three children standing together on top of a concrete surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556131.jpg', 'caption': 'a man in a red tie and hat is holding a large fish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556131.jpg', 'caption': 'Man in a suit and tan jacket holding a game fish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556131.jpg', 'caption': 'a close up of a man in a suit holding a fish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556131.jpg', 'caption': 'A man holding a large fish posing for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556131.jpg', 'caption': 'A man dressed in a suit holds onto a fish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144058.jpg', 'caption': 'A view of the harbor with ships moored on a very foggy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144058.jpg', 'caption': 'Dock full of many parked boats with a duck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144058.jpg', 'caption': 'Harbor scene on a foggy day with dozens of boats side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144058.jpg', 'caption': 'A view of a harbor on a smoggy and hazy day,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144058.jpg', 'caption': 'a boating dock with boats surrounding it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221234.jpg', 'caption': 'A large elephant walking through a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221234.jpg', 'caption': 'an elephant in the wild coming across the grasslands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221234.jpg', 'caption': 'An elephant is in the distance of a green area with many large leafy trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221234.jpg', 'caption': 'An elephant is in a large field standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221234.jpg', 'caption': 'An elephant stands in the distance in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370749.jpg', 'caption': 'An elephant stands in the grass staring out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370749.jpg', 'caption': 'A large gray elephant stands in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370749.jpg', 'caption': 'An elephant with tusks standing in the middle of a large field area with green grass and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370749.jpg', 'caption': 'An elephant is standing in a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370749.jpg', 'caption': 'A single elephant standing on the green grass on the plains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194381.jpg', 'caption': 'There is a elephant that is standing besides a lake or river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194381.jpg', 'caption': 'An elephant stands near a rivers bank outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194381.jpg', 'caption': 'an elephant heading for the water to cool off\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194381.jpg', 'caption': 'An elephant next to water near a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194381.jpg', 'caption': 'An elephant standing at the edge of a river in a lushly green landscape', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495288.jpg', 'caption': 'A blue and green plaid tie with a flag pin on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495288.jpg', 'caption': 'A pin is attached to a plaid tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495288.jpg', 'caption': 'There is a plaid tie with a pin attached to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495288.jpg', 'caption': 'A tie has a flag shaped tie pin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495288.jpg', 'caption': \"A man's navy shirt front with a paid tie and a flag tie clip.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537701.jpg', 'caption': 'A man with wearing glasses and a red and white tie is smiling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537701.jpg', 'caption': 'This Asian man is very nicely dressed in a navy shirt and striped tie in red tones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537701.jpg', 'caption': 'A well-dressed man with glasses is posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537701.jpg', 'caption': 'A man with glasses and a tie is smiling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537701.jpg', 'caption': 'an asian man in a dress shirt and tie posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489025.jpg', 'caption': 'There some sort of objects on the ground in that muddy water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489025.jpg', 'caption': 'A group of object on top of a muddy river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489025.jpg', 'caption': 'I actually have no idea what this is other than something in mud.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489025.jpg', 'caption': 'there are several small canoe boats in the mud', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489025.jpg', 'caption': 'Three bridge supports upright in a trickling creek.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138995.jpg', 'caption': 'A boy is dressed up in a tie and is holding a stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138995.jpg', 'caption': 'Little boy in a tie holding a large stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138995.jpg', 'caption': 'there is a small boy wearing a tie and holding a stick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138995.jpg', 'caption': 'A young boy holding a tree branch while standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138995.jpg', 'caption': 'Young boy in shirt and tie holding long stick while standing outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561270.jpg', 'caption': 'A shrimp boat in dry dock with two sailboats in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561270.jpg', 'caption': 'A boat sits on the shore of a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561270.jpg', 'caption': 'A body of water with two boats in the water and one boat on the shore, out of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561270.jpg', 'caption': 'A small boat is on shore beside a marshy inlet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561270.jpg', 'caption': 'An old ship is docked on the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413377.jpg', 'caption': 'A man in a tuxedo is holding a rale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413377.jpg', 'caption': 'A man in a tuxedo and bow tie poses for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413377.jpg', 'caption': 'A man holding a railing and wearing a suit and bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413377.jpg', 'caption': 'A happy man wearing formal wear stands on a balcony overlooking some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413377.jpg', 'caption': 'A man in a suit relaxing on a patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553954.jpg', 'caption': 'The two sumo wrestlers are facing each other with the ref between them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553954.jpg', 'caption': 'A battle between two Sumo Wrestlers in front of a small crowds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553954.jpg', 'caption': 'The large men are in the ring ready to wrestle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553954.jpg', 'caption': 'Two sumo wrestlers and referee with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553954.jpg', 'caption': 'two sumo wrestlers getting ready to wrestle in a ring', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028378.jpg', 'caption': 'A seaport with many boats near some houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028378.jpg', 'caption': 'many small boats in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028378.jpg', 'caption': 'Several boats are docked in a harbor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028378.jpg', 'caption': 'A couple of boats sit on the dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028378.jpg', 'caption': 'There are many boats that are at the dock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277174.jpg', 'caption': 'Beach chairs under umbrella at populated ocean beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277174.jpg', 'caption': 'Two beach chairs and a white and red umbrella at a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277174.jpg', 'caption': 'Two beach chairs and an umbrella sit in the sand on a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277174.jpg', 'caption': 'some chairs sand umbrella flag water and people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277174.jpg', 'caption': 'a couple of chairs out on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419051.jpg', 'caption': 'a cat is standing inside of a bathroom sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419051.jpg', 'caption': 'The cat is getting a drink from the faucet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419051.jpg', 'caption': \"A cat licks it's nose as it stands in front of a bathroom sink.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419051.jpg', 'caption': 'A cat that is sitting near a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419051.jpg', 'caption': 'a brown and white cat on top of a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042055.jpg', 'caption': 'Some colorful umbrellas somewhere in a shaded area during a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042055.jpg', 'caption': 'Colorful umbrellas rest on the ground at a market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042055.jpg', 'caption': 'Large, colorful paper umbrellas are propped up along the porch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042055.jpg', 'caption': 'Row of umbrellas of various colors under a pavilion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042055.jpg', 'caption': 'A row of different colored umbrellas sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266866.jpg', 'caption': 'A person walking across a cross walk holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266866.jpg', 'caption': 'There is a person walking with an umbrella by a taxi.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266866.jpg', 'caption': 'A man carrying a backpack and umbrella as he crosses the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266866.jpg', 'caption': 'a person with an umbrella crosses a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266866.jpg', 'caption': 'a person holding an umbrella while crossing the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237558.jpg', 'caption': 'This aerial shot shows a person crossing the street with an umbrella over their head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237558.jpg', 'caption': 'An overhead shot of a woman crossing the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237558.jpg', 'caption': 'Person holding umbrella walking in cross walk across street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237558.jpg', 'caption': 'A woman with a blue umbrella crosses at a designated crosswalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237558.jpg', 'caption': 'a woman is walking across the street in the rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526576.jpg', 'caption': 'A man standing in front of a white wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526576.jpg', 'caption': 'A male in dark pants and a red tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526576.jpg', 'caption': 'A person with a tie and a shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526576.jpg', 'caption': 'A man with a tie on standing against a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526576.jpg', 'caption': 'A boy with his back agaist the wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179191.jpg', 'caption': 'A group of ties that are on a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179191.jpg', 'caption': 'Several different colored ties are placed on the bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179191.jpg', 'caption': 'Five ties in different colors lying on blankets with sheets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179191.jpg', 'caption': 'THERE ARE A LOT OF DIFFERENT TIES ON THE TABLE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179191.jpg', 'caption': 'Several ties that have been laid out next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021864.jpg', 'caption': 'The ocean inlet is a favorite place for boaters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021864.jpg', 'caption': 'A cruise ship travelling out of an expansive harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021864.jpg', 'caption': 'Boats are traveling in the large open water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021864.jpg', 'caption': 'There is a boat going across the waterway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021864.jpg', 'caption': 'A large body of water with small boats floating on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397274.jpg', 'caption': 'People with umbrellas walking down a street on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397274.jpg', 'caption': 'A narrow city street with two story houses on either side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397274.jpg', 'caption': 'Shoppers walking down a village street under umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397274.jpg', 'caption': 'People walk down a European street as they hold umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397274.jpg', 'caption': 'Some people with some umbrellas on a wet narrow street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229134.jpg', 'caption': 'Coast gaurs approaching a sail boat with big city behind', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229134.jpg', 'caption': 'a sailboat floats along the water in front of buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229134.jpg', 'caption': 'A motor boat and a sail boat on the water in front of a big city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229134.jpg', 'caption': 'A view of a city in the distance across a river with several boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229134.jpg', 'caption': 'A group of boats are enjoying riding on the sea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397890.jpg', 'caption': 'A man getting his collar fixed by another man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397890.jpg', 'caption': 'Three young men getting dressed in formal wear with flowers on their lapels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397890.jpg', 'caption': 'Two men help another man prepare for an event in matching suits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397890.jpg', 'caption': 'A man in a suit helping another with his collar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397890.jpg', 'caption': 'Man trying on suit getting ready for a wedding', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367578.jpg', 'caption': 'A man in a tie waits in a room full of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367578.jpg', 'caption': 'A man sitting at a table with many other people seated around him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367578.jpg', 'caption': 'A man looks at the people in the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367578.jpg', 'caption': 'A balding man sitting at a cafe looks off into the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367578.jpg', 'caption': 'a man wearing a tie sitting next to other people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125661.jpg', 'caption': 'A man holding a beer next to a man in a blue shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125661.jpg', 'caption': 'two men one has a tie and the other has a bowtie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125661.jpg', 'caption': 'Two men in dress shirts pose for a photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125661.jpg', 'caption': 'Two men in formal wear posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125661.jpg', 'caption': 'A man with a beer and another man with their arms around eachother.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213795.jpg', 'caption': 'The two elephants have their trunk on the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213795.jpg', 'caption': 'Two elephants pf different heights walking while gated in. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213795.jpg', 'caption': 'Two elephants are standing next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213795.jpg', 'caption': 'Two elephants in concrete area next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213795.jpg', 'caption': 'Two elephants in a dirt covered enclosure with a reenforced fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076082.jpg', 'caption': 'People walking down a side walk in the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076082.jpg', 'caption': 'Three people walk down a street with lots of buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076082.jpg', 'caption': 'Old city street with people commuting holding umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076082.jpg', 'caption': 'A group of people walking down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076082.jpg', 'caption': 'Two person walk down a city street with a person on moped behind them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335587.jpg', 'caption': 'A man standing in front of pile of reflective ribbons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335587.jpg', 'caption': 'a male in a tie and black shirt and a white wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335587.jpg', 'caption': 'A man in a tie smiles and pumps his fist.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335587.jpg', 'caption': 'A man wearing a black shirt is dancing in front of an object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335587.jpg', 'caption': 'A man that is wearing a shiny tie and dancing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015987.jpg', 'caption': 'Two elephants are touching trunks through a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015987.jpg', 'caption': 'Two elephants with intertwined trunks standing in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015987.jpg', 'caption': 'Two elephants that are touching one another with their trunks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015987.jpg', 'caption': 'two elephants near one another behind a fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015987.jpg', 'caption': 'Twp elephants with their trunks together within a fenced area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151358.jpg', 'caption': 'A newspaper that has sunglasses on top of it sitting in front of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151358.jpg', 'caption': 'an apple sunglasses books and a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151358.jpg', 'caption': 'A folded newspaper and sunglasses are on a table with an apple, books, and teddy bear behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151358.jpg', 'caption': 'An apple sitting on a table next to sunglasses and a news paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151358.jpg', 'caption': 'There are sunglasses laying on the folded newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153288.jpg', 'caption': 'A Star wars storm trooper holding a pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153288.jpg', 'caption': 'A small figurine sunbathes with an umbrella for shade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153288.jpg', 'caption': 'A toy sitting under a pink umbrella on the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153288.jpg', 'caption': 'A Lego Stormtrooper shaded by a mini umbrella at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153288.jpg', 'caption': 'A storm trooper is in the sand under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049777.jpg', 'caption': 'A group of travelers are about to board a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049777.jpg', 'caption': 'some people and their luggage waiting for a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049777.jpg', 'caption': 'A street corner with people in line to get on a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049777.jpg', 'caption': 'Some people are at a bus station ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049777.jpg', 'caption': '\\na double Decker bus traveling down a road with lots of traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076721.jpg', 'caption': 'A group of people walking around parked buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076721.jpg', 'caption': 'There are groups of people walking outside near parked buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076721.jpg', 'caption': 'A scene containing several buses and a number of people walking around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076721.jpg', 'caption': 'several passengers loading onto traveling buses in a open space', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076721.jpg', 'caption': 'Several buses are in a courtyard area as people mill around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319768.jpg', 'caption': 'A row of bamboo umbrellas sitting on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319768.jpg', 'caption': 'Sun going down on a beach with umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319768.jpg', 'caption': 'Tiki umbrellas in a line on a beach during a sunset. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319768.jpg', 'caption': 'A sunset scene of a sea shore where umbrella shades are fixed on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000319768.jpg', 'caption': 'A beach area with umbrellas and people by shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412813.jpg', 'caption': 'a big umbrella sitting on the beach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412813.jpg', 'caption': 'An umbrella is at the beach tilted over', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412813.jpg', 'caption': 'An umbrella sitting on top of a sandy beach near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412813.jpg', 'caption': 'A large umbrella blocks the sun at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412813.jpg', 'caption': 'This is a picture of an umbrella on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532867.jpg', 'caption': 'A person standing on top of a beach holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532867.jpg', 'caption': 'The person is walking on the beach with her umbrella up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532867.jpg', 'caption': 'The woman with an umbrella watches many people in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532867.jpg', 'caption': 'The sand area of a beach that has water on it and a woman with an umbrella over her head standing on the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532867.jpg', 'caption': 'A woman standing on the beach and holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550051.jpg', 'caption': 'people on the street near a sea with waters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550051.jpg', 'caption': 'People are seated at an outdoor restaurant by the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550051.jpg', 'caption': 'a bunch of people that are under a umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550051.jpg', 'caption': 'An outdoor dining area with tables, chairs and umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550051.jpg', 'caption': 'People are sitting at outdoor tables under red umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462953.jpg', 'caption': 'Two teddy bears sitting on top of a pile of suitcases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462953.jpg', 'caption': 'Two teddy bears wait to travel atop the suitcases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462953.jpg', 'caption': 'Two teddy bears sit on a large stack of luggage in a brick building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462953.jpg', 'caption': 'There is a pile of numerous crates with different colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462953.jpg', 'caption': 'Stack of suitcases and traveling bears shown stacked on top of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135975.jpg', 'caption': 'A brown teddy bear sitting next to a blue piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135975.jpg', 'caption': 'A teddy bear sits atop a partly open suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135975.jpg', 'caption': 'A teddy bear positioned between two open suitcases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135975.jpg', 'caption': 'A stuffed teddy bear is sitting on the corner of a suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135975.jpg', 'caption': 'A light brown teddy bear sitting on suitcases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020632.jpg', 'caption': 'a yellow stuffed animal a black purse and a one dollar bill in a suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020632.jpg', 'caption': 'A type of container with various items in it including a stuffed toy and a purse with a dollar bill laid on top of the purse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020632.jpg', 'caption': 'A suitcase is packed with a fuzzy yellow monkey and a dollar bill on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020632.jpg', 'caption': 'A stuffed animal is packed in a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020632.jpg', 'caption': 'A yellow stuffed animal in a piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090645.jpg', 'caption': 'Cluttered apartment with packing being done with clothes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090645.jpg', 'caption': 'A bunch of bags that are in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090645.jpg', 'caption': 'a really messy kitchen looks like a hoarders house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090645.jpg', 'caption': 'The room is very cluttered and dirty looking. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090645.jpg', 'caption': 'A small messy kitchen with clothes and suitcase on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385098.jpg', 'caption': 'A group of people standing next to lots of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385098.jpg', 'caption': 'Several people look at suit cases in a market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385098.jpg', 'caption': 'A walking city street with things for sale. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385098.jpg', 'caption': 'A bunch of people are walking around at a market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385098.jpg', 'caption': 'People at a market place selling mostly luggage ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092335.jpg', 'caption': 'two kayakers enjoy the clear open water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092335.jpg', 'caption': 'Two people are out on murky water with kayaks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092335.jpg', 'caption': 'Two people kyaking on a body of water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092335.jpg', 'caption': 'A couple of kayakers paddling through the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092335.jpg', 'caption': 'A picture of a couple of people in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309993.jpg', 'caption': 'A group of people that are standing together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309993.jpg', 'caption': 'A band with a drummer, guitarists and flutist are playing at a street corner. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309993.jpg', 'caption': 'A group of people standing on a snow covered street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309993.jpg', 'caption': 'A band is playing on the street corner in the cold.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309993.jpg', 'caption': 'The band members are playing music on the sidewalk of the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017364.jpg', 'caption': 'A woman and a man walking down a street carrying luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017364.jpg', 'caption': 'Several people are walking with luggage down a crowded city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017364.jpg', 'caption': 'A man and woman walking down a city street with luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017364.jpg', 'caption': 'People walking near a city street carrying luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017364.jpg', 'caption': 'People walking with suitcases on a city sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086215.jpg', 'caption': 'A large brown dog standing next to a cat on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086215.jpg', 'caption': 'A dog and cat on a bed in a bedroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086215.jpg', 'caption': 'A dog is peering up close while a cat lays on the bed behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086215.jpg', 'caption': 'Dog looking at camera with cat in background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086215.jpg', 'caption': 'The cat and dog looked like they have an agreement to ignore each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302789.jpg', 'caption': 'A piece of luggage sitting on a hardwood floor next to a bed with items on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302789.jpg', 'caption': 'A bag of luggage sitting in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302789.jpg', 'caption': 'A few pieces of luggage are on a messy bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302789.jpg', 'caption': 'a brown suitcase a sink a bed and a backpack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302789.jpg', 'caption': 'Luggage and a backpack on a mattress in an apartment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164594.jpg', 'caption': 'Two men are riding an elephant, a driver and a passenger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164594.jpg', 'caption': 'A big elephant with a chair and riders on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164594.jpg', 'caption': 'A man goes for a ride on an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164594.jpg', 'caption': 'A man and a tourist on top of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164594.jpg', 'caption': 'A tourist and a guide ride on an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052712.jpg', 'caption': 'a red and a black suitcase a rug and some flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052712.jpg', 'caption': 'Red and black luggage sits on a tile floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052712.jpg', 'caption': 'Two small pieces of luggage sitting on an apartment floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052712.jpg', 'caption': 'Suitcases sit on the floor in the hall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052712.jpg', 'caption': 'A sideways picture shows two suitcases and flower pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340884.jpg', 'caption': 'a elephant walking in a dusty and rocky area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340884.jpg', 'caption': 'An elephant walking in dirt next to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340884.jpg', 'caption': 'A baby elephant walking out of its watering hole ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340884.jpg', 'caption': 'An elephant walking away from a watering hole surrounded by rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340884.jpg', 'caption': 'An elephant curling its trunk behind a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300979.jpg', 'caption': 'Elephant crossing paved road near grass and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300979.jpg', 'caption': 'A car driving down a road with an elephant crossing a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300979.jpg', 'caption': 'A large grey elephant crossing the street in front of a car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300979.jpg', 'caption': 'An elephant crossing the road in front of a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300979.jpg', 'caption': 'a large elephant that is walking across the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101189.jpg', 'caption': 'A group of statues holding metal umbrellas near flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101189.jpg', 'caption': 'A sculpture featuring people walking with umbrellas down a side walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101189.jpg', 'caption': 'four people using umbrellas walking in a small area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101189.jpg', 'caption': 'Women are standing outside in the rain with umbrellas up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101189.jpg', 'caption': 'Four statues holding umbrellas in a flower bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250155.jpg', 'caption': 'Two people are sitting on the head of an elephant as it eats. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250155.jpg', 'caption': 'A tourist couple riding on the head of an elephant eating grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250155.jpg', 'caption': 'A couple of people riding on the back of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250155.jpg', 'caption': 'Two women sitting on top of an elephants head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250155.jpg', 'caption': 'The couple is riding the elephant by the water outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502141.jpg', 'caption': 'A large umbrella and some chairs by a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502141.jpg', 'caption': 'Freshly constructed stone steps lead up to the backyard patio through the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502141.jpg', 'caption': 'Steps leading down from and outdoor patio behind a building..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502141.jpg', 'caption': 'An outdoor view of a home featuring a deck, walkway and a patio with an umbrella and a dining set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502141.jpg', 'caption': 'A multi-colored umbrella on a patio, with stone steps leading to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502141.jpg', 'caption': 'A bright umbrella on a patio with stone steps leading to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305437.jpg', 'caption': 'A teenaged girl at a booth at an educational fair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305437.jpg', 'caption': 'Smiling woman in red top putting items in a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305437.jpg', 'caption': 'A girl is kneeling down and packing things in a suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305437.jpg', 'caption': 'A woman with a suitcase distributing literature from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305437.jpg', 'caption': 'A woman placing bags into an old suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037734.jpg', 'caption': 'There are lots of suitcases in a single room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037734.jpg', 'caption': 'Two men stand in a room packed with luggage bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037734.jpg', 'caption': 'Two people in a room with assorted luggage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037734.jpg', 'caption': 'Very crowded room with many different types of luggage being stored', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037734.jpg', 'caption': 'A narrow room with various luggage and two men.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457226.jpg', 'caption': 'A pile of luggage on wooden floor next to dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457226.jpg', 'caption': 'Travel bags are piled-up on a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457226.jpg', 'caption': 'Many bags are lumped together on the floor, including a shopping bag, a duffel bag and a black suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457226.jpg', 'caption': 'Several travel bags and suitcases in a pile on a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457226.jpg', 'caption': 'there are many bags and luggages standing next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303215.jpg', 'caption': 'A large teddybear float is on snow skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303215.jpg', 'caption': 'A white teddy bear posed on skis with ski poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303215.jpg', 'caption': 'a stuffed bear with goggled on wearing snow skies ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303215.jpg', 'caption': 'A stuffed polar bear has goggles and skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303215.jpg', 'caption': 'There is a giant stuffed bear wearing skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446958.jpg', 'caption': 'A cake that has a bear on the top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446958.jpg', 'caption': 'A brown teddy bear in a crib holding a blanket.cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446958.jpg', 'caption': 'A cake with a bear and blanket icing decoration.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446958.jpg', 'caption': 'a crib themed cake with a teddy bear inside the crib', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446958.jpg', 'caption': 'Baby shower cake decorated as a crib with teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487722.jpg', 'caption': 'A bunch of luggage that is in front of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487722.jpg', 'caption': 'A large amount of luggage next to a red truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487722.jpg', 'caption': 'A large amount of suitcases are parked near a red pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487722.jpg', 'caption': 'A truck with loads of garbage in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487722.jpg', 'caption': 'A red truck and a huge pile of trash in the side of a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417455.jpg', 'caption': 'A Pooh bear is sitting in a high chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417455.jpg', 'caption': 'A teddy bear is in a blue high chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417455.jpg', 'caption': 'A stuffed bear sits in a high chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417455.jpg', 'caption': \"A stuffed bear is set in a baby's high chair.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417455.jpg', 'caption': 'There is a bear on a telephone book sitting in a highchair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403854.jpg', 'caption': 'People standing on a crowded sidewalk in the evening, many holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403854.jpg', 'caption': 'A dark scene has some contrasting bright umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403854.jpg', 'caption': 'Several people that are outside in the nighttime.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403854.jpg', 'caption': 'The people are standing under umbrellas in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403854.jpg', 'caption': 'A crowd is gathered at a fence line to oversee an event on a rainy night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304698.jpg', 'caption': 'there are three suitcases That are opened on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304698.jpg', 'caption': 'Several open suitcases sitting on the hotel room floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304698.jpg', 'caption': 'Suitcases laying open on a bed with items packed inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304698.jpg', 'caption': 'four open suitcases filled with clothes and a cabinet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304698.jpg', 'caption': 'Travelors have opened five suitcases on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402858.jpg', 'caption': 'A teddy bear is staring at a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402858.jpg', 'caption': 'A teddy bear seated on a chair in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402858.jpg', 'caption': 'A teddy bear in a chair sitting in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402858.jpg', 'caption': 'Brown teddy bear with glasses sitting on blue couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402858.jpg', 'caption': 'A teddy bear with glasses posed at a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270274.jpg', 'caption': 'Luggage moves around a carousel at an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270274.jpg', 'caption': 'An airport baggage claim conveyor belt has some luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270274.jpg', 'caption': 'A baggage claim area with black suitcases on a baggage carousel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270274.jpg', 'caption': 'Two pieces of luggage on a luggage carrousel at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270274.jpg', 'caption': 'Pieces of luggage on a carousel at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472376.jpg', 'caption': 'A group of travelers at the airport station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472376.jpg', 'caption': 'Several people with luggage and musical instrument cases on a cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472376.jpg', 'caption': 'A group of band members preparing to depart a concert hall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472376.jpg', 'caption': 'A group gathers around their luggage at an airpot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472376.jpg', 'caption': 'Friends gather an at airport while holding their luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456825.jpg', 'caption': 'The dog is swimming in the water with his Frisbee in his mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456825.jpg', 'caption': 'A dog swimming in the water with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456825.jpg', 'caption': 'a dog swimming in a body of water with a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456825.jpg', 'caption': 'There is a dog that jumped in the water to get a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456825.jpg', 'caption': 'A brown dog in water carrying a yellow frisbee behind a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191981.jpg', 'caption': 'A person skate boarding on the top of a half pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191981.jpg', 'caption': 'A person riding on a half pipe at a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191981.jpg', 'caption': 'A skateboarder does a trick at the top of the ramp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191981.jpg', 'caption': 'A guy doing tricks on his skateboard in a home made ramp in his garage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191981.jpg', 'caption': 'A guy rail grinding a skateboard on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133690.jpg', 'caption': 'a person holding a dog sitting on a couch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133690.jpg', 'caption': 'A woman is on a couch with a black dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133690.jpg', 'caption': 'A woman is sitting on a couch holding her black dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133690.jpg', 'caption': 'A woman is holding a dog while on the couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133690.jpg', 'caption': 'a woman with a red shirt is holding a black dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357219.jpg', 'caption': 'Four bears standing on a fallen tree outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357219.jpg', 'caption': 'A group of bear cubs climbing along a branch of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357219.jpg', 'caption': 'Bears in a bear pit climbing on a tree trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357219.jpg', 'caption': 'Four bears are walking on the elevated tree limbs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357219.jpg', 'caption': 'there are several brown bears walking along the log', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004338.jpg', 'caption': 'A bear walking through a field next to a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004338.jpg', 'caption': 'A bear walks through the grass near a tree line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004338.jpg', 'caption': 'a brown bear is walking through the grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004338.jpg', 'caption': 'a black bear walking in the middle of a grass and straw field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004338.jpg', 'caption': 'A bear is shown in a grassy area in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090075.jpg', 'caption': 'A large black bear traveling across a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090075.jpg', 'caption': 'A bear is walking through some rolled hay', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090075.jpg', 'caption': 'A large black bear walking through dried grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090075.jpg', 'caption': 'A bear walks away from the camera into a wooded area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090075.jpg', 'caption': 'An animal that is walking in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423410.jpg', 'caption': 'Two small white dogs looking out small windows of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423410.jpg', 'caption': 'A small dog sitting outside of a window looking in', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423410.jpg', 'caption': 'Two dogs looking out the opposite windows of a door frame.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423410.jpg', 'caption': 'Two dogs looking out of the glass sidelights of a door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423410.jpg', 'caption': 'a close up of a door with two dogs in the glass of either side of the door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203292.jpg', 'caption': 'Outside a window of an old large house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203292.jpg', 'caption': 'A dog that is looking out a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203292.jpg', 'caption': 'a dog in an open window of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203292.jpg', 'caption': 'A dog looks out a window over some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203292.jpg', 'caption': 'A golden retriever dog sitting on a window sill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147787.jpg', 'caption': 'Three dogs are sitting looking outside of a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147787.jpg', 'caption': 'A couple of dogs that are looking out the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147787.jpg', 'caption': 'a group of small dogs are staring out of the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147787.jpg', 'caption': 'A few dogs looking curiously out a window at something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147787.jpg', 'caption': 'Three animals look out a window intently observing the outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358555.jpg', 'caption': 'Here is an image of an outdoor place. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358555.jpg', 'caption': 'some zebras and an elephant some grass bushes and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358555.jpg', 'caption': 'A JUNGLE WITH A VERY BIG ELEPHANT AND A HERD OF ZEBRA', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358555.jpg', 'caption': 'Several zebra and a large elephant out in the wild ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358555.jpg', 'caption': 'Herd of zebras and an elephant in a grass and tree area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197097.jpg', 'caption': 'A brown dog on a black couch with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197097.jpg', 'caption': 'a dog sits on a leather couch in front of a coffee table and laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197097.jpg', 'caption': 'A small dog laying on its belly on a couch at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197097.jpg', 'caption': 'A dog sits on a couch near a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197097.jpg', 'caption': 'A dog sitting on a couch by a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058001.jpg', 'caption': 'A dog asleep on the couch with its paw on the remote ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058001.jpg', 'caption': 'A dog with its paw on a remote controller on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058001.jpg', 'caption': 'Small dog sleeping on a couch with remote controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058001.jpg', 'caption': 'A DOG SLEEPING ON A COUCH WITH HIS PAW ON A REMOTE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058001.jpg', 'caption': 'A pug sleeping on two remotes for the TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273708.jpg', 'caption': 'A woman stands with outreached hands waiting to catch a ring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273708.jpg', 'caption': 'Older woman holding out her hands preparing to catch a frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273708.jpg', 'caption': 'a personembracing herself to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273708.jpg', 'caption': 'a woman in a blue top is catching a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273708.jpg', 'caption': 'A woman holds her hands out to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302243.jpg', 'caption': 'A herd of zebras stand around in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302243.jpg', 'caption': 'Four zebras standing around in a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302243.jpg', 'caption': 'four zebra are standing in a grassy area with trees\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302243.jpg', 'caption': 'Small group of Zebras standing in an open field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302243.jpg', 'caption': 'A group of five zebras stand in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286903.jpg', 'caption': 'Herd of zebras walking single file in grass land.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286903.jpg', 'caption': 'Three zebras walking in a line through the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286903.jpg', 'caption': 'Three zebras walk in a line together in the tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286903.jpg', 'caption': 'A group of zebras that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286903.jpg', 'caption': 'Three zebras walk in a row through the brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165012.jpg', 'caption': 'Little girl is outside ready to play with someone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165012.jpg', 'caption': 'A young standing in grass, pointing and holding a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165012.jpg', 'caption': 'There is a little girl holding a toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165012.jpg', 'caption': 'A cute little girl playing with a disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165012.jpg', 'caption': 'A girl playing with a frisbee on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433279.jpg', 'caption': 'A woman is a green plate on top of her head with company in the house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433279.jpg', 'caption': 'A woman is balancing a Frisbee on her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433279.jpg', 'caption': 'a woman in a white shirt has a green frisbee on her head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433279.jpg', 'caption': 'A person standing in a kitchen with a green frisbee on their head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433279.jpg', 'caption': 'A woman is balancing a frisbee on her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315905.jpg', 'caption': 'Zebra standing by itself in an open field by a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315905.jpg', 'caption': 'a zebra standing in a dry field looking at the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315905.jpg', 'caption': 'A giraffe spots the camera while out and about.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315905.jpg', 'caption': 'A zebra standing in the wild on a cloudy day ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315905.jpg', 'caption': 'Zebra in natural savannah habitat grazing and looking at camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332663.jpg', 'caption': 'A field with animals grazing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332663.jpg', 'caption': 'Several zebras grazing the grassy plains on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332663.jpg', 'caption': 'Herd of zebras grazing in a sahara panorama.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332663.jpg', 'caption': 'Zebras are grazing in the grass with a mountain in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332663.jpg', 'caption': 'A panoramic photo of zebras in their natural environment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025158.jpg', 'caption': 'A little girl holding a red frisbee while wearing a pink visor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025158.jpg', 'caption': 'a little girl wearing a pink visor holding a red Frisbee ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025158.jpg', 'caption': 'A young girl holds a Frisbee at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025158.jpg', 'caption': 'A young girl wearing a pink hat holding a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025158.jpg', 'caption': 'Young girl about to throw a frisbee in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431092.jpg', 'caption': 'A group of people gathered at the rivers edge with their dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431092.jpg', 'caption': 'A group of people and many dogs on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431092.jpg', 'caption': 'People standing while there dogs play in the water and on the riverbank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431092.jpg', 'caption': 'some people and many dogs standing on the shore and in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431092.jpg', 'caption': 'Several people and dogs are gathered by the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288316.jpg', 'caption': 'An animal biting a yellow frisbee next to another man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288316.jpg', 'caption': 'Otters investigating a frisbee thrown into their naturalistic enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288316.jpg', 'caption': 'Two dark colored animals with a yellow plastic disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288316.jpg', 'caption': 'Two otters that are playing with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288316.jpg', 'caption': 'Two small otters playing with a yellow frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123599.jpg', 'caption': 'A zebra and baby grazing on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123599.jpg', 'caption': 'A mother zebra standing next to a baby zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123599.jpg', 'caption': 'a close up of two zebras in a field with grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123599.jpg', 'caption': 'A full grown adult zebra and a baby zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123599.jpg', 'caption': 'A couple of zebras are standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066027.jpg', 'caption': 'Several zebras from behind standing on grass plain with distant trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066027.jpg', 'caption': 'A grouping of zebras running in a open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066027.jpg', 'caption': 'A herd of zebras in the wild near grassy terrain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066027.jpg', 'caption': 'A heard of Zebras moving with another animal group across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066027.jpg', 'caption': 'several zebras and other brown animals running in a grass and straw field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313398.jpg', 'caption': 'An otter investigates two frisbees that are near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313398.jpg', 'caption': \"An otter sitting next to two Frisbee's on a rock.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313398.jpg', 'caption': 'An adorable seal laying next to a yellow and pink frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313398.jpg', 'caption': \"The otter is playing with two Frisbee's. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313398.jpg', 'caption': 'The animal is on the rock with the pink and yellow discs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442791.jpg', 'caption': 'A small animal on a rock near some Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442791.jpg', 'caption': 'An otter playing with some freebees on a rock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442791.jpg', 'caption': 'rocks with two frisbees and an otter on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442791.jpg', 'caption': 'A close up of a small mammal with two small frisbees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442791.jpg', 'caption': 'A couple of animals walking near a couple of colorful frisbees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265433.jpg', 'caption': 'A dog lays in the grass panting with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265433.jpg', 'caption': 'A dog lying on the ground with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265433.jpg', 'caption': 'A dog sitting on a lawn over a red frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265433.jpg', 'caption': 'There is a dog that is lying on the ground with its tongue out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265433.jpg', 'caption': 'A dog is sitting in the grass next to a toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139130.jpg', 'caption': 'zebras graze in a field with sparse grass, in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139130.jpg', 'caption': 'The zebras are eating grass in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139130.jpg', 'caption': 'Four zebra stand near each other looking at the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139130.jpg', 'caption': 'A group of four zebras grazing on grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139130.jpg', 'caption': 'A couple of zebra standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481891.jpg', 'caption': 'A group of young men standing around a volley ball court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481891.jpg', 'caption': 'Group of guys clash into each other trying to catch the frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481891.jpg', 'caption': 'A group of people collide while trying to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481891.jpg', 'caption': 'A group of people are playing with a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481891.jpg', 'caption': 'Scrum of men playing some kind of frisbee-based game on a sports field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350884.jpg', 'caption': 'Several people play a game with a Frisbee in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350884.jpg', 'caption': 'there are a few men that are playing frisbee on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350884.jpg', 'caption': 'A group of teens playing frisbee in a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350884.jpg', 'caption': 'A group of people are playing a game on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350884.jpg', 'caption': 'A group of youths play frisbee in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434217.jpg', 'caption': 'A couple of people playing frisbee in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434217.jpg', 'caption': 'Two teenage boys playing a game of frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434217.jpg', 'caption': 'Two teenagers without shirts are playing frisbee on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434217.jpg', 'caption': 'Two men without shirts playing frisbee in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434217.jpg', 'caption': 'Two shirtless men playing Frisbee in a grassy area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157886.jpg', 'caption': 'A group of zebras drink from a watering hole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157886.jpg', 'caption': 'Several zebras that are drinking from a watering hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157886.jpg', 'caption': 'A group of zebra drinking water from a pond.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000403820.jpg', 'caption': 'An aircraft is flying high in the blue cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531044.jpg', 'caption': 'A giraffe standing near trees most with green leaves and one dead. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531044.jpg', 'caption': 'THERE IS A GIRAFEE THAT IS WALKING IN THE WOODS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531044.jpg', 'caption': 'a giraffe walks through a bunch of bus ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531044.jpg', 'caption': 'a giraffe standing amongst trees and bushes in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531044.jpg', 'caption': 'A giraffe is standing by a couple of trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573756.jpg', 'caption': 'Two giraffe standing next to each other in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573756.jpg', 'caption': 'Giraffes need their long necks to get to the tender leaves up high.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573756.jpg', 'caption': 'Two giraffes are standing in the middle of some vegetation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573756.jpg', 'caption': 'Two giraffes are partially hidden in brush and sticking their necks out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573756.jpg', 'caption': 'Two giraffes in a wild, lightly wooded field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194555.jpg', 'caption': 'there is a large sign that says a street name on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194555.jpg', 'caption': 'A close shot of a sign that says \"Church Avenue\". ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194555.jpg', 'caption': 'A church sign is standing on a lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194555.jpg', 'caption': 'A street sign is seen in front of a bench and some flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194555.jpg', 'caption': 'A sign that says Church Avenue in front of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281317.jpg', 'caption': 'A picture of a busy road at night ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281317.jpg', 'caption': 'City street at night with bright lights shining.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281317.jpg', 'caption': 'A bunch of different vehicles that have their lights on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281317.jpg', 'caption': 'very many lights from the many vehicles on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281317.jpg', 'caption': 'A view of the city is very colorful.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184667.jpg', 'caption': 'A statue standing over a traffic light next to a giant spider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184667.jpg', 'caption': 'a large sculpture above traffic lights in a busy street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184667.jpg', 'caption': 'a street light with a statue of a man on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184667.jpg', 'caption': 'A digital clock is posted on the traffic signal pole of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184667.jpg', 'caption': 'A street with a statue in the middle of a man holding two lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502311.jpg', 'caption': 'Two giraffe standing next to each other at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502311.jpg', 'caption': 'Two giraffes, one is closer and larger then the other, appearing to be curious about the photographer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502311.jpg', 'caption': 'Two giraffes standing in a fenced in area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502311.jpg', 'caption': 'Two giraffes are looking at the camera in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502311.jpg', 'caption': 'Two giraffes look interested from their enclosure surrounded by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553081.jpg', 'caption': 'A family of giraffes stand together beside a wood fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553081.jpg', 'caption': 'a small group of giraffes standing around a tree and eating some leaves ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553081.jpg', 'caption': 'A group of giraffes all trying to eat off the same branch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553081.jpg', 'caption': 'Giraffes eating from the foliage on the fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553081.jpg', 'caption': 'A few giraffes standing around in a fenced in area beside a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265243.jpg', 'caption': 'A city street at night filled with lots of traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265243.jpg', 'caption': 'A view of a street, with blurry cars passing by at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265243.jpg', 'caption': 'An open-shutter picture of cars going up and down a city street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265243.jpg', 'caption': 'A street at night with lines of light from the streetlights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265243.jpg', 'caption': 'A city street with several bright lights on poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333371.jpg', 'caption': 'A four engine Air Algerie prop plane with landing gear out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333371.jpg', 'caption': 'A large airplane flying through a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333371.jpg', 'caption': 'The huge jumbo jet has two engines on each wing as it flies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333371.jpg', 'caption': 'A plane while in flight in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333371.jpg', 'caption': 'An Air Algerie plane in the air on a partly cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461245.jpg', 'caption': 'group of giraffes mingling in a stand of trees\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461245.jpg', 'caption': 'Giraffes and zebras cooling off in a thicket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461245.jpg', 'caption': 'Many giraffe stand under a tree near a few zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461245.jpg', 'caption': 'two groups of giraffes four in each and a few zebras in the brush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461245.jpg', 'caption': 'A bunch of giraffes are hanging out near the trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518605.jpg', 'caption': 'Giraffes and zebras graze in a field with trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518605.jpg', 'caption': 'A group of giraffe hiding among some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518605.jpg', 'caption': 'a few giraffes that are standing out in a field under a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518605.jpg', 'caption': 'Five giraffes and two zebras standing in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518605.jpg', 'caption': 'A medium size herd of giraffes and zebras hiding in a small grove of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188173.jpg', 'caption': 'A giraffe and zebras mingle as cars drive out of an animal park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188173.jpg', 'caption': 'a giraffe standing in the middle of some zebras ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188173.jpg', 'caption': 'this is a giraffe and some zebras being watched', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188173.jpg', 'caption': 'A group of animals walking in the grass next to a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188173.jpg', 'caption': 'A giraffe and several zebra in a grassy area in a drive through zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332027.jpg', 'caption': 'A tall giraffe standing on a rock on top of a hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332027.jpg', 'caption': 'A giraffe walking through the trees, brush and large boulders. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332027.jpg', 'caption': 'One giraffe standing atop some rocks in an outdoor area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332027.jpg', 'caption': 'A giraffe standing in a pasture with a large rock in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332027.jpg', 'caption': 'a giraffe on a rocky outcrop facing the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470536.jpg', 'caption': 'A young girl sitting on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470536.jpg', 'caption': 'a girl sitting on a bench on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470536.jpg', 'caption': 'THERE IS A GIRL THAT IS SITTING ON THE BENCH ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470536.jpg', 'caption': 'A young girl sitting on a bench holding a toothbrush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470536.jpg', 'caption': 'a child sitting on a bench with ducks near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233882.jpg', 'caption': 'A small red plane sitting on top of an airport tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233882.jpg', 'caption': 'Person examining red plane out on the runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233882.jpg', 'caption': 'A small red plane sitting in a open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233882.jpg', 'caption': 'A light propeller aircraft is prepared for flight on a rural runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233882.jpg', 'caption': 'A large, red air plane, is parked with a man standing near. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376996.jpg', 'caption': 'A red small engine plane in motion on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376996.jpg', 'caption': 'A red private airplane is about to take off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376996.jpg', 'caption': \"A plane with it's propellers whirling that is sitting in a field.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376996.jpg', 'caption': 'a red plane with the propellors working on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376996.jpg', 'caption': 'a small red passenger airplane preparing for takeoff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191675.jpg', 'caption': 'A baby giraffe being licked by a big giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191675.jpg', 'caption': 'A mother giraffe licking her child while in nature.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191675.jpg', 'caption': \"A big giraffe licking a smaller giraffe's nose. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191675.jpg', 'caption': 'A mother giraffe is licking the baby giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191675.jpg', 'caption': 'Two giraffe standing next to each other on a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513098.jpg', 'caption': 'A group of planes flying in sequence in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513098.jpg', 'caption': 'Several propeller airplanes fly in unison in a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513098.jpg', 'caption': 'A formation of airplanes flying through a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513098.jpg', 'caption': 'Seven airplanes are flying in a formation under clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513098.jpg', 'caption': 'A group of older propeller planes flying in formation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467142.jpg', 'caption': 'seven airplanes all decorated the same flying in unison ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467142.jpg', 'caption': 'A formation of airplanes flying in a gray sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467142.jpg', 'caption': 'Several airplanes flying in formation against a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467142.jpg', 'caption': 'Several planes fly through the sky, close together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467142.jpg', 'caption': 'Seven military planes flying together while high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413734.jpg', 'caption': 'A airliner pulled up to the gate for loading and unloading of passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413734.jpg', 'caption': 'An airplane parked on the tarmac at an airport ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413734.jpg', 'caption': 'An airplane is on the pavement at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413734.jpg', 'caption': 'An airplane ready to have passengers board it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413734.jpg', 'caption': 'A plane is sitting on the ground while someone is either fixing it or checking it out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240173.jpg', 'caption': 'A red traffic with a mirror hanging off the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240173.jpg', 'caption': 'A mirror is hanging next to a traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240173.jpg', 'caption': 'A traffic light that has a mirror on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240173.jpg', 'caption': 'The mirror is beside a red traffic signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240173.jpg', 'caption': 'A mirror and a traffic light on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011788.jpg', 'caption': 'Older model stop light on a street corner in a tropical city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011788.jpg', 'caption': 'Filtered photo taken of a traffic light on a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011788.jpg', 'caption': 'A street light with a red arrow pointing left.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011788.jpg', 'caption': 'A street stop light indicating a red arrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011788.jpg', 'caption': 'A tagged traffic light displays a red arrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350133.jpg', 'caption': 'a black kitty laying on a bench licking its paw', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350133.jpg', 'caption': 'A cat laying on its side on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350133.jpg', 'caption': 'a cat on a bench near a wooden wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350133.jpg', 'caption': 'A cat that is laying on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350133.jpg', 'caption': \"The cat lying on a bench licks it's paws. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046316.jpg', 'caption': 'A cat laying on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046316.jpg', 'caption': 'A black cat laying on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046316.jpg', 'caption': 'A black cat laying on a wood bench in the sun. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046316.jpg', 'caption': 'A cat sitting on a wooden bench in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046316.jpg', 'caption': 'A BLACK CAT LAYING ON A WOOD BENCH ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133707.jpg', 'caption': 'A black cat sleeping in the sun on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133707.jpg', 'caption': 'A cat sleeping on a bench in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133707.jpg', 'caption': 'A cat takes a nap on a bench in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133707.jpg', 'caption': 'A black cat is curled up on a wood bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133707.jpg', 'caption': 'A black cat is laying out in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081390.jpg', 'caption': 'A couple of giraffe standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081390.jpg', 'caption': 'Two giraffes are up next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081390.jpg', 'caption': ' two large giraffes outside and one is trying to grab something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081390.jpg', 'caption': 'Two tall giraffes stand next to each other while one examines the top of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081390.jpg', 'caption': 'Two giraffes appear to be searching for food from a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504194.jpg', 'caption': 'A dog is sitting near a bench alone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504194.jpg', 'caption': 'A lonely leashed dog sits beside a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504194.jpg', 'caption': 'Black and white photograph of a dog next to a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504194.jpg', 'caption': 'A stylized photo of a dog tethered to a public bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504194.jpg', 'caption': 'A dog is tied to a bench and is sitting on concrete near a bicycle rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373846.jpg', 'caption': 'A busy airport with planes parked on the runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373846.jpg', 'caption': 'An airplane on a tarmac has several workers near it in safety vests.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373846.jpg', 'caption': 'Two passenger jets are on the tarmac by the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373846.jpg', 'caption': 'There are several airplanes parked on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373846.jpg', 'caption': 'Some planes sitting on a tarmac of an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477143.jpg', 'caption': 'a giraffe leaning over so it can drink some water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477143.jpg', 'caption': 'The giraffe drinks from water near an antelope and another giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477143.jpg', 'caption': 'two giraffe standing next to some water in a dry are', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477143.jpg', 'caption': 'Giraffes and other wildlife congregate beside a drinking hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477143.jpg', 'caption': 'The two giraffes are by the watering hole together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156503.jpg', 'caption': 'A group of buses parked in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156503.jpg', 'caption': 'A street view of a building and several buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156503.jpg', 'caption': 'Some buses are pulling up to the bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156503.jpg', 'caption': 'Several busses in front of a curbed building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156503.jpg', 'caption': 'Large buses parked in front of rounded building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315037.jpg', 'caption': 'A man on a bench working on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315037.jpg', 'caption': 'A man in black clothes and a plaid cap sits on a bench and types on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315037.jpg', 'caption': 'A man sitting on a wooden bench with his laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315037.jpg', 'caption': 'The man is sitting on the bench typing on his laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315037.jpg', 'caption': 'a man that is sitting on a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018462.jpg', 'caption': 'a man waiting for a bus at a stop on a corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018462.jpg', 'caption': 'A man standing and preparing for the oncoming bus to pick him up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018462.jpg', 'caption': 'A man standing and waiting for a red bus to pick him up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018462.jpg', 'caption': 'A guy by a big wet street with some traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018462.jpg', 'caption': 'A man stands on the side of a wet road with a bus in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201670.jpg', 'caption': 'A road filled with snow and traffic lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201670.jpg', 'caption': 'A line of red traffic lights and the cars at them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201670.jpg', 'caption': 'A street filled with traffic stopped at a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201670.jpg', 'caption': 'There are many electronic stop lights on the busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201670.jpg', 'caption': 'City scene of cars at sunset going past stoplights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480416.jpg', 'caption': \"People sitting on a bench on a town's sidewalk.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480416.jpg', 'caption': 'A group of people who are sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480416.jpg', 'caption': 'Group of people sitting on a park bench along the side of a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480416.jpg', 'caption': 'a couple of people sits on a wooden bench ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480416.jpg', 'caption': 'A group of women sitting on top of a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533532.jpg', 'caption': 'there are many bags and luggages on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533532.jpg', 'caption': 'A woman standing around with several pieces of luggage on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533532.jpg', 'caption': 'Two female travelers wait among piles of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533532.jpg', 'caption': 'Two women are in the waiting area with many bags of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533532.jpg', 'caption': 'People standing near luggage placed on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348795.jpg', 'caption': 'Man sit on a icy bench with skis on his feet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348795.jpg', 'caption': 'A skier is getting equipped and ready to perform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348795.jpg', 'caption': 'A man laying on his back wearing a blue pair of skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348795.jpg', 'caption': 'A guy wearing skies throws his legs up as he rides the lift up the hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348795.jpg', 'caption': 'a man is holding his skis up while on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124390.jpg', 'caption': 'Two giraffes standing outdoors near a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124390.jpg', 'caption': 'two giraffes are walking around a dirt yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124390.jpg', 'caption': 'Two giraffes standing in a dirt lot next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124390.jpg', 'caption': 'A pair giraffes standing still in a courtyard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124390.jpg', 'caption': 'Two giraffes stand in the yard of their zoo enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052527.jpg', 'caption': 'A large mirror reflecting a bus driving down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052527.jpg', 'caption': 'you can see there is another bus in this side view mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052527.jpg', 'caption': 'THERE IS A BUS IN THE MIRROR REFLECTION THAT IS PARKED ON THE STREET ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052527.jpg', 'caption': 'The view from a mirror, of a bus parked at the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052527.jpg', 'caption': 'a very big bus moving on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169226.jpg', 'caption': 'A busy city street with dimly lit trees at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169226.jpg', 'caption': 'A time lapsed photo of vehicle traffic at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169226.jpg', 'caption': 'A picture of cars parked on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169226.jpg', 'caption': 'Gorgeous night scene with streaming lights leading to a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169226.jpg', 'caption': 'A city street at night with a tall tower at the end of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038726.jpg', 'caption': 'A man sitting on a bench next to a slug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038726.jpg', 'caption': 'A man sitting on a bench next to a brown, animated creature.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038726.jpg', 'caption': 'A man and a stuffed animal are sitting next to each other on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038726.jpg', 'caption': 'A man poses on a bench next to a statue of a giant ant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038726.jpg', 'caption': 'A man sitting on a bench with hands touching his face with a stuffed animal sitting on his side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097659.jpg', 'caption': 'A traffic light under a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097659.jpg', 'caption': 'A traffic light is green near a one way sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097659.jpg', 'caption': 'a yellow traffic light a one way sign and some clouds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097659.jpg', 'caption': 'A stop light on a pole on a clear day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097659.jpg', 'caption': 'A traffic light with a crosswalk sign and a one way sign on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189197.jpg', 'caption': 'A gray day at a park with a stone bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189197.jpg', 'caption': 'A sidewalk sitting near a green next to a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189197.jpg', 'caption': 'A tree that is sitting in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189197.jpg', 'caption': 'A stone bench next to a lake and walking path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189197.jpg', 'caption': 'A scenic view in a park with a sidewalk, trees and a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187240.jpg', 'caption': 'there is a service truck that is behind a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187240.jpg', 'caption': \"A rescue truck is parked behind a bus with it's doors open on the city street.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187240.jpg', 'caption': 'Two vehicles are parked along a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187240.jpg', 'caption': \"A white van with it's side and rear doors open is parked behind a red bus. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187240.jpg', 'caption': 'A red bus next to a white van on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492544.jpg', 'caption': 'A single giraffe that is walking in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492544.jpg', 'caption': 'Lone giraffe walking through dry grass and low brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492544.jpg', 'caption': 'A giraffe making its way up a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492544.jpg', 'caption': 'A tall giraffe standing in a field filled with green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492544.jpg', 'caption': 'A giraffe peers its head above the vegetation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372433.jpg', 'caption': 'A traffic light outside of a building next to a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372433.jpg', 'caption': 'A group of three traffic signals on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372433.jpg', 'caption': 'Three traffic lights, one red, one yellow, and one green. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372433.jpg', 'caption': 'Two traffic lights on a pole, one yellow and one green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372433.jpg', 'caption': 'A freestanding traffic light on a street corner changes colors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221521.jpg', 'caption': 'A bench with two wooden statues sitting behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221521.jpg', 'caption': 'a wooden bench in front of a railing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221521.jpg', 'caption': 'A wooden bench is held up by two carved wooden figures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221521.jpg', 'caption': 'A park bench with some wooden figures holding it up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221521.jpg', 'caption': 'Three wood carvings of humans hold up a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329494.jpg', 'caption': 'Two giraffe standing next to a tree covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329494.jpg', 'caption': 'A couple of large giraffe standing in the bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329494.jpg', 'caption': 'Two giraffes are in a field near mountains ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329494.jpg', 'caption': 'Two giraffes that are walking together in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329494.jpg', 'caption': 'The two giraffes are roaming the grasslands together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122007.jpg', 'caption': 'Two giraffe standing next to each other in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122007.jpg', 'caption': 'Two giraffes are climbing a hill with mountains in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122007.jpg', 'caption': 'Two giraffes standing in a brush covered area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122007.jpg', 'caption': 'Two giraffe are standing near each other in tall brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122007.jpg', 'caption': 'two giraffes sitting in the grass next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027756.jpg', 'caption': 'A traffic light glows red on a cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027756.jpg', 'caption': 'The light at an intersection is red on a dreary day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027756.jpg', 'caption': 'A street with traffic lights above and various buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027756.jpg', 'caption': 'Three red traffic lights suspended above an intersection by a cable.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027756.jpg', 'caption': 'The lights at an intersection are all red. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355777.jpg', 'caption': 'A street with busses and cars next to a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355777.jpg', 'caption': 'Two photographs: dark one of a village and a bustling city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355777.jpg', 'caption': 'A bus coming up the road to stop at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355777.jpg', 'caption': 'A double decker bus is approaching a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355777.jpg', 'caption': 'A picture of some people near a building next to a picture of some vehicles on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181948.jpg', 'caption': 'A traffic light and many cars on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181948.jpg', 'caption': 'Ground level view of wide street intersection with line of waiting cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181948.jpg', 'caption': 'A busy intersection where several vehicles wait at a traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181948.jpg', 'caption': 'a busy street with a green stoplight arrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181948.jpg', 'caption': 'A traffic sign and a hydrant in the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534194.jpg', 'caption': 'a man sitting on a bench in a slightly flooded area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534194.jpg', 'caption': 'A bench is surrounded by water as a man sits on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534194.jpg', 'caption': 'A man on park bench in flooded area next to harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534194.jpg', 'caption': 'a bench on a flooded surface near a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534194.jpg', 'caption': 'A ban sitting on a bench during a flood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474862.jpg', 'caption': 'A lake is flooded over its banks several inches and people are sitting on benches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474862.jpg', 'caption': 'Two park benches sitting in a flooded marina.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474862.jpg', 'caption': 'People sit on benches that have water on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474862.jpg', 'caption': 'People sit on a bench surrounded by water .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474862.jpg', 'caption': 'People sit on benches in a flooded plain beside a marina.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032682.jpg', 'caption': 'A giraffe standing in a lush green field with lots of plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032682.jpg', 'caption': 'A giraffe on a large plain with herd animals in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032682.jpg', 'caption': 'A giraffe in a grassy field full of animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032682.jpg', 'caption': 'The giraffe and other animals stand on the plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032682.jpg', 'caption': 'A giraffe and other animals enjoying the sun outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548159.jpg', 'caption': 'Two rows of red double decker buses on a green lawn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548159.jpg', 'caption': 'rows of red double decker buses sitting on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548159.jpg', 'caption': 'A fleet of many red double decker buses parked on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548159.jpg', 'caption': 'Two long rows of double-decker buses parked on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548159.jpg', 'caption': 'Red double decker buses are parked in straight lines on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131965.jpg', 'caption': 'An empty park bench next to a small lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131965.jpg', 'caption': 'A park bench sits empty, with water in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131965.jpg', 'caption': 'An empty bench facing a pond in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131965.jpg', 'caption': 'An empty park bench nestled between the trees and a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131965.jpg', 'caption': 'A bench sitting on a grassy area near a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423508.jpg', 'caption': 'two benches, a small statue and some street signs stand between a street curb and the brick facade of a large building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423508.jpg', 'caption': 'A corner has a fire hydrant statue in front of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423508.jpg', 'caption': 'A blue street sign with the words Merton st. is next to a white piece of artwork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423508.jpg', 'caption': 'A white sculpture on a sidewalk in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423508.jpg', 'caption': 'A street corner with a brick building and a white sculpture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187411.jpg', 'caption': 'A herd of sheep grazing on a pile of hay in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187411.jpg', 'caption': 'A flock of sheep are circled around some hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187411.jpg', 'caption': 'Many sheep are eating hay in an open field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187411.jpg', 'caption': 'A flock of sheep in a circle eating hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187411.jpg', 'caption': 'A small flock of woolly sheep are shown eating a pile of hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271900.jpg', 'caption': 'Some sheep are next to a hay pile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271900.jpg', 'caption': 'There are four sheep eating the hay together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271900.jpg', 'caption': 'Some black and white sheep are eating hay from a pile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271900.jpg', 'caption': 'A herd of sheep standing in the hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271900.jpg', 'caption': 'Four lambs on a farm enjoy eating their hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066510.jpg', 'caption': 'An old fire hydrant in the middle of the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066510.jpg', 'caption': 'A fire hydrant in the woods among damaged trees and logs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066510.jpg', 'caption': 'a fire hydrant attached to part of a wooden fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066510.jpg', 'caption': 'A worn and rusted fire hydrant near a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066510.jpg', 'caption': 'A rusty fire hydrant in an overgrown plot of land.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147835.jpg', 'caption': 'A green pasture with lots of animals in the foreground and mountains in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147835.jpg', 'caption': 'a bunch of sheep in a field eating', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147835.jpg', 'caption': 'A flock of sheep in a large field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147835.jpg', 'caption': 'A large fenced field holds a large flock of sheep in a meadow area surrounded by small hills.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147835.jpg', 'caption': 'There is a large flock of sheep in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463303.jpg', 'caption': 'the fire hydrant is behind a rock and flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463303.jpg', 'caption': 'A picture of a fire hydrant surrounded by plants and rocks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463303.jpg', 'caption': 'A fire hydrant is covered by rocks and foliage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463303.jpg', 'caption': 'A fire hydrant and some bushes with flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463303.jpg', 'caption': 'A fire hydrant surrounded by rocks and a bush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017859.jpg', 'caption': 'A fire hydrant sitting on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017859.jpg', 'caption': 'a photo of a tree with a car parked under it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017859.jpg', 'caption': 'A fire hydrant in front of a blossoming tree on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017859.jpg', 'caption': 'an image of outdoor scene with fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017859.jpg', 'caption': 'A yellow fire hydrant is next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434693.jpg', 'caption': 'A close up of a fire hydrant, near a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434693.jpg', 'caption': 'A fire hydrant is standing in the middle of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434693.jpg', 'caption': 'A white fire hydrant posed by the side of a business building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434693.jpg', 'caption': 'A fireplug outside of pink house with a white fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434693.jpg', 'caption': 'A fire hydrant that is painted white stands in front of a pink house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315128.jpg', 'caption': 'there is a large concrete sign small buildings behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315128.jpg', 'caption': \"A sign to a big place that's next to a fire hydrant. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315128.jpg', 'caption': 'A sign at the entrance of an establishment with cactus plants by it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315128.jpg', 'caption': 'desert plants and yellow fire hydrant in front of a monument', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315128.jpg', 'caption': 'A yellow fire hydrant with a small guard bar around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524694.jpg', 'caption': 'A giraffe eating food from a very large rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524694.jpg', 'caption': 'A baby giraffe has its nose against a large rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524694.jpg', 'caption': 'A giraffe drinks from a puddle on top of a boulder in its enclosure. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524694.jpg', 'caption': 'A giraffe examines a rock in its enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524694.jpg', 'caption': 'A small giraffe sticks its nose on top of a large rock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184778.jpg', 'caption': 'A fire hydrant that has been painted many colors in a tropical area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184778.jpg', 'caption': 'A green, blue, and red fire extinguisher beside a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184778.jpg', 'caption': 'a colorful fire hydrant sits in the bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184778.jpg', 'caption': 'A red and blue fire hydrant sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184778.jpg', 'caption': 'The colorful fire hydrant is sitting in the garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446909.jpg', 'caption': 'a man sitting on a green bench in a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446909.jpg', 'caption': 'there is a man sitting on a green bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446909.jpg', 'caption': 'a man with glasses sits on a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446909.jpg', 'caption': 'A man is sitting on a green bench in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446909.jpg', 'caption': 'An overexposed photograph of a man sitting on a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267164.jpg', 'caption': 'There is a red fire hydrant partially covered in ash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267164.jpg', 'caption': 'a small hydrant placed on a construction site ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267164.jpg', 'caption': 'A fire hydrant sunken in to mud amid trash', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267164.jpg', 'caption': 'A fire hydrant near a concrete barricade with trash around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267164.jpg', 'caption': 'A very cute little red fire hydrant by a big wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199247.jpg', 'caption': 'A herd of animals laying down in a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199247.jpg', 'caption': 'THERE ARE ANIMALS IN THE GRASS LYING AROUND', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199247.jpg', 'caption': 'a group of animals laying around in the grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199247.jpg', 'caption': 'some black animals are laying in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199247.jpg', 'caption': 'Multiple animals grazing in a field of very tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003932.jpg', 'caption': 'A small lamb with a blue rope tied around its head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003932.jpg', 'caption': ' black sheep in their stable and one its head tired', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003932.jpg', 'caption': 'A sheep with a blue rope tied around his head standing next to another sheep in a red cage filled with hay. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003932.jpg', 'caption': 'Some black and brown sheep are in caged pens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003932.jpg', 'caption': 'A GROUP OF SHEEP WITH MOST OF THEM IN INDIVIDUAL CAGES ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141143.jpg', 'caption': 'A flock of birds flying over a beach near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141143.jpg', 'caption': 'A large number of seagulls flying and standing on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141143.jpg', 'caption': 'A beach with many seagulls on the ground and many more flying over them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141143.jpg', 'caption': 'a flock of seagulls are standing on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141143.jpg', 'caption': 'A crowded beach with birds landing and flying', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494679.jpg', 'caption': 'Two giraffe and a zebra standing in a enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494679.jpg', 'caption': 'The two giraffes are standing together, while the zebra is by itself. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494679.jpg', 'caption': 'Two giraffes walking next to a zebra outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494679.jpg', 'caption': 'Giraffes and zebras sharing accommodations at a zoo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494679.jpg', 'caption': 'There are two giraffes and a zebra walking around the dirt path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049763.jpg', 'caption': 'three people running on a beach with waves and lots of birds in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049763.jpg', 'caption': 'Three people run by the ocean while birds fly overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049763.jpg', 'caption': 'hundreds of sea gulls flying around this family', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049763.jpg', 'caption': 'The family running on the beach with many birds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049763.jpg', 'caption': 'People are jogging on the beach as a huge flock of birds fly over the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279818.jpg', 'caption': 'The hitchhiker is waiting for the next available ride.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279818.jpg', 'caption': 'Man sitting on a bench with a back pack and his bedroll.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279818.jpg', 'caption': 'A man sitting on a park bench with blanket and bag beside him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279818.jpg', 'caption': 'a man sitting on a bench next to a fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279818.jpg', 'caption': 'The man is sitting on a bench beside a red fire hydrant with his blanket and bag. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279818.jpg', 'caption': 'Man with sleeping bag and backpack sitting on bench near fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277518.jpg', 'caption': 'A boat sitting next to a beach in the ocean covered with birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277518.jpg', 'caption': 'A small wooden boat with birds using it as a perch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277518.jpg', 'caption': 'Birds on a dirty boat near the shore', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277518.jpg', 'caption': 'Birds are standing on an old boat that is tied to the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277518.jpg', 'caption': 'An old canoe stranded on the coast of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114313.jpg', 'caption': 'A man with a wrench turning off a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114313.jpg', 'caption': 'A city worker has a hose attached to a fire hydrant as he turns a lever', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114313.jpg', 'caption': 'A man is bent over a yellow fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114313.jpg', 'caption': 'A man is hooking up an Orange hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114313.jpg', 'caption': 'An attendant has attached a hose to a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230056.jpg', 'caption': 'A flock of birds walking along a beach near water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230056.jpg', 'caption': 'Several birds walk across the shore as the sun sets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230056.jpg', 'caption': 'some birds with long necks standing in the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230056.jpg', 'caption': 'Four birds walking behind each other in the water and a boat out to sea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230056.jpg', 'caption': 'There are cranes in the water and a boat in the distance. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524140.jpg', 'caption': 'A large red bus on the side of a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524140.jpg', 'caption': 'A red bus is next to a curb and trash bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524140.jpg', 'caption': 'A large red and white bus is sitting on the side of the road by a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524140.jpg', 'caption': 'A bus stopped on the of road with a big white bag next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524140.jpg', 'caption': 'A red and white bus is waiting with its door open by the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391161.jpg', 'caption': 'a hydrant placed besides a road in the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391161.jpg', 'caption': 'A red fire hydrant next to a street across the street from a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391161.jpg', 'caption': 'A fire hydrant sitting on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391161.jpg', 'caption': 'A red fire hydrant sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391161.jpg', 'caption': 'A fire hydrant on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000974.jpg', 'caption': 'An elephant with a man and three children on its back drinking water in the jungle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000974.jpg', 'caption': 'A man riding on and elephants neck and guiding it while children ride on a seat behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000974.jpg', 'caption': 'a group of people ride atop of an elephant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000974.jpg', 'caption': 'A guide and three people riding an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000974.jpg', 'caption': 'A few people riding on an elephants back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356092.jpg', 'caption': 'A white bird sitting on top of a wooden post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356092.jpg', 'caption': 'A white parrots sits on his perch near palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356092.jpg', 'caption': 'A large white tropical bird perched on a palm tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356092.jpg', 'caption': 'A White Cockatoo stands on a branch with some palm trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356092.jpg', 'caption': 'a white and black bird some plants and clouds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005694.jpg', 'caption': 'A white parrot standing next to a jungle covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005694.jpg', 'caption': 'Up close shot of a some type of beautifully white tropical bird', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005694.jpg', 'caption': 'A white bird is standing in front of plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005694.jpg', 'caption': 'a white bird with a black beak and some trees and bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005694.jpg', 'caption': 'A pure white parrot with red eyes and a black beak.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137265.jpg', 'caption': 'A view of someone in the sky parachuting to the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137265.jpg', 'caption': 'close up of a paper with type on it and a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137265.jpg', 'caption': 'there is a kite that is being flown high in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137265.jpg', 'caption': 'A bird is just barely visible in the sky around a red umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137265.jpg', 'caption': 'A man is floating with a parachute high in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568883.jpg', 'caption': 'The people are eating outside of the restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568883.jpg', 'caption': 'A large group of people sit at a table outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568883.jpg', 'caption': 'A bunch of folks gathered at some ding tables out side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568883.jpg', 'caption': 'A group of people sitting around a table together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568883.jpg', 'caption': 'People gathered outside sitting around tables in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009142.jpg', 'caption': 'a bird standing on some rocks near the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009142.jpg', 'caption': 'A seagull is standing in the sand on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009142.jpg', 'caption': 'A bird standing on the sand at the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009142.jpg', 'caption': 'A bird standing in the sand watches the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009142.jpg', 'caption': 'A bird standing on the sand near a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123598.jpg', 'caption': 'A small bird sitting on a beach next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123598.jpg', 'caption': 'The gull enjoys a moment of peacefulness on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123598.jpg', 'caption': 'an image of a bird that is headed to the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123598.jpg', 'caption': 'A small bird at the beach near ocean waters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123598.jpg', 'caption': 'A close up of a seagull standing on the beach with the ocean in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491965.jpg', 'caption': 'A white bus driving past a hillside covered with trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491965.jpg', 'caption': 'A bus sits parked outside of a building with desert landscaping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491965.jpg', 'caption': 'The city bus is driving next to a cactus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491965.jpg', 'caption': 'A train on a track in front of some rocks, trees and buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491965.jpg', 'caption': 'a bus going past an old building surrounded by plants ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546980.jpg', 'caption': 'A sheep eats grass alone by a lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546980.jpg', 'caption': 'A sheep grazing in a field above a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546980.jpg', 'caption': 'A white sheep grazing in the grass on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546980.jpg', 'caption': 'A sheep eating grass on a grassy hillside next to a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546980.jpg', 'caption': 'A sheep is grazing in a grassy area above a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393266.jpg', 'caption': 'A car driving through a tunnel under buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393266.jpg', 'caption': 'Car passing through a very small tunnel in a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393266.jpg', 'caption': 'A car driving through a tunnel between two buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393266.jpg', 'caption': 'A tunnel in the middle of a street with a car about to go down it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393266.jpg', 'caption': 'A car is driving through a tunnel in a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312544.jpg', 'caption': 'A couple of small birds sitting on a metal rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312544.jpg', 'caption': 'A couple of birds sitting on the back of an iron bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312544.jpg', 'caption': 'Two birds perch beside each other on a metal bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312544.jpg', 'caption': 'Two birds sitting on the back of a metal bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312544.jpg', 'caption': 'two small birds on a bench with a blurry background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134001.jpg', 'caption': 'A street sign standing on a corner in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134001.jpg', 'caption': 'A street sign outside of a building with a store front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134001.jpg', 'caption': 'A set of street signs in front of a store on the corner of a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134001.jpg', 'caption': 'Traffic signs are abundant on a pole by a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134001.jpg', 'caption': 'A variety of signs on a street corner by a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270351.jpg', 'caption': 'A grop of pigeons in front of an open window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270351.jpg', 'caption': 'Three pigeons lined up on a roof below a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270351.jpg', 'caption': 'a big window that has some birds out front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270351.jpg', 'caption': 'A flock of black pigeons sitting on a buildings ledge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270351.jpg', 'caption': 'Three birds sitting underneath a window, that is open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151231.jpg', 'caption': 'A stop sign with a sign above it that reads, \"David\". ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151231.jpg', 'caption': 'a close up ofa stop sin with trees in the background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151231.jpg', 'caption': 'A street sign and stop sign on the same pole at and intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151231.jpg', 'caption': 'Stop sign in urban intersection with trees lining sides.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151231.jpg', 'caption': 'A stop sign and street signs on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035887.jpg', 'caption': 'Three birds eat from a hanging bird feeder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035887.jpg', 'caption': 'Several cute little birds hanging on a bird feeder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035887.jpg', 'caption': 'A hanging bird feeder with several birds eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035887.jpg', 'caption': 'A group of birds hanging off the side of a feeder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035887.jpg', 'caption': 'Three birds perched on a cylindrical bird feeder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259683.jpg', 'caption': 'A crowded city filled with lots of people and traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259683.jpg', 'caption': 'A horse and carriage ride down a rainy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259683.jpg', 'caption': 'an image of a night scene walking in rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259683.jpg', 'caption': 'Sepia photograph of horse drawn carriage in a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259683.jpg', 'caption': 'A horse drawn carriage is traveling a city street on a rainy night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230976.jpg', 'caption': 'A chalk sign is placed outside on a wall advertising a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230976.jpg', 'caption': 'A sign in front of a building welcoming customers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230976.jpg', 'caption': 'A chalk board sign reading \"feeling hungry come on in.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230976.jpg', 'caption': 'a chalkboard with an a drawing on it outside a restaurant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230976.jpg', 'caption': 'A black board has some white writing on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450400.jpg', 'caption': 'A man is dressed in all black has on a black hat and glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450400.jpg', 'caption': 'A man wearing glasses dressed in all black on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450400.jpg', 'caption': 'A man in all black standing and staring. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450400.jpg', 'caption': 'A guy in a black outfit stands at a crosswalk looking to his left. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450400.jpg', 'caption': 'A man stands in the street near some bushes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176149.jpg', 'caption': 'A street sign slightly knocked over next to a rural road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176149.jpg', 'caption': 'A deer crossing sign by a road is crooked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176149.jpg', 'caption': 'A street sign showing a deer crossing for miles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176149.jpg', 'caption': 'A road sign warning of deer crossings on a country road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176149.jpg', 'caption': 'This is an image of a dear crossing sign which is bent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507921.jpg', 'caption': 'Street signage on post near roadway in city environment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507921.jpg', 'caption': 'a no skate boarders sign on the side of the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507921.jpg', 'caption': 'No skateboarding, littering, and parking street signs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507921.jpg', 'caption': 'A city street with signs stating \"no parking\" and \"no skateboards.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507921.jpg', 'caption': 'A No Parking, No Skateboards and No Littering sign on a street side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040621.jpg', 'caption': 'a couple of giraffes eating out of a basket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040621.jpg', 'caption': 'A couple of giraffe standing next to a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040621.jpg', 'caption': 'Two giraffes that are eating some hay out of a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040621.jpg', 'caption': 'The giraffe is eating from his feeding bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040621.jpg', 'caption': 'A couple of giraffes eating hay from a trough.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500495.jpg', 'caption': 'Four giraffes standing behind a short wall with trees behind them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500495.jpg', 'caption': 'There are several giraffes standing near some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500495.jpg', 'caption': 'Giraffes and their young stand by a wall in their zoo enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500495.jpg', 'caption': 'A group of giraffe standing by a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500495.jpg', 'caption': 'Four giraffes that are standing near each other.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000419860.jpg', 'caption': 'There is a large pizza on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419860.jpg', 'caption': 'A pizza and a person with a pizza cutter on a blue table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419860.jpg', 'caption': 'A delicious pizza sitting on a table next to a bottle of alcohol.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419860.jpg', 'caption': 'A person getting ready to cut up a pizza on a blue table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117836.jpg', 'caption': 'A pizza on top of a white plate covered in greens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117836.jpg', 'caption': 'A plate with a pizza next to two wine glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117836.jpg', 'caption': 'A plate of odd looking pizza next to two wine glasses and eye glasses case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117836.jpg', 'caption': 'A pizza with greens and cheese next to wine glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117836.jpg', 'caption': 'Assortment of fresh herbs with cheese o pizza served with wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071136.jpg', 'caption': 'A pizza on a metal pan with people sitting around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071136.jpg', 'caption': 'A whole pizza pie with many different toppings sitting on a pizza stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071136.jpg', 'caption': 'A whole pizza sits on a pan on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071136.jpg', 'caption': 'A pizza loaded in many types of toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071136.jpg', 'caption': 'A pizza with several toppings served on a tray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572495.jpg', 'caption': 'The compact workspace is well-furnished, neat and organized.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572495.jpg', 'caption': 'Three computer monitors stand on a wood table with a black keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572495.jpg', 'caption': 'The desk has multiple computers set up. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572495.jpg', 'caption': 'a laptop a desktop and a big computer screen showing information ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572495.jpg', 'caption': 'Well organized and useful desk set up with electronics.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405004.jpg', 'caption': 'A white couch sits in the middle of a very nice looking room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405004.jpg', 'caption': 'A living room is shown with couches and lamps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405004.jpg', 'caption': 'Nicely decorated living room area that looks very comforting and inviting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405004.jpg', 'caption': 'A white couch sitting in a living room next to a coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405004.jpg', 'caption': 'A living room with a white couch and small coffee table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388481.jpg', 'caption': 'The monitor is displaying a website for iTV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388481.jpg', 'caption': 'A stuffed animal sits in front of a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388481.jpg', 'caption': 'The teddy bear is facing toward the computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388481.jpg', 'caption': 'There is an at home computer monitor and key board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388481.jpg', 'caption': 'A computer monitor with a teddy bear next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358796.jpg', 'caption': 'With their legs up on the furniture and the tv on, they sat in a living room setting of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358796.jpg', 'caption': 'SOMEONE HAS THERE FOOT ON THE COFFEE TABLE WHILE WATCHING TV', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358796.jpg', 'caption': 'the person takes a photo of their dimmely lit living room and tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358796.jpg', 'caption': 'Someone has their feet on a table with a television on in front of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358796.jpg', 'caption': 'A person sitting down with their foot on the coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439840.jpg', 'caption': 'There are plant and a tv on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439840.jpg', 'caption': 'A table holding several plants and a television and DVD.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439840.jpg', 'caption': 'A table has a television and some plants on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439840.jpg', 'caption': 'A tv sits on top of a wooden table near plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439840.jpg', 'caption': 'A short table with a on the television on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132540.jpg', 'caption': 'a television set a brown couch a table and pictures', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132540.jpg', 'caption': 'A tv screen, couch, books and table in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132540.jpg', 'caption': 'An old movie being shown on a big screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132540.jpg', 'caption': 'A living room with the TV on, displaying an old movie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132540.jpg', 'caption': 'a television is turned on in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097561.jpg', 'caption': 'A hotel room complete with a bed, desk and television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097561.jpg', 'caption': 'A picture of a tv that is on a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097561.jpg', 'caption': 'A small hotel room with a TV and a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097561.jpg', 'caption': 'a small room with a tv a small desk and a chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097561.jpg', 'caption': 'A television set sits on a shelf next to a desk near a hallway that is lined with a closet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563712.jpg', 'caption': 'A tennis player wearing white is holding a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563712.jpg', 'caption': 'A man dressed in white is playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563712.jpg', 'caption': 'A male tennis player dressed in white and a white baseball cap, holding a tennis racket with two hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563712.jpg', 'caption': 'there is a male tennis player that is on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563712.jpg', 'caption': 'A man is preparing to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179500.jpg', 'caption': 'A man swinging a tennis racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179500.jpg', 'caption': 'Athlete in action during match play on court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179500.jpg', 'caption': 'A tennis player is holding his racket upside down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179500.jpg', 'caption': 'A man on a tennis court with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179500.jpg', 'caption': 'A close up of a man holding his Tennis racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427223.jpg', 'caption': 'A young blond woman swinging a tennis racquet at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427223.jpg', 'caption': 'The woman tennis player is hitting the tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427223.jpg', 'caption': 'a woman swinging to hit a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427223.jpg', 'caption': 'A women who is swinging a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427223.jpg', 'caption': 'The woman is playing tennis on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373356.jpg', 'caption': 'A photo of a man swinging a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373356.jpg', 'caption': 'A man returns the tennis ball using his racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373356.jpg', 'caption': 'A man swinging at the ball in a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373356.jpg', 'caption': 'A male tennis player swings his racket to hit an oncoming ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373356.jpg', 'caption': 'The man is playing tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193547.jpg', 'caption': 'A man enjoying a glass of wine with his Italian dinner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193547.jpg', 'caption': 'A man is at a table with three plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193547.jpg', 'caption': 'A man is sitting down, holding a glass of wine, with three plates of food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193547.jpg', 'caption': 'A man holding a glass of wine, sitting at table filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193547.jpg', 'caption': 'there is a man sitting at a table with pizza holding a glass of whine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327675.jpg', 'caption': 'A young man holding a tennis racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327675.jpg', 'caption': 'A man makes a backhand shot in a tennis match on a clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327675.jpg', 'caption': 'A young man playing tennis on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327675.jpg', 'caption': 'A man plays tennis on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327675.jpg', 'caption': 'a man is playing tennis on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507826.jpg', 'caption': 'A man holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507826.jpg', 'caption': 'A professional tennis player about to make his serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507826.jpg', 'caption': 'a close up of a tennis player holding a racket and ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507826.jpg', 'caption': 'A professional tennis player getting set to make a serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507826.jpg', 'caption': 'A man holding a tennis ball and a tennis racket on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143333.jpg', 'caption': 'A man on a dirt tennis court is crouched in position.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143333.jpg', 'caption': 'Tennis player prepares to play with racket in his hands. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143333.jpg', 'caption': 'A tennis player squats low in preparation for the serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143333.jpg', 'caption': 'A man in a white shirt and black pants holds a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143333.jpg', 'caption': 'Playing tennis requires crouching like a hidden tiger. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266727.jpg', 'caption': 'A woman in a short skirt holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266727.jpg', 'caption': 'A female tennis player holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266727.jpg', 'caption': 'Female tennis player holding racket in white top and skirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266727.jpg', 'caption': 'this tennis player stands waiting for her opponents serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266727.jpg', 'caption': 'A tennis playing holding her racket with shorts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070020.jpg', 'caption': 'A woman in a short pink skirt holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070020.jpg', 'caption': 'A woman is standing while holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070020.jpg', 'caption': 'A female tennis player is positioning herself for her next move.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070020.jpg', 'caption': 'A young girl is holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070020.jpg', 'caption': 'A woman in a skirt is holding a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189365.jpg', 'caption': 'A tennis player is holding a racket with both hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189365.jpg', 'caption': 'a tennis player holding a racket on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189365.jpg', 'caption': 'A man in white shirt and shorts playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189365.jpg', 'caption': 'a plan in a blue hat playing tennis, waiting for ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189365.jpg', 'caption': 'A man is in position to play tennis on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538891.jpg', 'caption': 'A female tennis player is on the court playing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538891.jpg', 'caption': 'A young tennis player holding her racquet during a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538891.jpg', 'caption': 'a professional female tennis player on a red clay court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538891.jpg', 'caption': 'Woman holding tennis racket on red clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538891.jpg', 'caption': 'A woman holds a tennis racquet and waits for the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424483.jpg', 'caption': 'A tennis player holding a racket and a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424483.jpg', 'caption': 'A man has a tennis racquet and ball in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424483.jpg', 'caption': 'A man wearing a hat and holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424483.jpg', 'caption': 'A man wearing a head band prepares to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424483.jpg', 'caption': 'A man holding a tennis racket and tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142924.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142924.jpg', 'caption': 'A man in green holds his tennis racket during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142924.jpg', 'caption': 'A tennis player holding a racket at the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142924.jpg', 'caption': 'there is a male tennis player wearing a green and red shirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142924.jpg', 'caption': 'A man in shorts is holding a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107781.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107781.jpg', 'caption': 'The tennis player has a match on a clay court with an audience.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107781.jpg', 'caption': 'An overview of a game of tennis with a crowd watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107781.jpg', 'caption': 'a tennis player getting ready to swing a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107781.jpg', 'caption': 'A tennis player runs towards the ball during a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065655.jpg', 'caption': 'a group of people siting a a table with plates of food ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065655.jpg', 'caption': 'Two people seated at a table with other people in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065655.jpg', 'caption': 'A man and a woman preparing to seat pizza and an outdoor restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065655.jpg', 'caption': 'there is a man and a woman sitting at a table smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065655.jpg', 'caption': 'Man and woman at an outdoor restaurant smiling for camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037624.jpg', 'caption': 'A crowd shot of a tennis match at night time. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037624.jpg', 'caption': 'We are looking at a tennis match in progress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037624.jpg', 'caption': 'Night time tennis match on blue and green court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037624.jpg', 'caption': 'The people are playing tennis on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037624.jpg', 'caption': 'a crowded tennis match being played at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292363.jpg', 'caption': 'a slice of lasagna on a plate with a fork', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292363.jpg', 'caption': 'Someone was served a big piece of deep dish pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292363.jpg', 'caption': 'THIS TO ME LOOKS LIKE A GIANT PIECE OF LASANGNA PIZZA', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292363.jpg', 'caption': 'A slice of deep dish pizza sitting next to a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292363.jpg', 'caption': 'There is some food and a fork on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193661.jpg', 'caption': \"A living room with a large fireplace and potted plants sitting on it's mantle.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193661.jpg', 'caption': 'A living room with a well used stone fireplace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193661.jpg', 'caption': 'A room featuring a brick fireplace and hardwood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193661.jpg', 'caption': 'A paneled living room with a large brick fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193661.jpg', 'caption': 'An unoccupied room with wooden flooring and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153685.jpg', 'caption': 'a living room containing a rug a table and some sofas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153685.jpg', 'caption': 'A living room with oriental rug and beige furniture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153685.jpg', 'caption': 'The living room has tan furniture and a red rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153685.jpg', 'caption': 'A living room with beige furniture set and Persian rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153685.jpg', 'caption': 'A living room with a giant red rub with brown furniture on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163528.jpg', 'caption': 'A brown table with white plate holding a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163528.jpg', 'caption': 'a salad dish with a bowl around it in a restaurant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163528.jpg', 'caption': 'A taco salad topped with sour creme dressing on a white plate with fork and knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163528.jpg', 'caption': 'A salad that has a white dressing on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163528.jpg', 'caption': 'There is a plate of pizza with veggies on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572081.jpg', 'caption': 'a tennis player swinging a racket at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572081.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572081.jpg', 'caption': 'A man in black shirt and shorts playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572081.jpg', 'caption': 'A tennis player prepares to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572081.jpg', 'caption': 'A person on a blue tennis court playing tennis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466882.jpg', 'caption': 'There are people playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466882.jpg', 'caption': 'Group of men playing on a tennis court with crowd watching. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466882.jpg', 'caption': 'A group of people standing on a court holding racquets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466882.jpg', 'caption': 'A view of a double tennis match of men. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466882.jpg', 'caption': 'A group of guys are playing a round of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390585.jpg', 'caption': 'a small girl with sunglasses is hitting a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390585.jpg', 'caption': 'A young girl swings a tennis racket at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390585.jpg', 'caption': 'A young girl hitting a tennis ball with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390585.jpg', 'caption': 'A small girl gets ready to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390585.jpg', 'caption': 'A young child attempting to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527064.jpg', 'caption': 'A large pizza placed on top of table next to a wineglass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527064.jpg', 'caption': 'A rectangle pizza sitting on top of a wooden cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527064.jpg', 'caption': 'A rectangular pizza served on a wooden cutting board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527064.jpg', 'caption': 'A pizza is on top of a cutting board on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527064.jpg', 'caption': 'An oblong pizza with mushrooms is on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192233.jpg', 'caption': 'A man holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192233.jpg', 'caption': 'A picture of a man playing tennis on a red clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192233.jpg', 'caption': 'A tennis player prepares to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192233.jpg', 'caption': 'A man in tennis gear swinging for a tennis ball with his racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192233.jpg', 'caption': 'A tennis player lines up his racket for the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226377.jpg', 'caption': 'A professional tennis player waiting for the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226377.jpg', 'caption': 'A young woman holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226377.jpg', 'caption': 'A female tennis player is preparing for a match', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226377.jpg', 'caption': 'Woman in black on clay tennis court awaiting serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226377.jpg', 'caption': 'A woman playing tennis on a clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108051.jpg', 'caption': 'A pizza sitting on top of a cutting board on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108051.jpg', 'caption': 'a close up of a pizza on the table surrounded by beer and plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108051.jpg', 'caption': 'A clothed table and white tray holding a pizza next to glass of soda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108051.jpg', 'caption': 'A large pizza on a square white plate sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108051.jpg', 'caption': 'A pizza with pepperonis, sausage and other toppings on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092181.jpg', 'caption': 'A few sliced of olive pizza sitting on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092181.jpg', 'caption': 'Three wedges of black olive pizza on a tray with a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092181.jpg', 'caption': 'A stuffed animal sitting in a pizza box with some slices of olive and cheese pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092181.jpg', 'caption': 'Three slices of cheese pizza with anchovies are in a box next to a stuffed animal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092181.jpg', 'caption': 'Pizza slices in box with stuffed animal too.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083761.jpg', 'caption': 'A man and a little girl sitting at a table eating pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083761.jpg', 'caption': 'A man and young girl eating pizza on plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083761.jpg', 'caption': 'Man and girl eating pizza at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083761.jpg', 'caption': 'A man smiles next to a young child while they eat pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083761.jpg', 'caption': 'a close up of a n adult and a child at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464751.jpg', 'caption': 'The man stands in the bathroom with no shirt on brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464751.jpg', 'caption': 'A young man with red hair brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464751.jpg', 'caption': 'a young man brushes his teeth in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464751.jpg', 'caption': 'A person brushing their teeth in front of a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464751.jpg', 'caption': 'A shirtless guy stands in a small bathroom as he brushes his teeth with an electric toothbrush. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014591.jpg', 'caption': 'A man is brushing his teeth with a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014591.jpg', 'caption': 'A man brushing his teeth in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014591.jpg', 'caption': 'A man brushing his teeth with his mouth wide open holding a tube of toothpaste in the other hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014591.jpg', 'caption': 'Man brushing his teeth in front of a lit mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014591.jpg', 'caption': 'A man brushing his teeth showing off his brand of toothpaste.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324598.jpg', 'caption': 'two children on a stool brushing their teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324598.jpg', 'caption': 'Children brushing teeth in bathroom in front of mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324598.jpg', 'caption': 'Two children are standing on a stool to brush their teeth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324598.jpg', 'caption': 'A pair of children brush their teeth at a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324598.jpg', 'caption': 'Two small children, on wearing green Christmas pajamas stand on a stool and brush their teeth in the mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323356.jpg', 'caption': 'A close up of a tooth brush and a blurred background of a man in a blue jacket facing the opposite direction. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323356.jpg', 'caption': 'A toothbrush with an out-of-focus background behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323356.jpg', 'caption': 'Blue and white toothbrush in focus in front of a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323356.jpg', 'caption': 'a close up of a tooth brush with a person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323356.jpg', 'caption': 'A man kneels in the dirt behind a toothbrush tied to the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405440.jpg', 'caption': 'A circuit board sitting on top of a map.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405440.jpg', 'caption': 'Remote with exposed electrical units with wires and keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405440.jpg', 'caption': 'A keyboard, a remote control, and two circuit boards with wires, all on top of a map.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405440.jpg', 'caption': 'A remote control, various electronic componets, and a computer keyboard sitting on a map.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405440.jpg', 'caption': 'someone has an electronic device torn apart ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331646.jpg', 'caption': 'Science project to operate a red, blue and green light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331646.jpg', 'caption': 'A couple of different types of electronic parts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331646.jpg', 'caption': 'An electronic device setup with red, blue, and green lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331646.jpg', 'caption': 'A light contraption with a electric wires and circuit board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331646.jpg', 'caption': 'On this table there is three colored lights, an electronic switchboard and a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148329.jpg', 'caption': 'A man holding a tooth brush up to his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148329.jpg', 'caption': 'Man in red shirt eating something that is green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148329.jpg', 'caption': 'A man brushing his teeth outside his car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148329.jpg', 'caption': 'This man is outside on a sunny day next to his car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148329.jpg', 'caption': 'A man with eyeglasses seated and a car behind him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053404.jpg', 'caption': 'A man is holding a Wii controller as if it were a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053404.jpg', 'caption': 'A man pretending to bat a ball with his remote in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053404.jpg', 'caption': 'A man in black holding a video game remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053404.jpg', 'caption': 'A young man playing baseball on his Wii video game console.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053404.jpg', 'caption': 'A man in black shirt holding a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279524.jpg', 'caption': 'a living room with a brown couch a table and a black cabinet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279524.jpg', 'caption': 'Photo of a living room with a TV on the floor and one on a stand, a person standing outside the door way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279524.jpg', 'caption': 'The man is going to the door to let his date in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279524.jpg', 'caption': 'A man walking past an empty living room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279524.jpg', 'caption': 'a living room with a couch and a tv near a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100726.jpg', 'caption': 'An older woman playing Wii Bowling with another girl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100726.jpg', 'caption': 'Two people standing in front of a tv holding remotes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100726.jpg', 'caption': 'a couple of people play a game in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100726.jpg', 'caption': 'a lady that is playing some kind of wii game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100726.jpg', 'caption': 'People playing Wii bowling in a modern library', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033006.jpg', 'caption': 'People playing video games while someone watches in a library', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033006.jpg', 'caption': 'People standing on a tile floor in a library.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033006.jpg', 'caption': 'Three people are playing a video game in a book store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033006.jpg', 'caption': 'Three people standing next to each other in a bookstore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033006.jpg', 'caption': 'Three women standing in a library playing with a Wii. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091304.jpg', 'caption': 'A living room has a couch and a rustic chest for a coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091304.jpg', 'caption': 'A PHOTO OF A LIVING ROOM WITH COUCHES AND A TABLE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091304.jpg', 'caption': 'The couch is tidy but empty of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091304.jpg', 'caption': 'A living room with a wooden crate coffee table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091304.jpg', 'caption': 'A white couch sitting in a living room next to a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463599.jpg', 'caption': 'A man brushing his teeth while taking a selfie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463599.jpg', 'caption': 'A man taking a selfie of himself brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463599.jpg', 'caption': 'Man brushing his teeth while taking a photo of himself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463599.jpg', 'caption': 'A man is brushing his teeth while holding a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463599.jpg', 'caption': 'A man taking a picture of himself as he brushes his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479042.jpg', 'caption': 'A large bottle of wine next to a WII remote on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479042.jpg', 'caption': 'a wine bottle on a table and a remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479042.jpg', 'caption': 'Video game remote wrapped around a bottle of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479042.jpg', 'caption': 'A bottle of wine sitting beside a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479042.jpg', 'caption': 'A Wii controller and cord is wrapped around a bottle of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437374.jpg', 'caption': 'Two young children are playing together on a Wii. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437374.jpg', 'caption': 'Two children in a room playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437374.jpg', 'caption': 'two children playing nintendo wii in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437374.jpg', 'caption': 'There are two children playing with a WII.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437374.jpg', 'caption': 'Two young kids playing on a Nintendo Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260059.jpg', 'caption': 'A young guy standing by a mirror brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260059.jpg', 'caption': 'A man brushing his teeth in a mirror at a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260059.jpg', 'caption': 'A man brushing his teeth in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260059.jpg', 'caption': 'A man brushing his teeth in front of a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260059.jpg', 'caption': 'A young man is brushing his teeth you can see his face in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315486.jpg', 'caption': 'Two children are near a sink and one has a red toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315486.jpg', 'caption': 'Two children are brushing their teeth at the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315486.jpg', 'caption': 'Two children standing at the sink brushing their teeth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315486.jpg', 'caption': 'a little kid cleaning their toothbrush in the sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315486.jpg', 'caption': 'Two small children standing at a sink brushing their teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365325.jpg', 'caption': 'A little boy sleeping on a couch holding a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365325.jpg', 'caption': 'A sleeping child holding a Wii controller in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365325.jpg', 'caption': 'A toddler sleeping on a couch with a video game controller in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365325.jpg', 'caption': 'a baby boy falls asleep sitting up with a wii remote in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365325.jpg', 'caption': 'a close up of a child sleeping with holding a nintendo wii controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278359.jpg', 'caption': 'A young boy is sleeping on a black couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278359.jpg', 'caption': 'A little toddler boy sleeping on his couch with a remote in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278359.jpg', 'caption': 'A little boy sleeping while holding a video game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278359.jpg', 'caption': 'A young boy sleeps on a couch while holding a controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278359.jpg', 'caption': 'A kid that is sleeping on a sofa with a controller in its hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079686.jpg', 'caption': 'A room with some chairs and a bookshelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079686.jpg', 'caption': 'A room with a brick wall and several chairs around a black coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079686.jpg', 'caption': 'A couple of chairs in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079686.jpg', 'caption': 'A sitting area with a brick wall behind it around a coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079686.jpg', 'caption': 'There are chairs and a shelf in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139917.jpg', 'caption': 'A boy playing a WII game at Christmas time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139917.jpg', 'caption': 'A kid is playing the Nintendo Wii. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139917.jpg', 'caption': 'a dog laying in front of a boy playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139917.jpg', 'caption': 'A child playing Wii while a dog lies on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139917.jpg', 'caption': 'A boy playing a game with a remote controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196483.jpg', 'caption': 'A young woman standing next to another young woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196483.jpg', 'caption': 'Two women, with one holding a remote. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196483.jpg', 'caption': 'A woman holding a Wii remote with another woman in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196483.jpg', 'caption': 'Two people are having fun at a party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196483.jpg', 'caption': 'A woman is playing with a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535312.jpg', 'caption': 'Series of photos displaying inside of ones apartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535312.jpg', 'caption': 'One picture has a couch and a coffee table, one has a bicycle, another has a two desks with chairs, and the largest picture has a kitchen bar and shelves with various items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535312.jpg', 'caption': 'There is a bike and furniture in the different rooms .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535312.jpg', 'caption': 'A view of a living room with a couple of pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535312.jpg', 'caption': 'A series of photographs of a bike and an office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400976.jpg', 'caption': 'A living room with a couch sitting under a round mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400976.jpg', 'caption': \"A living room is fully equipped with 80's style furniture and decor.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400976.jpg', 'caption': 'A living room with a couch , coffee table and flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400976.jpg', 'caption': 'A living room includes floral patterns and live flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400976.jpg', 'caption': 'A living room with a couch, coffee table and a mirror on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483135.jpg', 'caption': 'A group of people playing with a Wii together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483135.jpg', 'caption': 'A group of people play Wii while an affectionate couple snuggles on the sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483135.jpg', 'caption': 'A group of people playing a video game in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483135.jpg', 'caption': 'A group of people in a living room playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483135.jpg', 'caption': 'Several people are doing something with remote controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394460.jpg', 'caption': 'A group of kids playing a video game system.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394460.jpg', 'caption': 'A group of kids playing a game with remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394460.jpg', 'caption': 'Three children stand before a TV playing Wii. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394460.jpg', 'caption': 'some children playing a video game and a yellow chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394460.jpg', 'caption': 'Five children stand in front of the television playing a video game together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052691.jpg', 'caption': 'A man holding a child next to other adults.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052691.jpg', 'caption': 'A man is holding a toddler while others do various things in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052691.jpg', 'caption': 'Several people in living room watching a person holding remote play video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052691.jpg', 'caption': 'a group of people in a room with a chair and a door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052691.jpg', 'caption': 'A little girl carried by a guy while the others are playing, grabbing a chair and a passerby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284257.jpg', 'caption': 'A man standing in a room next to a metal and red pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284257.jpg', 'caption': 'a young asian boy with a wii controller in his hand ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284257.jpg', 'caption': 'A man is standing while playing a game on the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284257.jpg', 'caption': 'A young man holding a Wii remote in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284257.jpg', 'caption': 'A man in white shirt playing a game with Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155478.jpg', 'caption': 'A couple of kids holding Nintendo Wii controllers while standing in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155478.jpg', 'caption': 'a woman and young boy playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155478.jpg', 'caption': 'A woman and a boy looking up in a room with one other seated person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155478.jpg', 'caption': 'Two people standing holding wii remotes playing wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155478.jpg', 'caption': 'Two people are playing a game on the nintendo wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499095.jpg', 'caption': 'a woman and a kid playing with some wii motes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499095.jpg', 'caption': 'Woman and boy standing playing a video game in front of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499095.jpg', 'caption': 'a woman and kid playing a game on the wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499095.jpg', 'caption': 'Woman and boy playing video game near group of people sitting on folding chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499095.jpg', 'caption': 'A mother and child holding remotes playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244159.jpg', 'caption': 'a living room with couches and a television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244159.jpg', 'caption': 'A picture of a very nice clean living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244159.jpg', 'caption': 'A living room with two couches and a coffee table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244159.jpg', 'caption': 'A living room complete with couches and television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244159.jpg', 'caption': 'A living room with two brown sofas and a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249715.jpg', 'caption': 'two males and a female in a pink top playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249715.jpg', 'caption': 'some people standing around looking at something in front of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249715.jpg', 'caption': 'A man standing next to a woman in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249715.jpg', 'caption': 'Two men and a woman are standing in a room filled with chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249715.jpg', 'caption': 'Two adults standing in a room while playing a Wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198234.jpg', 'caption': 'Group of young adults sitting in chairs while some hold wii remotes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198234.jpg', 'caption': 'A room full of young kids sitting on chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198234.jpg', 'caption': 'Teenagers are sitting in small chairs looking forward.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198234.jpg', 'caption': 'A group of students holding remotes from a game system.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198234.jpg', 'caption': 'Another day at school to learn with Nintendo Wii programs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035825.jpg', 'caption': 'Woman standing in living room using video game controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035825.jpg', 'caption': 'A woman standing in her living room playing Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035825.jpg', 'caption': 'There is a woman that is ayi g with the wii in her room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035825.jpg', 'caption': 'A woman standing next to a couch holding a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035825.jpg', 'caption': 'Young woman playing WII in a furnished living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180289.jpg', 'caption': 'A person standing next to a couch holding a game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180289.jpg', 'caption': 'A man using video game controllers in front of a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180289.jpg', 'caption': 'A man is crouched down playing a WII game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180289.jpg', 'caption': 'a guy playing wii in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180289.jpg', 'caption': 'A bearded man plays Wii in his living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325587.jpg', 'caption': 'A dog walking toward the camera behind a pair of shoes near a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325587.jpg', 'caption': 'A dog walking through a living room with furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325587.jpg', 'caption': 'A dog is standing in a room filled with furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325587.jpg', 'caption': 'a sitting area in a house with a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325587.jpg', 'caption': 'A cute little dog standing in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268856.jpg', 'caption': 'Two men play Wii sports in their living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268856.jpg', 'caption': 'Two men standing in a living room playing with a Wii system.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268856.jpg', 'caption': 'Two men play Wii together while a baby watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268856.jpg', 'caption': 'Two men play a sports video game in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268856.jpg', 'caption': 'Two men play a video game while an infant plays with toys nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284099.jpg', 'caption': 'Two students are playing games at a party', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284099.jpg', 'caption': 'a man and woman the man has a game controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284099.jpg', 'caption': 'A boy and a girl playing what looks like the WII.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284099.jpg', 'caption': 'A man and woman sitting down playing a video game together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284099.jpg', 'caption': 'Man and woman sitting next to each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414071.jpg', 'caption': 'three boys are enjoying a video game at home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414071.jpg', 'caption': 'three asian friends are playing games on the wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414071.jpg', 'caption': 'Three young men are playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414071.jpg', 'caption': 'A group of people play video games with controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414071.jpg', 'caption': 'Three young guys are playing the Wii together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475658.jpg', 'caption': 'Two people playing with an interactive gaming unit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475658.jpg', 'caption': '2 guys holding controllers playing a game on the Nintendo Wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475658.jpg', 'caption': 'The two young guys are playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475658.jpg', 'caption': 'The men are playing video games together in the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475658.jpg', 'caption': 'a couple of men are holding game controllers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224740.jpg', 'caption': 'A modern furnished living room with large fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224740.jpg', 'caption': 'Modern living room with two chairs, a three bay window and fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224740.jpg', 'caption': 'A living rooms featuring furniture and a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224740.jpg', 'caption': 'A living room with a fireplace and contemporary furnishings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224740.jpg', 'caption': 'A beautiful home which is left with the door open to beautiful scenery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248089.jpg', 'caption': 'Some hands holding up some remotes to a screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248089.jpg', 'caption': 'Someone holding a controller in each of their hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248089.jpg', 'caption': 'A person holding a Wii remote in their hands in front of the television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248089.jpg', 'caption': 'A remote control in each hand pointed towards a game on the television. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248089.jpg', 'caption': 'a closeup of two hands holding different pieces of a Wii controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173471.jpg', 'caption': 'A living room filled with furniture and a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173471.jpg', 'caption': 'A living room contains seats, a table, and a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173471.jpg', 'caption': 'A den with a chair, couch, table and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173471.jpg', 'caption': 'A living room with the furniture arranged to view the fireplace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173471.jpg', 'caption': 'A living space with a blend of elegant vintage decor and modern style. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188941.jpg', 'caption': 'A living room with couch, tables, and paintings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188941.jpg', 'caption': 'A living room contains a couch, chair, tables and a rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188941.jpg', 'caption': 'a room that is filled with furniture and has white walls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188941.jpg', 'caption': 'The living room has many pillows on the couches and chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188941.jpg', 'caption': 'A living room filled with furniture and wooden floors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358399.jpg', 'caption': 'A man who is playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358399.jpg', 'caption': ' a man playing with a wii mote ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358399.jpg', 'caption': 'A man is playing with a WII video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358399.jpg', 'caption': 'a man with a black book bag on his back playing the wii game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358399.jpg', 'caption': 'a man in a backpack is playing video games', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444207.jpg', 'caption': 'A dog is lying on the carpet of the living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444207.jpg', 'caption': 'A dog lies on a floral rug near a living room window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444207.jpg', 'caption': 'Living room with a sectional couch and a coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444207.jpg', 'caption': 'A living room has a couch and a coffee table with books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444207.jpg', 'caption': 'A green sofa in a well lit living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293705.jpg', 'caption': 'a square wooden table in a home livingroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293705.jpg', 'caption': 'A TV hanging from a ceiling in a living room next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293705.jpg', 'caption': 'a living room with a couch a table and a night stand ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293705.jpg', 'caption': 'Before and after pictures of a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293705.jpg', 'caption': 'The dog is resting on the floor in the living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521613.jpg', 'caption': 'A living area with chairs, a sofa and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521613.jpg', 'caption': 'A couch, coffee table, and stand sitting in a living room by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521613.jpg', 'caption': 'a living room with a lot of chairs and a rug ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521613.jpg', 'caption': 'A brightly lit and empty modern living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521613.jpg', 'caption': 'A neatly arranged living room with chairs, tables, paintings and a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520430.jpg', 'caption': 'A women smiling really big while holding a Wii remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520430.jpg', 'caption': 'A woman makes a face as she plays a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520430.jpg', 'caption': 'A young woman smiling holding a video game remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520430.jpg', 'caption': 'A WOMAN HOLDING A REMOTE IN HER HANDS.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520430.jpg', 'caption': 'A girl is showing a goofy smile while holding a video game remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285820.jpg', 'caption': 'A living room with a brown leather couch and wood flooring', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285820.jpg', 'caption': 'A nice room with two windows, black and brown furniture and a white table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285820.jpg', 'caption': \"A picture of someone's living room with furniture and appliances.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285820.jpg', 'caption': 'An apartment living room with black leather couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285820.jpg', 'caption': 'A living room with two windows filled with furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173826.jpg', 'caption': 'A person holding a Nintendo Wii controller in front of a small TV screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173826.jpg', 'caption': 'A man playing video games in a carpeted area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173826.jpg', 'caption': 'Man playing game on screen with a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173826.jpg', 'caption': 'a person playing nintendo wii at a convention', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173826.jpg', 'caption': 'A man playing a video game at a trade show.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122388.jpg', 'caption': 'A man holding a Wii game controller in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122388.jpg', 'caption': 'A boy watching a person play with a wii remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122388.jpg', 'caption': 'A couple of people are playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122388.jpg', 'caption': 'two people one is holding a television game controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122388.jpg', 'caption': 'A man holds a Wii controller as a boy looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090239.jpg', 'caption': 'A small living room with couches and an old tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090239.jpg', 'caption': 'a photo of a living room with a couch and a tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090239.jpg', 'caption': 'Decorated living room area with couches and plenty of large windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090239.jpg', 'caption': 'A room with a couch, love seat, a chair, a television and several windows in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090239.jpg', 'caption': 'A living room with two couches and an old TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384823.jpg', 'caption': 'A computer sits on a small wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384823.jpg', 'caption': 'A home computer and chair at a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384823.jpg', 'caption': 'The computer desk has many CDs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384823.jpg', 'caption': 'a desk and chair with a PC keyboard and computer screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384823.jpg', 'caption': 'A desk cluttered with compute equipment and office supplies and a a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547504.jpg', 'caption': 'a computer monitor is on top of a glass desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547504.jpg', 'caption': 'A modern glass and metal desk with multiple computers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547504.jpg', 'caption': 'A metal and glass computer desk by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547504.jpg', 'caption': 'A computer monitor sitting on top of a computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547504.jpg', 'caption': 'A computer atop a glass table near a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377003.jpg', 'caption': 'a chair and a couch in a room with art on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377003.jpg', 'caption': 'a living room with grey walls and some photos on the wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377003.jpg', 'caption': 'A nicely decorated living room with a lot of pictures on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377003.jpg', 'caption': 'A leather chair sitting next to a couch in a den.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377003.jpg', 'caption': 'A living area with chair, sofa and pictures on wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004125.jpg', 'caption': 'A few bags laying around in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004125.jpg', 'caption': 'A living room with a couch, two tables and a painting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004125.jpg', 'caption': 'a living room with a couch and a bottle of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004125.jpg', 'caption': 'a white couch a brown table with a bottle and glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004125.jpg', 'caption': 'Black bags sitting on top of a white couch in a living room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465184.jpg', 'caption': 'a living room that has some chairs and pillows in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465184.jpg', 'caption': 'a living room with a large sofa and chair with windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465184.jpg', 'caption': 'The interior of a living room is shown in modern style.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465184.jpg', 'caption': 'A room with a glass coffe table and a couch and chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465184.jpg', 'caption': 'Corner couch and ottoman near coffee table with vase of flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275661.jpg', 'caption': 'A desktop computer on top of a wooden desks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275661.jpg', 'caption': 'A computer sitting on a fancy antique wooden desk next to a packed shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275661.jpg', 'caption': 'A room containing a computer, lamps, chair, books, and a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275661.jpg', 'caption': 'Computer sitting on a desk next to a book case and chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275661.jpg', 'caption': 'The cluttered but organized room has a computer on an antique desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487774.jpg', 'caption': 'A silver computer mouse on a table next to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487774.jpg', 'caption': 'A computer mouse is sitting next to a key board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487774.jpg', 'caption': 'An aerodynamic shaped computer mouse with a flash reflection in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487774.jpg', 'caption': 'A computer mouse sitting next to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487774.jpg', 'caption': 'A black computer mouse sitting next to a keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450127.jpg', 'caption': 'A living room with a blue couch with a red area rug and a fire place in the corner. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450127.jpg', 'caption': 'A gray couch sitting on top of a rug in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450127.jpg', 'caption': 'A very nice looking living room with a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450127.jpg', 'caption': 'this living room has a couch and a fire place', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450127.jpg', 'caption': 'This living room has a fancy rug, a couch, and a wood burning stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440964.jpg', 'caption': 'A computer monitor is facing away from a keyboard and mouse and a coffee cup and blue ball also are sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440964.jpg', 'caption': 'The computer on the test was left turned on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440964.jpg', 'caption': 'a computer that has a keyboard and a mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440964.jpg', 'caption': 'A keyboard, mouse and monitor screen on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440964.jpg', 'caption': 'A keyboard, monitor and mouse with red light on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485740.jpg', 'caption': 'A group of people walking down a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485740.jpg', 'caption': 'A crowd in a city on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485740.jpg', 'caption': 'A crowd of people walking around a city', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000485740.jpg', 'caption': 'A large crowd of people gathered outside an old building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485740.jpg', 'caption': 'A crowd of people are in front of a rock building with a man talking on his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157516.jpg', 'caption': 'A man sitting at a table holding a baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157516.jpg', 'caption': 'a man wearing a black jacket is holding a child and a cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157516.jpg', 'caption': 'A man using his phone while a little girl sleeps on his shoulder. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157516.jpg', 'caption': 'A man holding a child and a cell phone at a coffee shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157516.jpg', 'caption': 'A man holding an infant while checking his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532747.jpg', 'caption': 'A modern living room with a couch and tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532747.jpg', 'caption': 'A living area with a couch, table and television unit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532747.jpg', 'caption': 'A living room with a backpack and handbag on the sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532747.jpg', 'caption': 'living room with blue walls and a sectional.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532747.jpg', 'caption': 'A living room with baggage on the sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491408.jpg', 'caption': 'A living room filled with furniture and a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491408.jpg', 'caption': 'There is furniture in the middle of a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491408.jpg', 'caption': 'a room that has a flat screen t.v. in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491408.jpg', 'caption': 'A living room with a small flat screen tv ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491408.jpg', 'caption': 'Decorated living area with desk and cabinets with television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389771.jpg', 'caption': 'A little girl sitting on top of a bed holding an object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389771.jpg', 'caption': 'The girl is sitting on the bed while reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389771.jpg', 'caption': 'A little girl is sitting on a bed with pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389771.jpg', 'caption': 'Girl reading a tablet sitting towards edge of bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389771.jpg', 'caption': 'A child looks at an electronic device while sitting on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003964.jpg', 'caption': 'A woman holding a tennis racquet while wearing a straw hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003964.jpg', 'caption': 'A woman wearing a mask holding a racquet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003964.jpg', 'caption': 'The person wearing a mask is holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003964.jpg', 'caption': 'a woman wearing a mask standing and holding a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003964.jpg', 'caption': 'A woman in a bamboo hat holding a tennis racquet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252696.jpg', 'caption': 'A tennis player is preparing to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252696.jpg', 'caption': 'A man wearing black and white reaches to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252696.jpg', 'caption': 'Male tennis player, in mid stroke, on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252696.jpg', 'caption': ' a tennis player reaching up to deliver a serve ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252696.jpg', 'caption': 'A man playing tennis about to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109370.jpg', 'caption': 'A man holding a tennis racquet and a ball on top of a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109370.jpg', 'caption': 'A tennis player is holding a ball on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109370.jpg', 'caption': 'a man with a tennis racket bounces a tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109370.jpg', 'caption': 'A male tennis player, holding a racket while bouncing a tennis ball on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109370.jpg', 'caption': 'A young man getting ready to serve a tennis ball to his opponent. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223671.jpg', 'caption': 'a small living room with chairs and a foot stool', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223671.jpg', 'caption': 'A glass roofed sitting room overlooking a pool', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223671.jpg', 'caption': 'A living room filled with furniture beneath a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223671.jpg', 'caption': 'A living area with some wooden chairs in the room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223671.jpg', 'caption': 'A sitting area is located in a corner of the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077172.jpg', 'caption': 'a wooden weaving machine a window and some books and cds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077172.jpg', 'caption': 'A window in a room with different shelves nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077172.jpg', 'caption': 'A living area with a red dresser, shelves and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077172.jpg', 'caption': 'A window and furniture in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077172.jpg', 'caption': 'A room with a very large wooden item near a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295599.jpg', 'caption': 'A blue room connected to a room with a table in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295599.jpg', 'caption': 'A person is putting away groceries in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295599.jpg', 'caption': 'A man looks out his dining room window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295599.jpg', 'caption': 'A man standing near a window in a home featuring blue and white walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295599.jpg', 'caption': 'A man is in the ktichen and the living room is painted blue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556157.jpg', 'caption': 'A kite is being flown in the blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556157.jpg', 'caption': 'A kit that is flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556157.jpg', 'caption': 'A kite flying in the air with the blue sky in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556157.jpg', 'caption': 'A kite flying through a cloudy light blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556157.jpg', 'caption': 'A kite is flying beneath the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170340.jpg', 'caption': 'A person windsurfing with a grey sky in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170340.jpg', 'caption': 'a man parasailing in the ocean all by himself', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170340.jpg', 'caption': 'A person parasailing in the middle of the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170340.jpg', 'caption': 'a person riding a parachute surf board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170340.jpg', 'caption': 'A man surfing alone on the ocean waters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144935.jpg', 'caption': 'A crowd of people at the beach flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144935.jpg', 'caption': 'A beach gets crowded on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144935.jpg', 'caption': 'Kites flying over a beach full of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144935.jpg', 'caption': 'Many kites fly above a crowded beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144935.jpg', 'caption': 'Several people on the ocean shore are flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470658.jpg', 'caption': 'A man holding a bob marley kite in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470658.jpg', 'caption': 'A person flys a large green and black kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470658.jpg', 'caption': 'A man is flying a kite with a large image of a man printed on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470658.jpg', 'caption': 'A male is flying a one love kite in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470658.jpg', 'caption': 'A kite with the words \"one love\" on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352552.jpg', 'caption': 'A person flying a kite near a basketball hoop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352552.jpg', 'caption': 'A man is flying a kite that flies above a portable basketball goal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352552.jpg', 'caption': 'A man flying a kite over a basketball hoop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352552.jpg', 'caption': 'a man watching a kite fly through the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352552.jpg', 'caption': 'A person flying a kite near a basketball hoop. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074412.jpg', 'caption': 'Cars parked on a beach with people watching hot air balloons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074412.jpg', 'caption': 'Cars parked on a beach at the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074412.jpg', 'caption': 'A group of cars that are parked on a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074412.jpg', 'caption': 'Cars parked on the sand close to the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074412.jpg', 'caption': 'Some cars and people sit on a mostly empty beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225281.jpg', 'caption': 'A bunch of kites flying around a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225281.jpg', 'caption': 'Several kites flying in the sky over a group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225281.jpg', 'caption': 'SPECTATORS WATCHING LARGE KITES BEING FLOWN IN A FIELD', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225281.jpg', 'caption': 'Aerial view of a group of people flying heart shaped kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225281.jpg', 'caption': 'a number of people in a field with many kites flying above ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279984.jpg', 'caption': 'A woman flying a kite with American flags in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279984.jpg', 'caption': 'A woman sticks her arm out as she flies her kite while walking through the park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279984.jpg', 'caption': 'A lady walking in a grassy area holding a kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279984.jpg', 'caption': 'A woman with a kite near a lot of flags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279984.jpg', 'caption': 'A girl prepares a plane shaped kite on a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132328.jpg', 'caption': 'many people watch a person fly a kite with a young person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132328.jpg', 'caption': 'The father and son are looking at the kites flying overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132328.jpg', 'caption': 'A man and his son fly kits in a field as a crowd watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132328.jpg', 'caption': 'A father helps his son fly his kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132328.jpg', 'caption': 'a group of people playing with kites in the park on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045388.jpg', 'caption': 'The boy is playing with his colorful kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045388.jpg', 'caption': 'A young boy is playing with his kite as the sun rises. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045388.jpg', 'caption': 'A child runs with a kite behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045388.jpg', 'caption': 'A boy with baseball cap running in a field with kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045388.jpg', 'caption': 'a small child in a black top a kite and some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134940.jpg', 'caption': 'A large crowd of people around a very large illustration.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134940.jpg', 'caption': 'A large poster next to a large crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134940.jpg', 'caption': 'A group of people at a kite festival.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134940.jpg', 'caption': 'A large group of people standing outside a building with a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134940.jpg', 'caption': 'A rally of some sort outside a stadium', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358149.jpg', 'caption': 'Dozens of people watching a large colorful kite about to be flown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358149.jpg', 'caption': 'a giant banner is being lifted in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358149.jpg', 'caption': \"groups of people are watching a kite that's ready to fly\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358149.jpg', 'caption': 'A giant kite getting ready to fly with a crowd around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358149.jpg', 'caption': 'A crowd of people outside reading a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430529.jpg', 'caption': 'A large body of water with a small sailboat red and white mast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430529.jpg', 'caption': 'A man kiteboarding over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430529.jpg', 'caption': 'man standing in water off shore flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430529.jpg', 'caption': 'a person standing on the beach flying a huge kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430529.jpg', 'caption': 'Someone standing in the water in the ocean flying their kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348982.jpg', 'caption': 'A woman in a brown jacket holding a kite in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348982.jpg', 'caption': 'A lady doing something interesting with some kite in cold weather.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348982.jpg', 'caption': 'The lady holds a small box kite on a string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348982.jpg', 'caption': 'A woman is holding a kite in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348982.jpg', 'caption': 'A woman holds bags and a kite that resembles two boxes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351557.jpg', 'caption': 'Man holding a rainbow colored kite in front of people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351557.jpg', 'caption': 'A man on the street is holding a colorful kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351557.jpg', 'caption': 'People stand against a wall watching a man carry a large kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351557.jpg', 'caption': 'A amn holding a rainbow kite on a corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351557.jpg', 'caption': 'The group is somewhat amazed at the size of the kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409491.jpg', 'caption': 'A man and a woman standing in a field flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409491.jpg', 'caption': 'A person flying a kite on a lawn in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409491.jpg', 'caption': 'People are flying their kites in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409491.jpg', 'caption': 'Lots of people are flying kites in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409491.jpg', 'caption': 'People in a park and a man trying to fly his kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265050.jpg', 'caption': 'A person lays on a bed and watches a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265050.jpg', 'caption': 'A girl using a laptop on her bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265050.jpg', 'caption': 'A girl lays on her bed watching a video on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265050.jpg', 'caption': 'The girl is laying down watching a video on her laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265050.jpg', 'caption': 'A young person laying on a bed using a computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269489.jpg', 'caption': 'A person flying a kite while standing on a beach pier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269489.jpg', 'caption': 'a person standing a on pier while playing with a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269489.jpg', 'caption': 'A person standing on a pier flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269489.jpg', 'caption': 'The woman is flying the kite on the walkway next to the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269489.jpg', 'caption': 'A person standing on a dock near a beach flying a kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218119.jpg', 'caption': 'A crowd of people on a beach flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218119.jpg', 'caption': 'Lots of people flying kites on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218119.jpg', 'caption': 'People are standing on a beach where kites are flying.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218119.jpg', 'caption': 'A crowd gathers on a beach and flies kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218119.jpg', 'caption': 'Many people are flying their kites at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460858.jpg', 'caption': 'A child flies a kite in an urban setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460858.jpg', 'caption': 'A young boy flying a kite near the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460858.jpg', 'caption': 'A young boy watches a kite flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460858.jpg', 'caption': 'A young boy looking up into the sky at a flying kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460858.jpg', 'caption': 'A young boy who is looking at a kite in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361282.jpg', 'caption': 'A clock that is on a wooden wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361282.jpg', 'caption': 'Two clocks, various tools, a thermos, and a bunch of cords.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361282.jpg', 'caption': 'A white and brown clock on a wooden wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361282.jpg', 'caption': 'The clock is being displayed to be viewed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361282.jpg', 'caption': 'a clock that is hanging on a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287387.jpg', 'caption': 'The teddy bear looks like it is going to drink the beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287387.jpg', 'caption': 'A glass of beer and a stuffed teddy bear are on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287387.jpg', 'caption': 'A teddy bear next to a glass of beer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287387.jpg', 'caption': 'The bear is sitting on the table with a cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287387.jpg', 'caption': 'a glass of Guinness beer and a teddy bear on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065051.jpg', 'caption': 'A person in a park holding a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065051.jpg', 'caption': 'A picture of a park and a man tangled up in a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065051.jpg', 'caption': 'A person is holdiing a kite in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065051.jpg', 'caption': 'Some people stand on the grass with kites. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065051.jpg', 'caption': 'some people playing in a park with a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254460.jpg', 'caption': 'A group of people standing next to a wall with a kite bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254460.jpg', 'caption': 'Someone is holding up a colorful kite in an open public area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254460.jpg', 'caption': 'A man selling kites at a monument wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254460.jpg', 'caption': 'many people standing with a person holding a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254460.jpg', 'caption': 'A man selling kites outside of a wall on display with many people walking around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134688.jpg', 'caption': 'A brown teddy bear sitting on top of a table in front of a white plate with a piece of pie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134688.jpg', 'caption': 'A stuffed bear sitting by a plate with a piece of pie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134688.jpg', 'caption': 'Teddy bear on top of a table with blackberry pie in front of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134688.jpg', 'caption': 'a stuffed bear sitting in front of a slice of pie on white plate sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134688.jpg', 'caption': 'an image of a slice of pie on a table next to a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453009.jpg', 'caption': 'Teddy bear and ornamental duck sitting on a wooden deck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453009.jpg', 'caption': 'a teddy bear riding a fake duck on a railing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453009.jpg', 'caption': 'A stuffed teddy bear gets a ride on the back of a wooden duck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453009.jpg', 'caption': 'A teddy bear sitting on a swan figurine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453009.jpg', 'caption': 'A stuffed teddy bear sitting on a duck ornament.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313955.jpg', 'caption': 'Two baseball teams playing a game of baseball near a church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313955.jpg', 'caption': 'A hitter looks back at the catcher as the ball is caught.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313955.jpg', 'caption': 'A batter, catcher and umpire at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313955.jpg', 'caption': 'A baseball player at home plate with a crowd of onlookers watching', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313955.jpg', 'caption': \"People watch a women's softball game from behind a chain link fence.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251367.jpg', 'caption': 'A baseball game with a hitter at home plate in a swinging motion and people in the stands above the dugout area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251367.jpg', 'caption': 'A player swings his bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251367.jpg', 'caption': 'A baseball player holding a bat near home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251367.jpg', 'caption': 'The catcher, umpire, and batter watch the ball that is flying away. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251367.jpg', 'caption': 'a man holding up a baseball bat during a baseball game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086432.jpg', 'caption': 'A baseball game in progress with a young player swinging the bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086432.jpg', 'caption': 'Children playing organized baseball with a batter and catcher at home plate and fans watching behind a fenced area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086432.jpg', 'caption': 'a baseball player swinging a baseball bat at a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086432.jpg', 'caption': 'The boy swings the bat as he plays in the little league game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086432.jpg', 'caption': 'A kid swinging at a ball in baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441874.jpg', 'caption': 'A view of a baseball game on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441874.jpg', 'caption': 'A bater gets ready to swing at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441874.jpg', 'caption': 'a batter about to hit a ball at a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441874.jpg', 'caption': 'With a full crowd in the stands, a batter is up to bat and an umpire stands behind him on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441874.jpg', 'caption': 'A picture of a baseball game taken from behind home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124712.jpg', 'caption': 'Some parents sitting behind a fence watching a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124712.jpg', 'caption': 'Group of parents watching small children on a baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124712.jpg', 'caption': 'people sitting behind a fence watching a little league game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124712.jpg', 'caption': \"Fans sit in camping chairs along a fence to watch a children's baseball game.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124712.jpg', 'caption': 'A family sits behind the fence at a junior baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417590.jpg', 'caption': 'A man holds his bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417590.jpg', 'caption': 'A little leaguer is swinging at a baseball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417590.jpg', 'caption': 'The boy watches the ball as he gets ready to hit it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417590.jpg', 'caption': 'A group of people on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417590.jpg', 'caption': 'Children playing baseball with batter and ball in air on field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006712.jpg', 'caption': 'A father throwing a baseball to his child holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006712.jpg', 'caption': 'A man toss a ball to a little kid.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006712.jpg', 'caption': 'A man teaching a small child to play baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006712.jpg', 'caption': 'A man is playing baseball with a toddler in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006712.jpg', 'caption': 'A man kneeling in the grass pitches a ball at a small child swinging a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523517.jpg', 'caption': 'A baseball player standing next to to home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523517.jpg', 'caption': 'a batter leaning a bit getting ready to hit a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523517.jpg', 'caption': 'A PICTURE OF A BASEBALL PLAYER PLAYING BASEBALL ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523517.jpg', 'caption': 'A baseball player with a bat in his hands during the game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523517.jpg', 'caption': 'A batter in a blue jersey and a catcher in a white uniform waiting for the pitch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060641.jpg', 'caption': 'Four boxes of pizza are opened on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060641.jpg', 'caption': 'Four different pizzas spread out on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060641.jpg', 'caption': 'Four boxes of pizza are opened and eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060641.jpg', 'caption': 'Four boxes that have pizza on them in a row.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060641.jpg', 'caption': 'A row of pizzas in boxes on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194790.jpg', 'caption': 'Several people with several pizza posing for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194790.jpg', 'caption': 'A group of people that are looking at some pizzas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194790.jpg', 'caption': 'A group of girls getting pizza from a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194790.jpg', 'caption': 'a group of people and a table with four pizzas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194790.jpg', 'caption': 'A group of people gather round and enjoy some pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007023.jpg', 'caption': 'A couple of people on a court with tennis rackets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007023.jpg', 'caption': 'Some players in action on the tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007023.jpg', 'caption': 'A couple of men are playing a tennis game together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007023.jpg', 'caption': 'The two people are playing tennis on a multi purpose court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007023.jpg', 'caption': 'People playing a tennis match at an outdoor court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405093.jpg', 'caption': 'A sexy young woman standing on a tennis court holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405093.jpg', 'caption': 'A tennis player lunges to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405093.jpg', 'caption': 'Woman sporting a braid while holding a tennis racket and focusing on the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405093.jpg', 'caption': 'a tennis player swinging a tennis racket ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405093.jpg', 'caption': 'A tennis player is in a half split as she stretches to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017534.jpg', 'caption': 'Two men are playing tennis one of them is serving the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017534.jpg', 'caption': 'Tennis players on a dirt field have a crowd watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017534.jpg', 'caption': 'Two men playing doubles tennis in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017534.jpg', 'caption': \"Professional men's doubles tennis tournament on a clay court\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017534.jpg', 'caption': 'Two young men holding tennis racquets on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407056.jpg', 'caption': 'A pizza with purple cabbage topping on a table next to white bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407056.jpg', 'caption': 'A cabbage and apple foccacia on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407056.jpg', 'caption': 'A cooked and cut pizza topped with red onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407056.jpg', 'caption': 'A pizza with cabbage and mushrooms is pictured.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407056.jpg', 'caption': 'A side view of a pizza covered in onion', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334915.jpg', 'caption': 'A couple of people standing next to each other with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334915.jpg', 'caption': 'A couple of people talking to each other in a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334915.jpg', 'caption': 'A man and a woman standing side by side looking at each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334915.jpg', 'caption': 'a man is talking to a blonde haired woman', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334915.jpg', 'caption': 'TWO FRIENDS EXCHANGING LOOKS WHILE HAVING A MEAL', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307026.jpg', 'caption': 'Man in glasses swinging at a ball with a tennis racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307026.jpg', 'caption': 'A male tennis player returns a served ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307026.jpg', 'caption': 'A man hitting a tennis ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307026.jpg', 'caption': 'A man is swinging at a ball on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307026.jpg', 'caption': 'A man with glasses is playing tennis with racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148588.jpg', 'caption': 'A brick oven with logs and a uncooked pizza next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148588.jpg', 'caption': 'There is a stone oven pizza near the fire place', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148588.jpg', 'caption': 'a big fireplace with logs burning in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148588.jpg', 'caption': 'A closeup of the inside of an oven with pizza in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148588.jpg', 'caption': 'A pizza is cooking in a wood-burning oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266107.jpg', 'caption': 'A person that is looking at some people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266107.jpg', 'caption': 'A male tennis player walks to the stands where fans are watching', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266107.jpg', 'caption': 'The tennis player poses for a photo for a fan in the crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266107.jpg', 'caption': 'A tennis player holding a racket looking up at the spectators.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266107.jpg', 'caption': 'A tennis player is talking to the crowd at the Indianapolis Tennis Championships.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502982.jpg', 'caption': 'A tennis player with a racket at the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502982.jpg', 'caption': 'a man with a tennis racket in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502982.jpg', 'caption': 'Tennis player with hat and tennis racket waiting for ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502982.jpg', 'caption': 'a man holding a racket with both hands on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502982.jpg', 'caption': 'The tennis player holds his racquet with authority.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502982.jpg', 'caption': 'The tennis player holds his racquet with a dominating attitude.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240739.jpg', 'caption': 'A tennis player is swinging to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240739.jpg', 'caption': 'A man playing tennis on a tennis court during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240739.jpg', 'caption': 'man playing tennis on an outdoor tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240739.jpg', 'caption': 'A man hitting a tennis ball on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240739.jpg', 'caption': 'A man hitting a tennis ball with a racquet on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130677.jpg', 'caption': 'two people on a tennis court at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130677.jpg', 'caption': 'Well dressed man watching girl picking up tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130677.jpg', 'caption': 'Two men are playing tennis at night time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130677.jpg', 'caption': 'A pair of people standing on a tennis court at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130677.jpg', 'caption': 'A man in suit and girl playing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093765.jpg', 'caption': 'a close up of two cups on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093765.jpg', 'caption': 'Two coffee mugs sit with flower vase in the middle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093765.jpg', 'caption': 'A single rose in vase, sits between twin stylized mugs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093765.jpg', 'caption': 'a red rose is sitting next to a couple of mugs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093765.jpg', 'caption': 'Two coffee mugs on a table next to a single rose in a vase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433505.jpg', 'caption': 'A computer on a desk is in a dimly lit room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433505.jpg', 'caption': 'A computer and iPod sitting on a desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433505.jpg', 'caption': 'A desk with a very bright computer screen on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433505.jpg', 'caption': \"There's an apple monitor turned on with a iphone resting against it.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433505.jpg', 'caption': 'A computer with a cell phone resting against the monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324837.jpg', 'caption': 'A small computer screen opened in the room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324837.jpg', 'caption': 'a hand holding a mini computer and a mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324837.jpg', 'caption': 'A laptop sitting on a desk with someone touching the bottom of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324837.jpg', 'caption': 'There is a hand holding a laptop next to a mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324837.jpg', 'caption': 'A computer mouse sitting next to a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099515.jpg', 'caption': 'people in a store looking at old looking items on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099515.jpg', 'caption': 'Three people view framed images and other items in a shop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099515.jpg', 'caption': 'Two women and one man are browsing an antique store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099515.jpg', 'caption': 'Several people walk around tables to shop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099515.jpg', 'caption': 'People are looking at tables full of stuff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054533.jpg', 'caption': 'An open laptop computer sitting on a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054533.jpg', 'caption': 'An open macbook laptop resting on a book. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054533.jpg', 'caption': 'A laptop computer is sitting on top of a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054533.jpg', 'caption': 'A Macbook is placed on top of a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054533.jpg', 'caption': 'A lap top computer seated on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432906.jpg', 'caption': 'A cat sitting on top of a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432906.jpg', 'caption': 'A small cat lays on the keyboard of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432906.jpg', 'caption': 'A cat is sitting comfortable on a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432906.jpg', 'caption': 'A person sits in front of a laptop and cats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432906.jpg', 'caption': 'a close up of a cat laying on a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375875.jpg', 'caption': 'A dark room with a laptop on and someone sitting ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375875.jpg', 'caption': 'A hooded person sits in the dark next to a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375875.jpg', 'caption': 'There is a person in the picture alone.\\n\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375875.jpg', 'caption': 'The man is sitting in the light from a computer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375875.jpg', 'caption': 'A man with a hood on, sitting in the dark, in front of a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095516.jpg', 'caption': \"A pick up truck filled with wood in it's flat bed.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095516.jpg', 'caption': 'Truck with bed full of wood and a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095516.jpg', 'caption': 'A beige truck with wood in the truck bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095516.jpg', 'caption': 'There is a pickup truck with logs in its bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095516.jpg', 'caption': 'a truck with a bed full of wood and a stuffed bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411241.jpg', 'caption': 'A man sits in a room and looks at two laptops ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411241.jpg', 'caption': 'A man sitting on top of a large chair in front of two laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411241.jpg', 'caption': 'A bearded man with glasses on two computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411241.jpg', 'caption': 'The man with a mustache and beard is using two laptops. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411241.jpg', 'caption': 'A man that is sitting down with two laptops in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033904.jpg', 'caption': 'A teddy bear is positioned to read a text book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033904.jpg', 'caption': 'A teddy bear sits in a chair with an open book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033904.jpg', 'caption': 'Teddy bear comically reading textbook on kitchen table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033904.jpg', 'caption': 'Teddy bear in a chair with a book opened up in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033904.jpg', 'caption': 'A brown teddy bear sitting in front of an open book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054091.jpg', 'caption': 'A woman opening up a laptop computer gift in her living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054091.jpg', 'caption': 'there is a woman sitting on a leather chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054091.jpg', 'caption': 'A woman looking at a new laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054091.jpg', 'caption': 'A woman seated in a chair opening a gift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054091.jpg', 'caption': 'A woman plays with an object on a couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390841.jpg', 'caption': 'A man standing on a boat holding a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390841.jpg', 'caption': 'A man is working on his fishing line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390841.jpg', 'caption': 'A man on a boat preparing his fishing pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390841.jpg', 'caption': 'A man is cutting his fishing line on the boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390841.jpg', 'caption': 'FISHERMAN WITH A POLE HOLDING NEEDLE NOSE PLIERS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549845.jpg', 'caption': 'A man holding his cell phone in front of him in his left hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549845.jpg', 'caption': 'a close up of a person holding an older cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549845.jpg', 'caption': 'A man is holding up a flip phone in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549845.jpg', 'caption': 'A man holding a cell phone in the palm of his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549845.jpg', 'caption': 'A man wearing glass holding a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568205.jpg', 'caption': 'There is a woman taking out fresh baked bread', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568205.jpg', 'caption': 'A woman reaching for a piece of bread in a oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568205.jpg', 'caption': 'A woman pulls a loaf of bread from the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568205.jpg', 'caption': 'Woman smiles as she takes the bread out the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568205.jpg', 'caption': 'A woman reaches into the oven for her bread ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328962.jpg', 'caption': 'A large vase filled with white roses sitting on a table next to a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328962.jpg', 'caption': 'White roses in a vase by a vanity table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328962.jpg', 'caption': 'A fake flower arrangement sits next to a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328962.jpg', 'caption': 'a flower vase kept on the table in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328962.jpg', 'caption': 'A bouquest of flowers in a white vase near a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328962.jpg', 'caption': 'A mirror is hanging next to a vase of flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233426.jpg', 'caption': 'A photo of some flowers in a ceramic vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233426.jpg', 'caption': 'A picture of a vase of flowers on a shelf. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233426.jpg', 'caption': 'The small vase on the table is holding colorful flowers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233426.jpg', 'caption': 'A brown vase full of colorful flowers in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233426.jpg', 'caption': 'A wooden vase with flowers in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369887.jpg', 'caption': 'A nice ooking smart phon with a sticker on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369887.jpg', 'caption': 'a person holding up a cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369887.jpg', 'caption': 'The person is holding their phone in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369887.jpg', 'caption': 'A person displays the back of a smart phone in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369887.jpg', 'caption': 'Someone holding a Samsung phone with an Apple sticker on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180584.jpg', 'caption': 'Man relaxes on couch with pillows, blanket, and his computer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180584.jpg', 'caption': 'a laptop and a man holding a controller on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180584.jpg', 'caption': 'Resting on the couch with comforts close to hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180584.jpg', 'caption': 'A man laying on a couch holding a remote and covered with a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180584.jpg', 'caption': 'A man laying on a couch holding a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000387.jpg', 'caption': \"A smart phone with an image of a person on it's screen.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000387.jpg', 'caption': 'A stack of 3 computers and a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000387.jpg', 'caption': 'A stack containing three laptop computers and a smartphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000387.jpg', 'caption': 'Three laptops stacked on top of each other, from largest to smallest with a cell phone on the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000387.jpg', 'caption': 'a desk with three electronics stacked on each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415076.jpg', 'caption': 'A clock that is on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415076.jpg', 'caption': 'a group of people walking by an overhead', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415076.jpg', 'caption': 'A brick structure with a clock tower on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415076.jpg', 'caption': 'Many people are walking through a brick passageway ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415076.jpg', 'caption': 'A brick structure with a clock on top ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193194.jpg', 'caption': 'A small room has a bed and desk with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193194.jpg', 'caption': 'A bedroom with a computer desk next to bed, and bookcase above head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193194.jpg', 'caption': 'A bedroom with a laptop on a computer desk next to a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193194.jpg', 'caption': 'A bedroom setup with overhead bookshelf and computer desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193194.jpg', 'caption': 'A bedroom with an almost empty bookshelf and desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430259.jpg', 'caption': 'A man talking on a phone standing in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430259.jpg', 'caption': 'The man is standing on the sidewalk, talking on his phone with a small umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430259.jpg', 'caption': 'A man leaning on a railing talking on a phone with an attached tiny umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430259.jpg', 'caption': 'A man in white shirt on cellphone with a tiny umbrella extension.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430259.jpg', 'caption': 'A man is holding a cellular phone against the rail. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046941.jpg', 'caption': 'A small child is sitting on the couch playing with a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046941.jpg', 'caption': 'a little boy toddler sitting down down playing on a cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046941.jpg', 'caption': 'A small child looks at a cellphone on a coach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046941.jpg', 'caption': 'a child sitting next to his parent, holding her iphone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046941.jpg', 'caption': 'A little child sitting on a couch next to a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331535.jpg', 'caption': 'A kitchen with lots of metal appliances and a large metal table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331535.jpg', 'caption': 'A wall of commercial ovens in a large kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331535.jpg', 'caption': 'A large room with several silver and glass cabinets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331535.jpg', 'caption': 'An industrial kitchen full of ovens for cooking and baking. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331535.jpg', 'caption': 'Large industrial style kitchen space with prep table and refrigerators ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234679.jpg', 'caption': 'A woman bending over to get something hot out of the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234679.jpg', 'caption': 'A woman taking something out of a hot oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234679.jpg', 'caption': 'A woman starts to remove something from the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234679.jpg', 'caption': 'A woman takes cooked food out of the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234679.jpg', 'caption': 'A woman wearing an oven mitt taking something out of an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514097.jpg', 'caption': 'A pretty young lady talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514097.jpg', 'caption': 'A woman stands outside and talks on a cellphone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514097.jpg', 'caption': 'This woman is a phone call while standing on a ciy street in broad daylight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514097.jpg', 'caption': 'A woman stands on the sidewalk using her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514097.jpg', 'caption': 'A woman on a phone is on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526723.jpg', 'caption': 'Man wearing red coats sitting on grass using cellular phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526723.jpg', 'caption': 'A woman in a grey picture wearing a red jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526723.jpg', 'caption': 'A woman wearing a red jacket sitting on the floor using a phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526723.jpg', 'caption': 'A woman is sitting outside on her phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526723.jpg', 'caption': 'A woman sits in the grass talking on her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264124.jpg', 'caption': 'A person that is on his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264124.jpg', 'caption': 'a man smiling while talking on his phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264124.jpg', 'caption': 'The man is smiling at the camera as he talks on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264124.jpg', 'caption': 'Smiling guy with short hair on cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264124.jpg', 'caption': 'A man talking on a cell phone while sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404944.jpg', 'caption': 'a person has an orange cellphone and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404944.jpg', 'caption': 'a person taking a photo with their cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404944.jpg', 'caption': 'A young person holding up a cell phone to a computer screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404944.jpg', 'caption': 'Someone is looking at his laptop through the camera of his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404944.jpg', 'caption': 'person using cell phone to take picture of a computer screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416434.jpg', 'caption': 'A cell phone that is pointing at a shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416434.jpg', 'caption': 'A person holding a up a cell phone in front of a guy in a white shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416434.jpg', 'caption': 'A cellphone being used to read a qr code on a tee shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416434.jpg', 'caption': 'A person is holding a cellphone taking a selfie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416434.jpg', 'caption': 'a hand holding a cellphone and another person in a white tshirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337439.jpg', 'caption': 'A woman rolling her luggage through an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337439.jpg', 'caption': 'A lady moving along an airport with some luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337439.jpg', 'caption': 'A large display of a hand holding a cell phone to tell the time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337439.jpg', 'caption': 'A sculpture sponsored by Samsung of a large hand holding a cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337439.jpg', 'caption': 'Flip phone statue in the middle of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305589.jpg', 'caption': 'A blond haired woman holding up a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305589.jpg', 'caption': 'The teenager is taking a picture of her male friend with her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305589.jpg', 'caption': 'A woman holding an open cell phone up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305589.jpg', 'caption': 'A woman holding her phone up and pushing a button.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305589.jpg', 'caption': 'A young woman holding up her phone to take pictures', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420339.jpg', 'caption': 'A man talking on a cell phone on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420339.jpg', 'caption': 'A man on a cellphone on a lite up street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420339.jpg', 'caption': 'A man talks on a mobile phone in front of trees decorated with lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420339.jpg', 'caption': 'The man is talking on the phone in the streets covered with lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420339.jpg', 'caption': 'A man on the street is talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420120.jpg', 'caption': 'A boy and an older woman sitting on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420120.jpg', 'caption': 'A man and woman sit on a couch looking at their cell phones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420120.jpg', 'caption': 'The man and the woman sit on a couch using their cell phones. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420120.jpg', 'caption': 'A couple of people sitting on top of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420120.jpg', 'caption': 'a man and a woman are sitting on an old couch, on their phones. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552545.jpg', 'caption': 'A person laying on a pillow with a remote in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552545.jpg', 'caption': 'A child sleeping while holding an unidentifiable object. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552545.jpg', 'caption': 'A small child asleep with a remote in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552545.jpg', 'caption': 'A child lays down and takes a nap while holding a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552545.jpg', 'caption': 'A young person with long hair has fallen asleep with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174989.jpg', 'caption': 'A man sitting next to a woman while they both talk on cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174989.jpg', 'caption': 'Two people stand next to each other holding cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174989.jpg', 'caption': 'A couple dressed to be married are pretending to talk on cell phones. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174989.jpg', 'caption': 'A bride and groom on their cell phones. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174989.jpg', 'caption': 'A well dressed couple who are utilizing cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445041.jpg', 'caption': 'A moped police officer travels on a roadway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445041.jpg', 'caption': 'A policeman rides on a motorbike in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445041.jpg', 'caption': 'A policeman on a motorcycle driving through a village.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445041.jpg', 'caption': 'A man with a \"police\" shirt rides a moped while on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445041.jpg', 'caption': 'A man in a police uniform riding a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529234.jpg', 'caption': 'two old cell phones and a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529234.jpg', 'caption': 'A person sitting at a table with electronics on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529234.jpg', 'caption': 'A Blackberry, a Nokia, and a camera are laid out on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529234.jpg', 'caption': 'a calculator, a cell phone, and a camera sit on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529234.jpg', 'caption': 'A table top with phones and a camera on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306644.jpg', 'caption': 'a bunch of cell phones sit inside of a display case ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306644.jpg', 'caption': 'Lots of cell phones are on display on shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306644.jpg', 'caption': 'Man cell phones are on display in a store. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306644.jpg', 'caption': 'There is a display with many cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306644.jpg', 'caption': 'A display with multiple flip phones in different colors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068546.jpg', 'caption': 'A group of people are all holding up there phones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068546.jpg', 'caption': 'Four people showing off their cell phones to the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068546.jpg', 'caption': 'Four friends are holding the same model of cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068546.jpg', 'caption': 'A group of people all showing off there phones .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068546.jpg', 'caption': 'Four people are smiling and holding up smart phone devices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581437.jpg', 'caption': 'A close-up of a microwave and a street cone on the driveway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581437.jpg', 'caption': 'A white microwave in front of a cone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581437.jpg', 'caption': 'A microwave and a cone on asphalt by bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581437.jpg', 'caption': 'A small microwave oven sits near a caution cone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581437.jpg', 'caption': 'Orange cone and microwave sitting at the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054959.jpg', 'caption': 'A group of three microwaves sitting on a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054959.jpg', 'caption': 'Three microwave ovens placed next to each other on a countertop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054959.jpg', 'caption': 'Three microwave ovens in a row with two trivets and a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054959.jpg', 'caption': 'THREE DIFFERENT TYPES OF MICROWAVES WITH TURNTABLES ON TOP', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054959.jpg', 'caption': 'There are three microwaves standing in a line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285160.jpg', 'caption': 'A few people at a store near a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285160.jpg', 'caption': 'An open market is set beside a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285160.jpg', 'caption': 'A large tower like structure with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285160.jpg', 'caption': 'A clock tower stands tall while people walk by a clothing vendor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285160.jpg', 'caption': 'Couple walking past outdoor display racks of assorted clothing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255582.jpg', 'caption': 'a close up of a refrigerator next to another one ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255582.jpg', 'caption': 'A stainless steel fridge with an ice maker on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255582.jpg', 'caption': 'A silver refrigerator on display inside a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255582.jpg', 'caption': 'Silver refrigerators stand next to a store display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255582.jpg', 'caption': 'Two stainless steel refrigerators that are in a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299946.jpg', 'caption': 'A man appears to be making something in his kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299946.jpg', 'caption': 'a person in the kitchen using a mixer in a cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299946.jpg', 'caption': 'A woman near a messy kitchen counter holds a hand blender into a green drink.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000397518.jpg', 'caption': 'Two brown bears are standing on the rocks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397518.jpg', 'caption': 'Two brown bears walking away from the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397518.jpg', 'caption': 'Two large bears walking side by side in the desert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397518.jpg', 'caption': 'Two young bears are walking toward a rock wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397518.jpg', 'caption': 'A couple of bears that are standing on a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006748.jpg', 'caption': 'A woman is stooped beside a fence, watching a polar bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006748.jpg', 'caption': 'A zoo keeper keeps an eye on the polar bear in his cage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006748.jpg', 'caption': 'a polor bear inside of an cage while a woman is looking at it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006748.jpg', 'caption': 'A woman looking at a polar bear through the iron fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006748.jpg', 'caption': 'a woman looking at the white bear in a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438253.jpg', 'caption': 'A dog hides underneath a bed with its face peeking out of the bed skirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438253.jpg', 'caption': 'A dog peeking out from under a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438253.jpg', 'caption': 'A dog that is under a bed on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438253.jpg', 'caption': 'A dog is peaking its head out from underneat a bed skirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438253.jpg', 'caption': 'The small white dog is peeking out from under the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281331.jpg', 'caption': 'A dog laying under a bed on top of a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281331.jpg', 'caption': 'A puppy is peeking out from under a table cloth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281331.jpg', 'caption': 'a white dog under a bed with its eye wide open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281331.jpg', 'caption': 'a dog that is hiding under a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281331.jpg', 'caption': 'A dog hiding underneath the dust ruffle of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414819.jpg', 'caption': 'A bear with its mouth open and swiping a paw at another bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414819.jpg', 'caption': 'two brown bears next to each other on a patch of green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414819.jpg', 'caption': 'A couple of brown bears reaching out towards each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414819.jpg', 'caption': 'two brown bears playing with each other in the grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414819.jpg', 'caption': 'Two bear cubs play in an animal enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018480.jpg', 'caption': 'A group of guys in a field holding discs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018480.jpg', 'caption': 'A group of men holding neon frisbees on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018480.jpg', 'caption': 'a group of people standing around a cage while holding frisbees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018480.jpg', 'caption': 'A group of men with Frisbees pose for the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018480.jpg', 'caption': \"a Frisbee team dessed in black holding their Freebee's \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536006.jpg', 'caption': 'Two guys one wearing a white shirt the other red trying to catch a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536006.jpg', 'caption': 'Two men that are each trying to catch a Frisbee at the same time', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536006.jpg', 'caption': 'Two men playing friz bee in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536006.jpg', 'caption': 'Two men jumping at the same time for a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536006.jpg', 'caption': 'Two frisbee players are reaching up for a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349926.jpg', 'caption': 'A group of people on a grass field together playing a game with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349926.jpg', 'caption': 'a group of people jumping up to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349926.jpg', 'caption': 'People are in the grass playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349926.jpg', 'caption': 'A group of men playing frisbee on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349926.jpg', 'caption': 'a large group of people with hats playing with a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240033.jpg', 'caption': 'Boys on a sports field trying to catch the same frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240033.jpg', 'caption': 'Two men jumping for the same Frisbee on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240033.jpg', 'caption': 'two men jumping up to try and grab a frisbee in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240033.jpg', 'caption': 'Two males playing a game of frisbee on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240033.jpg', 'caption': 'A couple of boys playing frisbee against each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296511.jpg', 'caption': 'Polar bear stand on edge of a slide', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296511.jpg', 'caption': 'A smiling polar bear standing on a wooden structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296511.jpg', 'caption': 'A polar bear walking on something near cement blocks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296511.jpg', 'caption': 'A polar bear on a ledge of some sort. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296511.jpg', 'caption': 'A white polar bear stands on a wooden thing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449856.jpg', 'caption': 'Two brown grizzly bears are rearing up and fighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449856.jpg', 'caption': 'Two bears standing on their hind legs and fighting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449856.jpg', 'caption': 'Two bears in the woods fighting with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449856.jpg', 'caption': 'Two bears stand face to face looking fierce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449856.jpg', 'caption': 'Two brown bears standing on their hind legs in front of pine trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547866.jpg', 'caption': 'Two ultimate Frisbee players jumping to contest a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547866.jpg', 'caption': 'men on the field playing frisbee as others watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547866.jpg', 'caption': 'A couple of guys going after a white frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547866.jpg', 'caption': 'Some people in action on a field with a disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547866.jpg', 'caption': 'Two people jump to catch a Frisbee while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344410.jpg', 'caption': 'A couple of men that are standing in the grass with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344410.jpg', 'caption': 'A guy walking on a field holding a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344410.jpg', 'caption': 'A man holds a Frisbee on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344410.jpg', 'caption': 'A man standing in a field with a frisbee in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344410.jpg', 'caption': 'A man holds onto a Frisbee during a game on a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358086.jpg', 'caption': 'There are some female athletes playing frisbee together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358086.jpg', 'caption': 'A couple of young girls playing a game of frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358086.jpg', 'caption': 'A group of girls celebrating as they leave the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358086.jpg', 'caption': 'A woman in a black jersey catching a frisbee mid air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358086.jpg', 'caption': 'Teen girls celebrate on the field during a soccer game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343571.jpg', 'caption': 'Two black bears standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343571.jpg', 'caption': 'close up of two bears close to one another', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343571.jpg', 'caption': 'Two bears sit close together in their environment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343571.jpg', 'caption': 'Two young black and tan bears with a stick. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343571.jpg', 'caption': 'Two black bears in a park during the daytime.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061262.jpg', 'caption': 'A large white polar bear holding onto an object while floating in blue water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061262.jpg', 'caption': 'A polar bear is in the water holding on to a disk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061262.jpg', 'caption': 'A polar bear holding on to a toy in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061262.jpg', 'caption': 'Polar bear hanging onto a floating device in water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061262.jpg', 'caption': 'A polar bear in the water playing with a giant disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255067.jpg', 'caption': 'A polar bear with its head under the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255067.jpg', 'caption': 'A polar bear goes bobbing for fish at the zoo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255067.jpg', 'caption': 'A polar bear dating into water from a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255067.jpg', 'caption': 'Polar bear dives into the water face first', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255067.jpg', 'caption': \"A large white polar bear swimming in a lake on it's head.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318721.jpg', 'caption': 'A woman looking at a polar bear through glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318721.jpg', 'caption': 'A polar bear in a water tank posing for a picture the lade is going to take.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318721.jpg', 'caption': 'a polar bear partly submerged in water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318721.jpg', 'caption': 'A large polar bear swimming in an exhibit at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318721.jpg', 'caption': 'A polar bear swimming up close to a photographer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286785.jpg', 'caption': 'A zebra reaching its head into a car to lick a passengers legs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286785.jpg', 'caption': 'A zebra sticks his head in a car with passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286785.jpg', 'caption': 'A zebra has stuck its head into a car with a passenger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286785.jpg', 'caption': 'A zebra sticks his head into a car window and checks out a passenger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286785.jpg', 'caption': 'A zebra reaching into someones car with its head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038155.jpg', 'caption': 'there are many people on this field playing with a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038155.jpg', 'caption': 'A group of men and women outside on the grass playing games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038155.jpg', 'caption': 'A group of people playing Frisbee at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038155.jpg', 'caption': 'A group of people playing catch with a Frisbee in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038155.jpg', 'caption': 'A group of people playing frisbee against each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179950.jpg', 'caption': 'A group of people, many wearing red shirts or vests are on a grassy area while a white Frisbee is in the air above their heads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179950.jpg', 'caption': 'People on teams in a park playing with a frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179950.jpg', 'caption': 'Many people are on the filed playing Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179950.jpg', 'caption': 'Group of people running and playing in grassy field with trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179950.jpg', 'caption': 'a group of people play a game of frisbee in a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288399.jpg', 'caption': 'A brown dog flying through the air with a red frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288399.jpg', 'caption': 'A brown dog jumping in the air and catching a frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288399.jpg', 'caption': 'A dog jumping high in the air with a frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288399.jpg', 'caption': 'a dog jumping high in the air catching a frisbee in its mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288399.jpg', 'caption': 'A dog leaping in the air to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426874.jpg', 'caption': 'Dog lying under desk next to chair in home setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426874.jpg', 'caption': 'a dog laying on the floor between a chair a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426874.jpg', 'caption': 'A tan old dog laying underneath a desk .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426874.jpg', 'caption': 'A dog laying next to a wooden table curled up in a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426874.jpg', 'caption': 'A dog rests curled up under a desk, behind a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303320.jpg', 'caption': 'A man throwing a frisbee to his friend standing in his yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303320.jpg', 'caption': 'A person with a big dipper tatoo throwing a frisbee to a man in a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303320.jpg', 'caption': 'A person reaching out their hand towards a white frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303320.jpg', 'caption': 'A person that is standing in grass with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303320.jpg', 'caption': 'Frisbee barely thrown away from hand with intended target person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110435.jpg', 'caption': 'A woman bathing her dog in the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110435.jpg', 'caption': 'A woman is giving her dog a bath.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110435.jpg', 'caption': 'A puppy being given a bath in the sink by a young woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110435.jpg', 'caption': 'Lady enjoying bathing a dog in a small blue basin in a bathroom or kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110435.jpg', 'caption': 'Girl washing a dog who is sitting in a bucketful of water in a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347650.jpg', 'caption': 'A dog is laying in a chair in front of a book shelf. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347650.jpg', 'caption': 'An old dog lying in front of a bookcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347650.jpg', 'caption': 'A large black dog laying next to a book shelf filled with books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347650.jpg', 'caption': 'A dog is lying on a cushion on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347650.jpg', 'caption': 'a black dog is resting on a brown cushion', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187177.jpg', 'caption': 'A dog gets its teeth brushed by a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187177.jpg', 'caption': 'Man holding dog mouth open to brush teeth in tiled area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187177.jpg', 'caption': 'A man cleaning a dogs teeth with a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187177.jpg', 'caption': \"A picture of a man brushing his dog's teeth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187177.jpg', 'caption': 'A man is trying to brush the teeth of his dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403349.jpg', 'caption': 'A man wearing a baseball hat tossing a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403349.jpg', 'caption': 'A man is throwing a frisbee in a sandy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403349.jpg', 'caption': 'A man in a baseball cap throwing a frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403349.jpg', 'caption': 'A man about to throw a frisbee by the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403349.jpg', 'caption': 'A man with a jacket posing to throw a frisbee outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124873.jpg', 'caption': 'two children on a field of grass playing frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124873.jpg', 'caption': 'A young girl standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124873.jpg', 'caption': 'Little girl throwing a frisbee to another child on a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124873.jpg', 'caption': 'two children standing in the grass playing with a frisby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124873.jpg', 'caption': 'THERE ARE PEPOPLE THAT ARE PLAYING IN THE FIELD ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468162.jpg', 'caption': 'A living room scene is shown with a man sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468162.jpg', 'caption': 'A man asleep on his back on a sofa with an infant asleep on his stomach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468162.jpg', 'caption': 'A man taking a nap on a couch in front of a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468162.jpg', 'caption': 'a man laying on a couch in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468162.jpg', 'caption': 'A man and a baby lying on the couch in a living room ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034892.jpg', 'caption': 'a big body of water with a freeze be next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034892.jpg', 'caption': 'there is a orange frisbee being held in front of the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034892.jpg', 'caption': 'An orange Frisbee against a blue ocean background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034892.jpg', 'caption': 'An orange Frisbee with the ocean and blue sky in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034892.jpg', 'caption': 'A very nice view of the ocean with an orange frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544071.jpg', 'caption': 'A herd of zebra standing next to each other in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544071.jpg', 'caption': 'Some zebras graze on a field with trees and grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544071.jpg', 'caption': 'A zebra wagging its tail as it eats some grass on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544071.jpg', 'caption': 'Zebras are socializing in a pattern of three by three by one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544071.jpg', 'caption': 'The large group of zebras are grazing in the grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012966.jpg', 'caption': 'A dog on a leash, relaxing on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012966.jpg', 'caption': 'A brown and white dog on a leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012966.jpg', 'caption': 'A dog wearing a harness while laying on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012966.jpg', 'caption': 'A dog lies down and waits on sand at a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012966.jpg', 'caption': 'A droopy basset hound sits on the sand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357356.jpg', 'caption': 'A man tossing a frisbee standing on a stone path in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357356.jpg', 'caption': 'A boy standing outside a porch is holding his head and hands up in the air and is ready to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357356.jpg', 'caption': 'A man readies himself to catch a lightly tossed frisbee near a cabin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357356.jpg', 'caption': 'A person tossing a Frisbee in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357356.jpg', 'caption': 'A young man is throwing a frisbee up in the air and catching it between a house entryway with a railing and a garden area with steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142940.jpg', 'caption': 'A man standing in a field holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142940.jpg', 'caption': 'A man holding a Frisbee stands in the middle of a lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142940.jpg', 'caption': 'A man is holding a pink Frisbee in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142940.jpg', 'caption': 'A man with a red frisbee in a big grassy backyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142940.jpg', 'caption': 'A man in the middle of a yard holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548331.jpg', 'caption': 'A dog standing in front of a white frisbee at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548331.jpg', 'caption': 'This is a darkened picture of a dog chasing a Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548331.jpg', 'caption': 'A dog is jumping up as a Frisbee flies through the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548331.jpg', 'caption': 'a dog playing at night with a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548331.jpg', 'caption': 'Dog displaying skills near disc in open grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462241.jpg', 'caption': 'A costumed mascot with a floppy ears and a tail holding up a disc in a sports arena.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462241.jpg', 'caption': 'A mascot waving to the fans in the crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462241.jpg', 'caption': 'There is a person in a mascot costume waving at the crowd', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462241.jpg', 'caption': 'A person in a red dog costume with frisbees in front of a small audience.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462241.jpg', 'caption': 'A person is dressed as a red dog holding a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442565.jpg', 'caption': \"The dog is jumping to catch a white Frisbee with it's mouth. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442565.jpg', 'caption': 'A man standing next to a dog inside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442565.jpg', 'caption': 'A dog leaps for a frisbee at a dog show.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442565.jpg', 'caption': \"A dog jumping and catching a frisbee in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442565.jpg', 'caption': 'Group of people taking photos at a dog show together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078838.jpg', 'caption': 'A group of people posing on sidewalk with a plaque.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078838.jpg', 'caption': 'A group of people sitting together on some steps', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078838.jpg', 'caption': 'A group of friends sitting on a step pose with a sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078838.jpg', 'caption': 'A large group of people sitting down on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078838.jpg', 'caption': 'A team photo with a trophy after a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091474.jpg', 'caption': 'Two zebras walking together with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091474.jpg', 'caption': 'Two zebras walk through the green grass together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091474.jpg', 'caption': 'Two zebras are walking in front of some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091474.jpg', 'caption': 'Two zebra standing next to each other in a purple flower filled forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091474.jpg', 'caption': 'Two zebra walk very near each other next to the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200720.jpg', 'caption': 'A zebra displays its rear end and turns its head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200720.jpg', 'caption': 'A zebra showing his backside to the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200720.jpg', 'caption': 'A back side view of a zebra looking back on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200720.jpg', 'caption': 'a picture of the back end of a zebra ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200720.jpg', 'caption': 'a zebra stands in front of a big tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430652.jpg', 'caption': 'A bunch of statues that are standing on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430652.jpg', 'caption': 'A group of statues of men riding horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430652.jpg', 'caption': 'a few statues of some men riding horses next to a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430652.jpg', 'caption': 'a couple of horse statues that are outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430652.jpg', 'caption': 'A picture of bronze statues of racing horses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569070.jpg', 'caption': 'some zebras standing around a tree in a cage ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569070.jpg', 'caption': 'Zebras are eating in a rocky place that looks like it may be in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569070.jpg', 'caption': 'Three Zebras standing around in their zoo habitat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569070.jpg', 'caption': 'A group of zebras in a rocky area with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569070.jpg', 'caption': 'Several zebras in a zoo enclosure nibble on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344314.jpg', 'caption': 'A small herd of zebra standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344314.jpg', 'caption': 'Two zebra are standing behind a sign that warns visitors not to feed animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344314.jpg', 'caption': 'Two zebras standing behind a sign in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344314.jpg', 'caption': 'The two zebras are standing behind the warning sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344314.jpg', 'caption': 'A pair of zebras behind a sign that warns not to feed them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243331.jpg', 'caption': 'A white horse looking out of a window at a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243331.jpg', 'caption': 'A horse looking out a window in a brick building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243331.jpg', 'caption': 'a horse at a window of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243331.jpg', 'caption': 'A white horse standing behind a window in a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243331.jpg', 'caption': 'A white horse that is looking out a second story window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440895.jpg', 'caption': 'A white horse looking through the window of a tall brick building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440895.jpg', 'caption': 'A brick building has a horse in the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440895.jpg', 'caption': 'A white horse can be seen in the window of a brick building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440895.jpg', 'caption': 'what looks like a white horse standing behind a second floor window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440895.jpg', 'caption': 'A view of a horse staring out a building window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130791.jpg', 'caption': 'A horse and bug-gee is riding next to the buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130791.jpg', 'caption': 'The horse carriage is driving down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130791.jpg', 'caption': 'A horse pulled carriage on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130791.jpg', 'caption': 'A horse drawn carriage drives down a brick road past several historic buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130791.jpg', 'caption': 'a black horse is pulling some people in a cart and buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010077.jpg', 'caption': 'a zebra standing in a field in under the shade of a near yb tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010077.jpg', 'caption': 'A zebra stands near a mound of dirt in a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010077.jpg', 'caption': 'A zebra standing in the shade of a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010077.jpg', 'caption': 'A zebra in a field with a wooded area in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010077.jpg', 'caption': 'A zebra stands next to a pile of dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043165.jpg', 'caption': 'Two zebra standing next to each other on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043165.jpg', 'caption': 'A zebra standing right behind another in the hay', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043165.jpg', 'caption': 'two zebra standing side by side next to some hay', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043165.jpg', 'caption': 'Two zebras standing in a grassy and dirt area next to a pile of grass clippings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043165.jpg', 'caption': 'A couple of zebra standing by a tree in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451305.jpg', 'caption': 'a small zebra on dirt ground near a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451305.jpg', 'caption': 'A single zebra that is standing in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451305.jpg', 'caption': 'A single zebra standing in a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451305.jpg', 'caption': 'A stripped animal is standing near a rock and a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451305.jpg', 'caption': 'A zebra is in a zoo habitat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293591.jpg', 'caption': 'A couple of rhino standing next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293591.jpg', 'caption': 'A couple of rhinos standing in a field near a zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293591.jpg', 'caption': 'Two rhinos that are standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293591.jpg', 'caption': 'Two rhinos and a zebra walking around near a tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293591.jpg', 'caption': 'A zebra and two rhinos are standing near a large rock formation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046975.jpg', 'caption': 'Boy holding skinny horse near jeep with tow hook.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046975.jpg', 'caption': 'A man standing next to a horse and a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046975.jpg', 'caption': 'a man holding a horse in a rocky area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046975.jpg', 'caption': 'a man that has a horse tied up ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046975.jpg', 'caption': 'child with a brown horse in a desert type location', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544639.jpg', 'caption': 'a black and white zebra some rocks and plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544639.jpg', 'caption': 'A zebra that is walking past a big rock in his pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544639.jpg', 'caption': 'A zebra walking past a large rock and green plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544639.jpg', 'caption': 'A zebra that is walking in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544639.jpg', 'caption': 'a zebra walking through a natural looking habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150040.jpg', 'caption': 'two zebras eating grass in a very big field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150040.jpg', 'caption': 'A zebra and its baby eating grass in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150040.jpg', 'caption': 'Two zebras grazing in an open grassy plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150040.jpg', 'caption': 'The two zebras are facing the same direction as they eat grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150040.jpg', 'caption': 'Two zebras grazing on a cloudy day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272961.jpg', 'caption': 'A large horse studding next to a baby horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272961.jpg', 'caption': 'An adult horse and baby horse walking across a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272961.jpg', 'caption': 'Two brown horses walking in grassy area with building in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272961.jpg', 'caption': 'A couple of animals that are in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272961.jpg', 'caption': 'Horses walking through the yard toward a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113579.jpg', 'caption': 'A mama and a baby horse are standing near one another in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113579.jpg', 'caption': 'Two horses standing in an open field on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113579.jpg', 'caption': 'A horse looks into the camera with another horse nearby. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113579.jpg', 'caption': 'Two horses standing in a grassy field with mountains in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113579.jpg', 'caption': 'Two horses are seen standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318146.jpg', 'caption': 'A person reaching out to pet a horse with hills and fields in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318146.jpg', 'caption': 'A brown horse with flowing blonde hair standing on a dirt lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318146.jpg', 'caption': 'A close-up of a man hating the horses face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318146.jpg', 'caption': 'A person pets the head of a horse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318146.jpg', 'caption': 'A person petting a horse that has a blonde mane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383293.jpg', 'caption': 'Close up of a brown horse looking into the camera, with a green field and mountain scenic as a backdrop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383293.jpg', 'caption': 'A brown horse standing in a field surrounded by mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383293.jpg', 'caption': 'A brown horse standing on top of a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383293.jpg', 'caption': 'A large horse on open a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383293.jpg', 'caption': 'The ears of this horse are sticking straight up. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431521.jpg', 'caption': 'A llama looks at the camera from a fenced in, grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431521.jpg', 'caption': 'A camel and two horses in a farm enclosure. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431521.jpg', 'caption': 'The emu is sitting in the dirt near a metal fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431521.jpg', 'caption': 'Open range with cattle grazing and mountains in back drop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431521.jpg', 'caption': 'Animals are grazing in a fenced in field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565431.jpg', 'caption': 'Dark hair lama or alpaca with farm and mountain background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565431.jpg', 'caption': 'A llama and two horses stand in a field in front of mountains. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565431.jpg', 'caption': 'A llama sitares a head in a field of green grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565431.jpg', 'caption': 'an alpaca standing in a field with horses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565431.jpg', 'caption': 'An alert llama shares a paddock with two horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383229.jpg', 'caption': 'A bunch of horses with jockeys in a race on a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383229.jpg', 'caption': 'Their are horses racing and one horse is far ahead', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383229.jpg', 'caption': 'Several horses racing by with jockeys pushing them to go faster', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383229.jpg', 'caption': 'a fake person watching a fake horse race', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383229.jpg', 'caption': 'a number of horses racing on a track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570695.jpg', 'caption': 'A white horse walking in the grass near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570695.jpg', 'caption': 'A horse standing in the middle of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570695.jpg', 'caption': 'An horse standing in a field with a forest in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570695.jpg', 'caption': 'a horse grazing in an open grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570695.jpg', 'caption': 'A horse in a pasture by the mountains ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137085.jpg', 'caption': 'Three pedestal plates holding oranges on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137085.jpg', 'caption': 'Display of ornamental vases and figurines with oranges stacked on stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137085.jpg', 'caption': 'A table set with oranges, figurines and vases. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137085.jpg', 'caption': 'Three different holders with oranges near some unique nick knacks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137085.jpg', 'caption': 'A group of oranges on plates in front of Oriental Statues.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021397.jpg', 'caption': 'A yellow plate topped with bread and slices of fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021397.jpg', 'caption': 'A yellow plate has fruit and bread on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021397.jpg', 'caption': 'Eggs toast and healthy fruits are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021397.jpg', 'caption': 'a plate with some bread fruits and vegetables on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021397.jpg', 'caption': 'A plate with an omelet, bread, oranges, apples and tomatoes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226744.jpg', 'caption': 'a glove that has a bunch of baseballs in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226744.jpg', 'caption': 'A worn baseball glove with seven baseball in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226744.jpg', 'caption': 'a large number of baseballs sitting in a old mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226744.jpg', 'caption': 'A baseball glove full of dirty used baseballs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226744.jpg', 'caption': 'A baseball glove holds a large number of balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424174.jpg', 'caption': 'Bananas sitting on top of apples, pears, and other fruits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424174.jpg', 'caption': 'A large plate topped with lots of fresh fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424174.jpg', 'caption': 'A platter full of bananas, apples, oranges, peaches, pears and limes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424174.jpg', 'caption': 'there is a large platter of fruit on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424174.jpg', 'caption': 'A tray heaped with fruit including banans apples oranges and limes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572571.jpg', 'caption': 'a pitcher throwing a ball towards a batter during a Dodgers game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572571.jpg', 'caption': 'Three baseballs players and two referees are playing and officiating a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572571.jpg', 'caption': 'A professional baseball game going on in a baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572571.jpg', 'caption': 'A baseball player holding a bat while standing next to a base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572571.jpg', 'caption': 'a man that is standing up at home plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072275.jpg', 'caption': 'The wooden plate has a banana, peaches, and a green apple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072275.jpg', 'caption': 'A wooden bowl with some fruit in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072275.jpg', 'caption': 'some bananas peaches apricots and and apple ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072275.jpg', 'caption': 'A plate filled with fruits while sitting on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072275.jpg', 'caption': 'Various fruits in a bowl on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577073.jpg', 'caption': 'A man riding a board on top of a pile of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577073.jpg', 'caption': 'A skier jumping off of a ramp in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577073.jpg', 'caption': 'Skier in orange pants jumping a small jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577073.jpg', 'caption': 'Skier flying off a ramp built of snow by a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577073.jpg', 'caption': 'A skier in mid air jumping a ramp in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479129.jpg', 'caption': 'Two slices of bananas next to ice cream on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479129.jpg', 'caption': 'a close up of a plate of food with bananas and ice cream', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479129.jpg', 'caption': 'The plate has a scoop of ice cream between two banana slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479129.jpg', 'caption': 'A banana desert served with some ice cream. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479129.jpg', 'caption': 'A plate with bananas, ice cream and soda on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013031.jpg', 'caption': 'a person jumping a jet ski in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013031.jpg', 'caption': 'a man riding a jetski in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013031.jpg', 'caption': 'A single rider performs a somersault on a jet ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013031.jpg', 'caption': 'a person on a water ski boat jumping in the air in the boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013031.jpg', 'caption': 'A jet ski rider does a flip in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332096.jpg', 'caption': 'A man captured in every aspect of delivering a baseball from a mound.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332096.jpg', 'caption': 'a digitally manipulated picture with multiple images of a baseball pitcher ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332096.jpg', 'caption': 'A time lapse image of a guy throwing a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332096.jpg', 'caption': \"Time lapse photography shows the different stages in a pitcher's throw.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332096.jpg', 'caption': 'A unique shot of the same baseball player, fixing to throw his pitch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402922.jpg', 'caption': 'vendors standing at fruit stands at outdoor market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402922.jpg', 'caption': 'Men sell oranges in a street market place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402922.jpg', 'caption': 'Two men are shopping at the outside fruit market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402922.jpg', 'caption': 'A long row of bins filled with fruit on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402922.jpg', 'caption': 'Men standing next to a display of fruits for sale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350463.jpg', 'caption': 'A woman holding a tray of bananas over the top of her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350463.jpg', 'caption': 'A young lady with a tray of bananas on her head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350463.jpg', 'caption': 'Child wearing a yellow dotted top with a bowl on her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350463.jpg', 'caption': 'a smiling woman carrying a plate of bananas on her head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350463.jpg', 'caption': 'Young lady carrying plate of bananas on her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158722.jpg', 'caption': 'Bunches of bananas for sale at an outdoor market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158722.jpg', 'caption': 'There are many bananas layer across this table at a farmers market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158722.jpg', 'caption': 'intricately displayed bananas at an outside farmers market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158722.jpg', 'caption': 'A person at a table filled with bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158722.jpg', 'caption': 'A table of displayed bananas at a street market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035368.jpg', 'caption': 'Some green bananas are hanging from a metal bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035368.jpg', 'caption': 'A bowl containing fruit is on a counter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035368.jpg', 'caption': 'bananas, limes, kiwi and lemon in a steel bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035368.jpg', 'caption': 'A bundle of green bananas is hung over a bowl of fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035368.jpg', 'caption': 'A variety of fruit sitting on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394801.jpg', 'caption': 'The bushels of bananas on display are purple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394801.jpg', 'caption': 'some purple bananas sitting between apples and some squash', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394801.jpg', 'caption': 'some purple bananas and other fruits are together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394801.jpg', 'caption': 'A pile of black bananas and other fruit ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394801.jpg', 'caption': 'Assorted fruit on display at a fruit market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498439.jpg', 'caption': 'Fans observing a baseball game in process. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498439.jpg', 'caption': 'a base runner rests with his hands on his hips as the catcher makes his way back toward the plate from the infield.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498439.jpg', 'caption': 'A baseball player at third plate and a catcher walking back to home base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498439.jpg', 'caption': 'A team of baseball players playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498439.jpg', 'caption': 'Members of opposing baseball teams are on a baseball field as the spectators sit in the grandstand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523560.jpg', 'caption': 'A plate topped with meat, vegetables and beans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523560.jpg', 'caption': 'A healthy meal of chicken, beans and various vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523560.jpg', 'caption': 'A plate with veggies, chicken and black beans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523560.jpg', 'caption': 'This is a very healthy dish made up of meat and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523560.jpg', 'caption': 'a zoomed image of a plate of ethnic food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240259.jpg', 'caption': 'Two monkeys, one with a banana at a tourist stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240259.jpg', 'caption': 'The monkeys are eating bananas near the car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240259.jpg', 'caption': 'The monkey is sitting and enjoying his banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240259.jpg', 'caption': 'two monkeys sitting in a park peeling and eating bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240259.jpg', 'caption': 'Monkeys sitting in front of a parked car eating bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419789.jpg', 'caption': 'Two skiiers are riding on a ski lift', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419789.jpg', 'caption': 'Two people riding the lifts at a ski resort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419789.jpg', 'caption': 'Two people with skis ride a ski-lift on a snowy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419789.jpg', 'caption': 'a couple of people ride on a ski life ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419789.jpg', 'caption': 'A couple of people taking a ski run up to the top of the mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373577.jpg', 'caption': 'A man that is holding a tray with vegetables inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373577.jpg', 'caption': 'A man sitting and smiling,holding a blue container of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373577.jpg', 'caption': 'A man is holding a bed pan full of fruits and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373577.jpg', 'caption': 'A man with a beard holding a bin of fruit and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373577.jpg', 'caption': 'A man is happily holding a lot of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387824.jpg', 'caption': 'A tray of chicken with sauce on it and some broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387824.jpg', 'caption': 'A carry out container of chicken and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387824.jpg', 'caption': 'A plastic container of food including chicken and broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387824.jpg', 'caption': 'A big bowl of teriyaki chicken and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387824.jpg', 'caption': 'Black tray with me investable sitting on top of the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420330.jpg', 'caption': 'A white plate topped with a cheesy green pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420330.jpg', 'caption': 'food in a bowl sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420330.jpg', 'caption': 'A pizza on a white plate on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420330.jpg', 'caption': 'A plate with a pizza on a dining table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420330.jpg', 'caption': 'A spinach and cheese pizza with tomato sauce on a plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390215.jpg', 'caption': 'A plate of chicken with herbs and steamed broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390215.jpg', 'caption': 'A couple of pieces of chicken next to some broccoli on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390215.jpg', 'caption': 'Baked chicken sits on a plate steaming next to cut broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390215.jpg', 'caption': 'A plate topped with two pieces of meat and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390215.jpg', 'caption': 'Two pieces of meat and broccoli on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239808.jpg', 'caption': 'A plate that has different types of food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239808.jpg', 'caption': 'A plate holds meat, potatoes, and a vegetable mix. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239808.jpg', 'caption': 'Meal of meat, potatoes, and vegetables on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239808.jpg', 'caption': 'well cooked potatoes and a fish fillet on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239808.jpg', 'caption': 'A plate contains potatoes, vegetables, and a meat of some kind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226170.jpg', 'caption': 'a close up of a plate of food like peas and broccoli ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226170.jpg', 'caption': 'Peas, carrots and broccoli sit together next to a bottle of water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226170.jpg', 'caption': 'A dish made of carrots, peas, and broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226170.jpg', 'caption': 'A close up of peas, carrots, and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226170.jpg', 'caption': 'Peas, shoestring carrots, and broccoli in a pile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391320.jpg', 'caption': 'A bowl fulled of vegetables sitting on top of a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391320.jpg', 'caption': 'There is a bowl of vegetables that include peas, carrots and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391320.jpg', 'caption': 'A salad bowl full of broccoli, carrots, peas, and kidney beans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391320.jpg', 'caption': 'A giant vegetable salad is sitting on a table top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391320.jpg', 'caption': 'a bowl filled with different kinds of vegetables. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076956.jpg', 'caption': 'The baseball pitcher has wound up his arm to pitch that ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076956.jpg', 'caption': 'A baseball player throwing a pitch onto the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076956.jpg', 'caption': 'A baseball pitcher in the act of making a throw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076956.jpg', 'caption': 'A baseball player is preparing to pitch the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076956.jpg', 'caption': 'A professional baseball player pitching a ball at a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352214.jpg', 'caption': 'A pizza with lots of different topping son it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352214.jpg', 'caption': 'Beef, vegetables, and tofu cooking in a broth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352214.jpg', 'caption': 'A serving of stir fried mixed vegetables and meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352214.jpg', 'caption': 'an arrangement of vegetables cooked and standing together on a platter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352214.jpg', 'caption': 'A mixture of cooked vegetables, including broccoli, mushrooms, and peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398563.jpg', 'caption': 'A pile of stir fried meat and vegetables covered in a sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398563.jpg', 'caption': 'A plate full of beef with broccoli and carrots', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398563.jpg', 'caption': 'The meal consists of beef, brocolli, and other vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398563.jpg', 'caption': 'Close up of food that includes beef, carrots and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398563.jpg', 'caption': 'a juicy salad with broccoli and peppers up close', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464087.jpg', 'caption': 'A baseball batter takes a mighty swing as the catcher and umpire look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464087.jpg', 'caption': 'A baseball player at home plate taking a swing at the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464087.jpg', 'caption': 'A batter swinging a bat with the catcher and umpire behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464087.jpg', 'caption': 'A baseball player swinging a bat during a game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464087.jpg', 'caption': 'The umpire stands over a baseball catcher as the batter swings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055074.jpg', 'caption': 'Baseball player swinging at an approaching ball with catcher at the ready.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055074.jpg', 'caption': 'BATTER SWINGS AT THE BALL, WITH REFEREE KNEELING BEHIND', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055074.jpg', 'caption': 'A batter swings his bat at a baseball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055074.jpg', 'caption': 'An umpire, catcher and batter take their places on a baseball diamond near home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055074.jpg', 'caption': 'Met player swings at a fast ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443169.jpg', 'caption': 'A baseball player holding a bat near a base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443169.jpg', 'caption': 'The man is hitting the baseball during the game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443169.jpg', 'caption': 'A baseball player just took a swing at a pitch and missed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443169.jpg', 'caption': 'a man in the batters box swings at a pitch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443169.jpg', 'caption': 'Looking down at the action on a baseball field during a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156687.jpg', 'caption': 'a large pizza is in a cardboard box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156687.jpg', 'caption': 'Adults expressing feelings toward baked pizza in box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156687.jpg', 'caption': 'A person giving the middle finger to a box of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156687.jpg', 'caption': 'This man is pointing at a fresh pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156687.jpg', 'caption': 'He points at the pizza in the pizza box using his middle fingers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049740.jpg', 'caption': 'A child baseball player tries to hit the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049740.jpg', 'caption': 'A young baseball player has just hit the ball at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049740.jpg', 'caption': 'A little league batter swings while a catcher holds out his glove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049740.jpg', 'caption': 'boy swinging bat with catcher kneeling on ground behind him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049740.jpg', 'caption': 'A baseball player swinging his bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492323.jpg', 'caption': 'A baseball player standing in the outfield waiting for a play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492323.jpg', 'caption': 'Black and white photograph of man on baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492323.jpg', 'caption': 'A baseball player standing on a field wearing a catchers mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492323.jpg', 'caption': 'A black and white photo of a baseball player', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492323.jpg', 'caption': 'A young male baseball player on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308630.jpg', 'caption': 'Person with cross-country skies and poles standing in the middle of a trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308630.jpg', 'caption': 'A person riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308630.jpg', 'caption': 'A skiers comes down a slope in a trail in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308630.jpg', 'caption': 'A skier with a red coat in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308630.jpg', 'caption': 'A person on skis standing on a snow covered slope in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313176.jpg', 'caption': 'An unfrosted cake in a metal pan with green spots on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313176.jpg', 'caption': 'A baked loaf of bread is shown still in the pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313176.jpg', 'caption': 'Some type of corn bread in a baking pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313176.jpg', 'caption': 'A large, cake with no icing has some green accents and sits inside a grey pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313176.jpg', 'caption': 'A loaf of bread with something green baked in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556726.jpg', 'caption': 'These broccoli are bright green and laying before dark green broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556726.jpg', 'caption': 'Closeup of pieces of broccoli on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556726.jpg', 'caption': 'This is some light green and dark green flowery veg', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556726.jpg', 'caption': 'A cutting board with several heads of broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556726.jpg', 'caption': 'A pile of green vegetables on top of a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149284.jpg', 'caption': 'Some type of bread that is cut in half', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149284.jpg', 'caption': 'The piece of quick bread is on the cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149284.jpg', 'caption': 'A large cake loaf sitting on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149284.jpg', 'caption': 'A loaf of sliced broccoli bread on a wooden board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149284.jpg', 'caption': 'A half loaf of zucchini bread is left for the takings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311385.jpg', 'caption': 'This Asian dish has both meat and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311385.jpg', 'caption': 'A juicy plate stir fry food with brocoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311385.jpg', 'caption': 'Mixed stir fry on a plate with yellow coloring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311385.jpg', 'caption': 'A yellow plate topped with broccoli and chicken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311385.jpg', 'caption': 'a plate with some meat and vegetable on top of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231052.jpg', 'caption': 'A platter filled with cooked food and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231052.jpg', 'caption': 'A dish of broccoli with peanut sauce, on a restaurant table.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000394533.jpg', 'caption': 'A man that is riding a skateboard up a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394533.jpg', 'caption': 'A boy doing a trick on a skateboard off of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394533.jpg', 'caption': 'Someone doing tricks on their skateboard in the air at a skate park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394533.jpg', 'caption': 'A young person performing a trick on a skateboard at a park..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394533.jpg', 'caption': 'A person on a skateboard riding on a ledge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265462.jpg', 'caption': 'A man riding a skateboard down a bunch of steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265462.jpg', 'caption': 'The young man is practicing his tricks on the skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265462.jpg', 'caption': 'Motion capture photograph of a person doing a trick on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265462.jpg', 'caption': 'A time lapse photo of a man jumping a skateboard down a set of stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265462.jpg', 'caption': 'Young men in jeans skateboarding on concrete steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097656.jpg', 'caption': 'A man riding a skateboard at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097656.jpg', 'caption': 'A person is riding a skateboard in a skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097656.jpg', 'caption': 'A skateboarder is skating around a colorfully painted arena.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097656.jpg', 'caption': 'someone is on a skateboard at a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097656.jpg', 'caption': 'A boy is on a skate board near some graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348730.jpg', 'caption': 'A man who is riding a skateboard down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348730.jpg', 'caption': 'A boy riding on a skateboard in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348730.jpg', 'caption': 'A person on a skate board riding the down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348730.jpg', 'caption': 'A boy rides a skateboard down an empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348730.jpg', 'caption': 'A boy with a skateboard is riding down a residential street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133386.jpg', 'caption': 'some people are on skateboards at a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133386.jpg', 'caption': 'A skateboard park with many skateboarders doing different stunts ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133386.jpg', 'caption': 'The young man is practicing his tricks on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133386.jpg', 'caption': 'An edited photo showing a single boy performing various skateboard tricks in a single picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133386.jpg', 'caption': 'A kid performs many tricks while at the skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479379.jpg', 'caption': 'A young man with a skateboard on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479379.jpg', 'caption': 'A smiling teenager posing in the road with his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479379.jpg', 'caption': 'A boy holding a skateboard on its end in the middle of the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479379.jpg', 'caption': 'A man standing in the street with a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479379.jpg', 'caption': 'A Man poses with his skateboard in front of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517617.jpg', 'caption': 'A plate with rice, carrots, bacon, and a small potato. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517617.jpg', 'caption': 'A plate with rice, carrots and meat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517617.jpg', 'caption': 'Rice, carrots, and meat on plate at a table setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517617.jpg', 'caption': 'A plate of food with meat, rice, and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517617.jpg', 'caption': 'A white plate topped with veggies, rice and salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339346.jpg', 'caption': 'a couple of people on skis ride on the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339346.jpg', 'caption': 'A couple of women riding skis on top of a ski covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339346.jpg', 'caption': 'two ladies holding skying poles with glasses on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339346.jpg', 'caption': 'Two women on skis looking down a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339346.jpg', 'caption': 'Two woman standing on a hill of snow with ski poles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298680.jpg', 'caption': 'A bowl with carrots and a spoon sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298680.jpg', 'caption': 'A bowl full of a certain fruit with a utensil in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298680.jpg', 'caption': 'A bowl filled with cantaloupe and a spoon on a platter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298680.jpg', 'caption': 'The clear bowl is full of pieces of cut up carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298680.jpg', 'caption': 'The food is ready to be eaten on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058225.jpg', 'caption': 'A half eaten hot dog being held in a hand at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058225.jpg', 'caption': 'A close up shot of a hot dog held by someone at a baseball game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058225.jpg', 'caption': 'a hand holding a hot dog at a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058225.jpg', 'caption': 'A half-eaten hotdog with a baseball stadium backdrop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058225.jpg', 'caption': 'Person holding hotdog at a professional baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328791.jpg', 'caption': 'a hot dog stand in a city with people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328791.jpg', 'caption': 'A group of people standing by a street food vendor at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328791.jpg', 'caption': 'A street cart vendor busy at night selling food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328791.jpg', 'caption': 'Food cart owner, under umbrella, serving people food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328791.jpg', 'caption': \"Very bright lights shine on the vender's cart.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341645.jpg', 'caption': 'A young man riding a skateboard down a street holding a 99 cent store bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341645.jpg', 'caption': 'An older man is skate boarding down the street,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341645.jpg', 'caption': 'A man in plaid shirt on skateboard in street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341645.jpg', 'caption': 'A man carrying a grocery bag rides a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341645.jpg', 'caption': 'An older man carrying a bag of items on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200058.jpg', 'caption': 'A person on a snowboard in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200058.jpg', 'caption': 'A snowboarder stands with one foot in the bindings on a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200058.jpg', 'caption': 'A woman standing next to a snow board on a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200058.jpg', 'caption': 'a person riding a snow boad on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200058.jpg', 'caption': 'A person standing on the snowboard on top of the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146979.jpg', 'caption': 'Two hot dogs covered in cheese and tomatoes in a carton.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146979.jpg', 'caption': 'Two subs with tomatoes and cheese in each.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146979.jpg', 'caption': 'Two hot dogs with chili, cheese and tomatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146979.jpg', 'caption': 'There are two sandwiches with tomatoes on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146979.jpg', 'caption': 'Two hot dogs sitting in a box covered in tomatoes and mustard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548550.jpg', 'caption': 'A bacon wrapped hotdog on a bun with onions', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548550.jpg', 'caption': 'A bacon wrapped hot dog on a bun topped with purple onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548550.jpg', 'caption': 'A bacon wrapped hotdog is sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548550.jpg', 'caption': 'A hot dog on a bun topped with onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548550.jpg', 'caption': 'A bacon wraped hotdog with onion on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028692.jpg', 'caption': 'A man flying through while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028692.jpg', 'caption': 'A young man on a skate board high in the air near some steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028692.jpg', 'caption': 'A boy in glasses and a cap skateboarding down some stairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028692.jpg', 'caption': 'A man doing a jumping trick over a concrete floor and steps in the outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028692.jpg', 'caption': 'a man on skateboard jumping over some stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054527.jpg', 'caption': 'A man with a skate board is posing in an elevator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054527.jpg', 'caption': 'A man reacts as he holds a skate board above his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054527.jpg', 'caption': 'A young person is holding a skateboard over their head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054527.jpg', 'caption': 'A man in a red shirt is holding a skate board up over his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054527.jpg', 'caption': 'Man with gauges holding board over his head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469329.jpg', 'caption': 'A grilled hot dot on a bun sitting on a plate next to corn chips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469329.jpg', 'caption': 'A hotdog on a bun with a few chips', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469329.jpg', 'caption': 'A hotdog is on a plate with some Doritos.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469329.jpg', 'caption': 'an image of a plate with hot dog and chips', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469329.jpg', 'caption': 'A large hotdog is next to chips on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572811.jpg', 'caption': 'A woman that is sitting down holding a hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572811.jpg', 'caption': 'A young woman holding a sandwich at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572811.jpg', 'caption': 'there is a woman holding food at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572811.jpg', 'caption': 'A woman is eatting a hotdog at a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572811.jpg', 'caption': 'The young woman is seated at the table for lunch, holding a hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085674.jpg', 'caption': 'A woman preparing food at a cart next to the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085674.jpg', 'caption': 'a person behind a stand with meats and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085674.jpg', 'caption': 'A food stand in an open market has trays of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085674.jpg', 'caption': 'A variety of street food available for sale. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085674.jpg', 'caption': 'A woman at a vending booth with various food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187475.jpg', 'caption': 'A person holding a hot dog with lots of fixings on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187475.jpg', 'caption': 'THIS IS A PICTURE OF A LOADED HOT DOG', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187475.jpg', 'caption': 'a hand holding a hot dog wrapped in white paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187475.jpg', 'caption': 'A person holding a hot dog on a bun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187475.jpg', 'caption': 'Somebody took a bite out of a hot dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399510.jpg', 'caption': 'A person that is holding some food in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399510.jpg', 'caption': 'A hand that is holding a hotdog covered in condiments. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399510.jpg', 'caption': 'Someone holding up a hot dog sandwich with all the fixings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399510.jpg', 'caption': 'Person holding up a hot dog with toppings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399510.jpg', 'caption': 'That sausage sandwich has peppers and onion on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133327.jpg', 'caption': 'A young man riding a skateboard down a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133327.jpg', 'caption': 'a man is doing a trick on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133327.jpg', 'caption': 'A youth attempting skateboard tricks in an industrial lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133327.jpg', 'caption': 'He has found an appropriate place to practice his skateboarding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133327.jpg', 'caption': 'A child is on a skateboard in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343753.jpg', 'caption': 'A group of people walking under a parking lot with skateboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343753.jpg', 'caption': 'Many people skateboard on their skateboards underneath a bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343753.jpg', 'caption': 'Boys skate boarding under a via-dock bridge that has colorful graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343753.jpg', 'caption': 'several kids skate boarding under a bridge painted with graffiti ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343753.jpg', 'caption': 'a ma is skateboarding at a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544216.jpg', 'caption': 'A sandwich that has a sandwich and chips on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544216.jpg', 'caption': 'A large club sandwich with bacon, lettuce and tomato and chips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544216.jpg', 'caption': 'a plate with a sandwich and chips on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544216.jpg', 'caption': 'A BLT sandwich on a plate along with some potato chips and a pickle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544216.jpg', 'caption': 'A plate of potato chips and sandwich, next to a glass of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211707.jpg', 'caption': 'A person holds a seven eleven hot dog into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211707.jpg', 'caption': 'A HOT DOG TOO LONG FOR ITS BUN', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211707.jpg', 'caption': 'a man that is holding a large hot dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211707.jpg', 'caption': 'The person is holding a hot dog wrapped in a napkin. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211707.jpg', 'caption': 'A man holding a 711 hot dog in their left hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497238.jpg', 'caption': 'A man riding a skateboard on a stone bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497238.jpg', 'caption': 'A black-and-white photo of a man doing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497238.jpg', 'caption': 'A PERSON IS SKATE BOARDING ON THE SIDE WALK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497238.jpg', 'caption': 'A little boy skating at the public park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497238.jpg', 'caption': 'People walking past a boy skateboarding in a covered plaza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489550.jpg', 'caption': 'Set of three plates sitting on a small metal display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489550.jpg', 'caption': 'A table with a filled three tier dessert plate, cups, teapots, and napkins.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489550.jpg', 'caption': 'A small table set for tea and biscuits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489550.jpg', 'caption': 'Plates of food and drinks are sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489550.jpg', 'caption': 'A small table set with pastries and tea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184358.jpg', 'caption': 'Someone wearing a pink snow suit stands on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184358.jpg', 'caption': 'A person getting on a snowboard while another person carries their snowboard up the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184358.jpg', 'caption': ' a person standing on a ski board on a snowy surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184358.jpg', 'caption': 'A man standing on top of a snowboard on a snow surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184358.jpg', 'caption': 'Person in pink snow gear on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423619.jpg', 'caption': 'A skateboarder is riding along a blue pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423619.jpg', 'caption': 'A snow boarder grinds a pipe protruding from the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423619.jpg', 'caption': 'A man in a blue helmet standing on a ski board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423619.jpg', 'caption': 'a snowboarder with green pants is riding on a pipe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423619.jpg', 'caption': 'a man attemping a snowboard trick down a pipe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183843.jpg', 'caption': 'A man riding a snowboard across snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183843.jpg', 'caption': 'A man riding a snowboard down a snow slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183843.jpg', 'caption': 'A man going snowboarding in the snow at night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183843.jpg', 'caption': 'A guy snowboarding on a small patch of snow at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183843.jpg', 'caption': 'A man standing on a snowboard on a small patch of snow at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056430.jpg', 'caption': 'A knife is sitting on a plate of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056430.jpg', 'caption': 'A giant, multi-layered sandwich cut up and partially eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056430.jpg', 'caption': 'Two knifes sitting on a plate with food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056430.jpg', 'caption': 'A sharp knife sits next to a pita sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056430.jpg', 'caption': 'A sandwich sitting on top of a pan next to a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056430.jpg', 'caption': 'a big sandwich laying on a big plate with some knives ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114684.jpg', 'caption': 'A girl sitting on a stone wall and eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114684.jpg', 'caption': 'A young woman is posing for a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114684.jpg', 'caption': 'A woman holding food in a napkin and posing for a bite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114684.jpg', 'caption': 'A woman eating food and posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114684.jpg', 'caption': 'Woman eating something while sitting on a stone tablet outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082157.jpg', 'caption': 'a man takes a bite of a doughnut ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082157.jpg', 'caption': 'A long haired man is eating a pink doughnut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082157.jpg', 'caption': 'The man is holding a pink iced doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082157.jpg', 'caption': 'a man holding a partially eaten donut with pink frosting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082157.jpg', 'caption': 'A man poses while holding a pink doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512455.jpg', 'caption': 'a young snowboarder getting air during a jump ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512455.jpg', 'caption': 'The snowboarder wearing a helmet is jumping over a hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512455.jpg', 'caption': 'A person performs a jump on a snowboard on a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512455.jpg', 'caption': 'A snowboarder soars several feet above a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512455.jpg', 'caption': 'A snowboarder is performing a jump on a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502414.jpg', 'caption': 'Doughnuts are going down the assembly line in the factory.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502414.jpg', 'caption': 'A donut making machine is processing some donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502414.jpg', 'caption': 'A donut factory with donuts on a conveyor belt ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502414.jpg', 'caption': 'A fryer that moves donuts down the fryer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502414.jpg', 'caption': 'An assembly line with doughnuts moving through an automated fryer on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296236.jpg', 'caption': 'a woman standing near glass looking at the preparation of fresh donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296236.jpg', 'caption': 'A person that is looking at some donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296236.jpg', 'caption': 'a woman with her hands on the glass looking at donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296236.jpg', 'caption': 'a person leaning on a glass looking at doughnuts being made', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296236.jpg', 'caption': 'A woman looks with anticipation at a rack of donuts going through the glazer at a donut making facility. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412604.jpg', 'caption': 'A man holding a half eaten chocolate donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412604.jpg', 'caption': 'A man is eating a donut while using the computer in his bathrobe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412604.jpg', 'caption': 'A man in a robe eating a chocolate donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412604.jpg', 'caption': 'A hairy man eating a chocolate doughnut in his house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412604.jpg', 'caption': 'A man is holding a donut with a bite taken out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052803.jpg', 'caption': 'A man skillfully shows off on his snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052803.jpg', 'caption': 'young person on a surfboard in the dark', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052803.jpg', 'caption': 'A man with a helmet and gloves on standing on a surfboard in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052803.jpg', 'caption': 'a boy snow board at night by himself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052803.jpg', 'caption': 'A young person rides a snowboard at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182167.jpg', 'caption': 'A young man snow boarding on a fence rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182167.jpg', 'caption': 'A snowboarder jumping on a wooden railing in the middle of some snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182167.jpg', 'caption': 'A snowboarder is trying to do a trick. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182167.jpg', 'caption': 'A man riding a snowboard on top of a wooden rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182167.jpg', 'caption': 'There is a man jumping on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232625.jpg', 'caption': 'A guy on a snow board in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232625.jpg', 'caption': 'Snow boarder riding during the night over a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232625.jpg', 'caption': 'A man is doing a grind on a snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232625.jpg', 'caption': 'A young man riding a snowboard on top of a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232625.jpg', 'caption': 'Snowboarder riding on railing at night during winter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036032.jpg', 'caption': 'a person that is snowboarding down a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036032.jpg', 'caption': 'a snowboarder jumps off of a hill instead of just sliding down it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036032.jpg', 'caption': 'Person on a snowboard in mid air next to snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036032.jpg', 'caption': 'A snowboarder jumps a steep and snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036032.jpg', 'caption': 'A man performs a leap on his snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526654.jpg', 'caption': 'The man is trying to eat three hot dogs are the same time. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526654.jpg', 'caption': 'black and white image of a man holding many hot dogs in buns and eating them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526654.jpg', 'caption': 'A person biting into a hot dog while holding several other hot dogs in buns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526654.jpg', 'caption': 'A man eating hot dogs two at a time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526654.jpg', 'caption': 'A man eating two hot dogs at the same time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323067.jpg', 'caption': 'a man laying on a pile of snow next to a snowboard inside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323067.jpg', 'caption': 'A store display shows a snowboarder lying in fake snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323067.jpg', 'caption': 'A display of a snowboarder in wipeout fills an area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323067.jpg', 'caption': 'A display of a snowboarder that fas fallen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323067.jpg', 'caption': 'Someone dressed in a snow suit on the groud .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303342.jpg', 'caption': 'A man riding a snowboard on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303342.jpg', 'caption': 'guy with white jacket against the white snow on his snow board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303342.jpg', 'caption': 'A snowboarder is going down a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303342.jpg', 'caption': 'A man is on his ski board in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303342.jpg', 'caption': 'A man who is performing a trick on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523816.jpg', 'caption': 'This skate boarder is leaning back on his board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523816.jpg', 'caption': 'Smiling person on a snow board tilting to the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523816.jpg', 'caption': 'S snowboarder is leaning on her snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523816.jpg', 'caption': 'A women posing for the camera on a snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523816.jpg', 'caption': 'A guy wearing snow gear smiling while snowboarding. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460781.jpg', 'caption': 'A young man ridding a snowboard sliding down a railing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460781.jpg', 'caption': 'A man riding on a snowboard as he performs a stunt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460781.jpg', 'caption': 'A man on a snowboard performing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460781.jpg', 'caption': 'A guy rides a snowboard on a long railing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460781.jpg', 'caption': 'a boy is doing a trick on a snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414670.jpg', 'caption': 'A guy on a snowboard doing tricks on a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414670.jpg', 'caption': 'A young snow boarder riding up a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414670.jpg', 'caption': 'A snowboarder doing tricks on a railing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414670.jpg', 'caption': 'A man on a snow board doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414670.jpg', 'caption': 'A snowboarder is doing tricks on a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527718.jpg', 'caption': 'A person on a snowboard is sitting in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527718.jpg', 'caption': 'A snowboarder sits on the snow near a net.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527718.jpg', 'caption': 'A man sits in the snow while breaking from snowboarding', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527718.jpg', 'caption': 'Snowboarder at base of the mountain sitting in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527718.jpg', 'caption': 'A snowboarder sitting down with his snowboard on his feet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100990.jpg', 'caption': 'A group of people standing next to a portable golf course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100990.jpg', 'caption': 'people standing around a mini gold course by a donut shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100990.jpg', 'caption': 'An older man in blue shirt looking at an object', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100990.jpg', 'caption': 'A little golf game is next to a donut shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100990.jpg', 'caption': 'a person signing autographs outside of a donuts shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367706.jpg', 'caption': 'Two men and a woman standing in a parking lot by a doughnut shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367706.jpg', 'caption': \"Three people are standing outside of Randy's Donuts.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367706.jpg', 'caption': 'Three people standing in a parking lot outside of a donut shop that has a large donut on the top of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367706.jpg', 'caption': \"Three people are standing outside of Randy's Donuts which is a huge sign of a donut.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367706.jpg', 'caption': 'Three people standing outside in front of a doughnut shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081782.jpg', 'caption': 'A white plate topped with donuts sitting on a stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081782.jpg', 'caption': 'The donuts on the plate have been half eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081782.jpg', 'caption': 'A plate with fried pastries sitting on a stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081782.jpg', 'caption': 'a close up of a plate of doughnuts on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081782.jpg', 'caption': 'Some donut are on a round white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428712.jpg', 'caption': 'Two pieces of bread with a leafy green on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428712.jpg', 'caption': 'This finger food is topped with a green leaf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428712.jpg', 'caption': 'There is a little green garnish on top of the sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428712.jpg', 'caption': 'a piece of food with a green leaf on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428712.jpg', 'caption': 'A rice cake is topped with green garnish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398604.jpg', 'caption': 'a close up of a hot dog next to a drink on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398604.jpg', 'caption': 'A Philly cheese steak with chips and a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398604.jpg', 'caption': 'an image of a table setting with a hot dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398604.jpg', 'caption': 'A table holding a basket with a hotdog, chips and a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398604.jpg', 'caption': 'A sandwich with mustard and potato chips on wax paper and a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224358.jpg', 'caption': 'A female professional tennis player engaged in competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224358.jpg', 'caption': 'A woman tennis player prepares to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224358.jpg', 'caption': 'A tennis player on a blue court swinging at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224358.jpg', 'caption': 'A female tennis player on the court for a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224358.jpg', 'caption': 'A woman prepares to make a backhand shot in a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162675.jpg', 'caption': 'Sugar donuts sitting in a white paper bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162675.jpg', 'caption': 'Two sugary donuts are in the bottom of a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162675.jpg', 'caption': 'Two glazed donuts sitting in a paper bag. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162675.jpg', 'caption': 'Two glazed doughnuts in a see through pastry bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162675.jpg', 'caption': 'Two glazed donuts sitting in a white bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056684.jpg', 'caption': 'a brown donut on some white paper on a red counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056684.jpg', 'caption': 'A donut sitting on top of a piece of tissue paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056684.jpg', 'caption': 'A glazed donut sits on a wrapper on a table. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056684.jpg', 'caption': 'A donut with icing sitting on tissue paper. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056684.jpg', 'caption': 'A donut on top of a paper sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511690.jpg', 'caption': 'A leveled platter filled with donuts with a plastic couple on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511690.jpg', 'caption': 'Two dolls standing on top of a pile of cronuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511690.jpg', 'caption': 'a close up of a many pastries on display next to fake small people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511690.jpg', 'caption': 'A happy wedding topping surrounded by sweet doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511690.jpg', 'caption': 'A bobble head bride and groom set are in the middle of the donut stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456465.jpg', 'caption': 'A man shows off a bags of treats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456465.jpg', 'caption': 'A man standing and holding his hand out with food in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456465.jpg', 'caption': 'A man holding a pastry in his hand under an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456465.jpg', 'caption': 'A man is showing off his dessert on both of his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456465.jpg', 'caption': 'A man standing holding food in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135029.jpg', 'caption': 'A table with a plates of food and drink arranged on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135029.jpg', 'caption': 'a close up of two plates of food with a drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135029.jpg', 'caption': 'Two sets of pastry sitting on white plates next to a coffee cup. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135029.jpg', 'caption': 'a glass of orange juice places next to a cup of coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135029.jpg', 'caption': 'Table set for breakfast with a breakfast sandwich, danish, juice and a coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329475.jpg', 'caption': 'A counter filled with fried donuts line up in rows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329475.jpg', 'caption': 'Rows of doughnuts are on a counter as several are on wax paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329475.jpg', 'caption': 'a bunch of donuts on a tray and more coming out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329475.jpg', 'caption': 'The donuts are being freshly made in the shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329475.jpg', 'caption': 'Doughnuts sitting on a table in a bakery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546191.jpg', 'caption': 'there is a surfer flying a kite at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546191.jpg', 'caption': 'A parasailer surfs the coast of a windy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546191.jpg', 'caption': 'Person standing at the water flying a huge kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546191.jpg', 'caption': 'A person holding on to a para-sail standing in the surf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546191.jpg', 'caption': 'The person is on the beach flying a kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131276.jpg', 'caption': 'A bakery with customer at the counter and various types of donuts in the display case in front of the customers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131276.jpg', 'caption': 'People are standing behind the bakery counter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131276.jpg', 'caption': 'Ladies in a doughnut shop looking for a treat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131276.jpg', 'caption': 'Women standing in front of bakery case with doughnuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131276.jpg', 'caption': 'A lot of donuts that are in a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401132.jpg', 'caption': 'A woman and girl watching donuts being made through a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401132.jpg', 'caption': 'a person smiling and standing before a window watching a rotating belt of donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401132.jpg', 'caption': 'A group of people watching donuts moving down an assembly line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401132.jpg', 'caption': 'People are watching doughnuts get made in a doughnut shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401132.jpg', 'caption': 'many people behind a glass watching doughnuts being made', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353411.jpg', 'caption': 'A dinner table shot of a person holding a sandwhich accompanied by fries and beverages ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353411.jpg', 'caption': ' a person eating a burger and fries on his plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353411.jpg', 'caption': 'Someone holding a burger with a jar of beer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353411.jpg', 'caption': 'A hand is holding a half eaten sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353411.jpg', 'caption': 'A half eaten burger with a plate of fries next to mason jars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334332.jpg', 'caption': 'A man holding a gigantic donut in a napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334332.jpg', 'caption': 'Man in sunglasses holds up large sugar doughnut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334332.jpg', 'caption': 'A man with a giant glazed donut in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334332.jpg', 'caption': 'there is a man holding up a very large donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334332.jpg', 'caption': 'a man is holding a large soft pretzel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210404.jpg', 'caption': 'A cake sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210404.jpg', 'caption': 'A cake designed to look like a bear on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210404.jpg', 'caption': 'A cake is made to look like a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210404.jpg', 'caption': 'A cake decorated to look like a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210404.jpg', 'caption': 'A teddy bear that looks like it was made out of chocolate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061647.jpg', 'caption': 'a teddy bear shaped cake resting on a cutting board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061647.jpg', 'caption': 'The cake is shaped like a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061647.jpg', 'caption': 'A teddy bear cake with a candle and sparklers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061647.jpg', 'caption': 'A bear shaped cake with lit candles inserted.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061647.jpg', 'caption': 'A cake shaped like a bear has a sparkler and candle on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066769.jpg', 'caption': 'A lady is holding a pretzel with a cheese backing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066769.jpg', 'caption': 'Person holding a pretzel with cheese and a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066769.jpg', 'caption': 'A soft pretzel with cheese has a bite taken out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066769.jpg', 'caption': 'A person holding a sandwich made out of pretzels, cheese, and deli sliced meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066769.jpg', 'caption': 'A person holds a pretzel with cheese on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489159.jpg', 'caption': 'A large sandwich on a plate, with a small bowl of potato salad. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489159.jpg', 'caption': 'A pastrami sandwich with potato salad on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489159.jpg', 'caption': 'A prepared sandwich, with a side of potato salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489159.jpg', 'caption': 'A plate with a roast beef sandwich with coleslaw and a side plate of potato salad. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489159.jpg', 'caption': 'A plate that has a sandwich and some potato salad on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063906.jpg', 'caption': 'Two people walking towards a beach holding surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063906.jpg', 'caption': 'Two surfers make their way to the water carrying surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063906.jpg', 'caption': 'Four people walkint down to a beach with two of them carrying surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063906.jpg', 'caption': 'A group of people with surfboards walk on the path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063906.jpg', 'caption': 'People carrying blue surf boards down a bath to the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332968.jpg', 'caption': 'A display case filled with lots of different cakes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332968.jpg', 'caption': 'Many different colorful decorated cakes on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332968.jpg', 'caption': 'A bunch of very pretty nicely decorated cakes on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332968.jpg', 'caption': 'A view of a bunch of birthday cakes through the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332968.jpg', 'caption': 'A store front window shows a variety of decorative cakes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487295.jpg', 'caption': 'a burger and a pickle sit on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487295.jpg', 'caption': 'A burger is stacked with tomatoes, onion, lettuce and a pickle on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487295.jpg', 'caption': 'A white plate topped with a hamburger and a pickle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487295.jpg', 'caption': 'A large sandwich has cheese, tomato and onions while a pickle sits next to it on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487295.jpg', 'caption': 'A plate holding a hamburger topped with tomatoes and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210846.jpg', 'caption': 'A person dipping a sandwich into a bowl of soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210846.jpg', 'caption': 'A hand is dipping pizza into marinara sauce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210846.jpg', 'caption': 'Dipping a piece of tomato grilled cheese into tomato soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210846.jpg', 'caption': 'A person dipping a toasted sandwich in side a bowl of tomato soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210846.jpg', 'caption': 'His spoon was in the bowl but he dipped his pizza in the soup instead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211326.jpg', 'caption': 'A plate topped with two grilled sandwiches and a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211326.jpg', 'caption': 'Two toasts in a plate with a knife and a fork.A pipe for smoking on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211326.jpg', 'caption': 'A pipe and a plate of food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211326.jpg', 'caption': 'On a desk sits a plate with sandwiches, a book and various items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211326.jpg', 'caption': 'a close up of a plate with food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173208.jpg', 'caption': 'A plate of food has some sesame seed bagels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173208.jpg', 'caption': 'A plate of two bagels and a stir fry of vegetables ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173208.jpg', 'caption': 'A plate is filled with a heaping mound of grilled fixings for two toasted buns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173208.jpg', 'caption': 'Meat and vegetable dish with two hamburger buns on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173208.jpg', 'caption': 'A plate of food with two breads on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144486.jpg', 'caption': 'A fried and breaded sandwich is topped with preserves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144486.jpg', 'caption': 'A leftovers served sandwich on a blue plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144486.jpg', 'caption': 'That does not look like something I would want to eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144486.jpg', 'caption': 'Two slices of toast with toppings on a blue plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144486.jpg', 'caption': 'A sandwich sits on a small blue plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228261.jpg', 'caption': 'A very long table full of different kinds of food, which people are lining up to eat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228261.jpg', 'caption': 'A group of people eating at a buffet type setup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228261.jpg', 'caption': 'A long buffet table of food with people standing around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228261.jpg', 'caption': 'A group of ladies enjoy a grand buffet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228261.jpg', 'caption': 'People are taking plates of food from a very long table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233840.jpg', 'caption': 'Takeout food lies nestled in white paper with serrated edges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233840.jpg', 'caption': 'A colorful filled pastry in a white napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233840.jpg', 'caption': 'A hot dog bun stuffed with a number of toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233840.jpg', 'caption': 'A hot dog with lots of toppings in a basket with a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233840.jpg', 'caption': 'A hot dog bun with chili, coleslaw in a piece of wax paper with serrated edges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270672.jpg', 'caption': 'A man bits in to food as a crowd of people mills around behind him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270672.jpg', 'caption': 'Man biting into burger with a large festival behind him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270672.jpg', 'caption': 'A man earing food from a wrapper while standing next to people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270672.jpg', 'caption': 'A man eating at a place where several people are gathered outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270672.jpg', 'caption': 'A man taking a bite of food at a fair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512416.jpg', 'caption': 'A MAN WITH A BIRTHDAY CUPCAKE BLOWING OUT CANDLES', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512416.jpg', 'caption': 'A man blowing out three candles on a cupcake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512416.jpg', 'caption': 'a man blowing out some candles on a cupcake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512416.jpg', 'caption': 'A man blowing out candles on a cupcake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512416.jpg', 'caption': 'The man is holding a cupcake with 3 candles in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371652.jpg', 'caption': 'A birthday cake with candles in it sitting on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371652.jpg', 'caption': 'A cake sitting on top of a plate in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371652.jpg', 'caption': 'A homemade cake with white frosting and neon candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371652.jpg', 'caption': 'A plate with a very big pile of cake with candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371652.jpg', 'caption': 'A cake on a plate on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313246.jpg', 'caption': 'A young man holding a cup cake with lit candles sticking out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313246.jpg', 'caption': 'a guy holding a cupcake with 2 lit up candles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313246.jpg', 'caption': 'A cupcake with two birthday candles burning on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313246.jpg', 'caption': 'A man smiling holding a cupcake with two candles lit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313246.jpg', 'caption': 'an image of a man in the kitchen holding a cupcake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275374.jpg', 'caption': 'People are sitting at a table drinking a beverage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275374.jpg', 'caption': 'Two people drink from cups underneath a bunk bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275374.jpg', 'caption': 'A couple of people below bunk bed looking at camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275374.jpg', 'caption': 'two males a blue plate and drinks and a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275374.jpg', 'caption': 'Two young men in the lower bunk of a train car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048668.jpg', 'caption': 'Man laying on bed with shirt open looking into device for picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048668.jpg', 'caption': 'A may laying in on a bed with his right breasteses hanging out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048668.jpg', 'caption': 'Man laying down on a bed with his shirt open. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048668.jpg', 'caption': 'A man with his shirt open lying in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048668.jpg', 'caption': 'Man lying down on bed with shirt open in bedroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044989.jpg', 'caption': 'A white bed topped with a book surrounded by large windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044989.jpg', 'caption': 'A book laying on a bed with wood posts and white fabric tied to the posts, with a view of the woods outside the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044989.jpg', 'caption': 'a book sitting on a bed with nature in back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044989.jpg', 'caption': 'a book on a bed over looking some woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044989.jpg', 'caption': 'A white canopy hangs over a white bedspread with a book overlooking a woodland.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103705.jpg', 'caption': 'A man is laying in a bed next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103705.jpg', 'caption': 'There is a person sleeping in a small cabin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103705.jpg', 'caption': 'A room with a man laying in a bed and another bed across from him with a window in the middle of the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103705.jpg', 'caption': 'A man relaxes on a bed in a small room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103705.jpg', 'caption': 'A man laying down on one of two beds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038701.jpg', 'caption': 'A large golden cake is on a cooling rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038701.jpg', 'caption': 'A close shot of a cake on top of a cooling rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038701.jpg', 'caption': 'A cake on a plate on a counter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038701.jpg', 'caption': 'A cake on a cooling rack with oven mitts to the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038701.jpg', 'caption': 'A piece of food that is on top of a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391978.jpg', 'caption': 'A TV sitting in a room at the end of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391978.jpg', 'caption': 'A television in a bedroom turned on in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391978.jpg', 'caption': 'A TV sitting at the end of a bed, with drapes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391978.jpg', 'caption': 'The television is in front of the lavish bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391978.jpg', 'caption': 'a television is at the end of a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052869.jpg', 'caption': \"A tv screen with sponge bob on it's display.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052869.jpg', 'caption': 'A cartoon is playing on a television at the foot of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052869.jpg', 'caption': 'a bed with a tv an a cable box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052869.jpg', 'caption': 'A television in a bedroom showing cartoons on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052869.jpg', 'caption': 'A dark room with a tv playing spongebob squarepants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308883.jpg', 'caption': 'A laptop computer sitting on a bed by someones feet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308883.jpg', 'caption': 'A lap top is on a bed near a flower and some pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308883.jpg', 'caption': 'A blurry picture of two people watching a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308883.jpg', 'caption': 'A view of two people sitting and watching something on a laptop screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308883.jpg', 'caption': 'A person in bed watching a video on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047940.jpg', 'caption': 'A person sitting indian style on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047940.jpg', 'caption': 'Someone is sitting Indian style in front of some books and a toy. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047940.jpg', 'caption': 'A person with their legs crossed sitting in front of a stuffed animal rabbit and several books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047940.jpg', 'caption': 'A person in jeans sits cross legged with a stuffed bunny and books in front of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047940.jpg', 'caption': 'The stuffed animal is reading about other countries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508514.jpg', 'caption': 'A man sleeps with his headphones in and a light on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508514.jpg', 'caption': 'A man sleeps on a bed with headphones in his ears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508514.jpg', 'caption': 'A man laying on a bed listening to his headphones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508514.jpg', 'caption': 'A man laying in bed while listening to ear buds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508514.jpg', 'caption': 'A guy sleeping in bed with ear buds in his ears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189163.jpg', 'caption': 'An individual is holding a book and reading it in its bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189163.jpg', 'caption': 'A person laying in bed holding a book in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189163.jpg', 'caption': 'A person laying in bed holding an open book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189163.jpg', 'caption': 'A person reading a book while lying in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189163.jpg', 'caption': 'Person laying down reading a book at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533462.jpg', 'caption': 'A person is sleeping on one side of the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533462.jpg', 'caption': 'A small bedroom has a dresser, unmade bed and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533462.jpg', 'caption': 'The tall dresser is between a bed and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533462.jpg', 'caption': 'A brown bed frame with a bed on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533462.jpg', 'caption': 'a bed room with a bed a drawer and a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245094.jpg', 'caption': 'A California king sized bed sits under a white canopy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245094.jpg', 'caption': 'Large bed with canopy and white drapes in room with lots of windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245094.jpg', 'caption': 'A bed with white covers and a white canopy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245094.jpg', 'caption': 'a bed room with a canopy with large windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245094.jpg', 'caption': 'A nearly made bed with a cover and shut windows. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476864.jpg', 'caption': 'A surfer in a wetsuit riding a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476864.jpg', 'caption': 'A surfer rides a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476864.jpg', 'caption': 'A man on a surfboard riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476864.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476864.jpg', 'caption': 'A man in a wet suit riding a high wave on his surfboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265915.jpg', 'caption': 'A couple of pizzas baking inside of an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265915.jpg', 'caption': 'An open oven containing two thick crust pizzas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265915.jpg', 'caption': 'A pizza on the top rack of an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265915.jpg', 'caption': 'An over with the door open and two pizzas inside, one on a pizza stone and one on a wire rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265915.jpg', 'caption': 'a couple of pizza in a overn with the door open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184139.jpg', 'caption': 'A bed with a blanket and pillows on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184139.jpg', 'caption': 'an image of a bedroom setting with a bed and bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184139.jpg', 'caption': 'A bedroom with a bed, desk, chair and lamps. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184139.jpg', 'caption': 'Bedroom with a large bed and a laptop on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184139.jpg', 'caption': 'a bed room with a neatly made bed and a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113701.jpg', 'caption': 'The book was laying on the unmade bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113701.jpg', 'caption': 'A UNRAVELED BED WITH A BLUE AND WHITE BED SPREAD', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113701.jpg', 'caption': 'Bedroom scene with stuff on the bed and clothes piled on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113701.jpg', 'caption': 'a blue bed is in a room with two lamps', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113701.jpg', 'caption': 'A bed with disheveled pillows and blankets in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434634.jpg', 'caption': 'A pizza topped with cheese and pepperoni with veggies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434634.jpg', 'caption': 'A pepperoni pizza is shown is close up view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434634.jpg', 'caption': \"A pizza with pepporoni's, peppers, cheese, sauce and herbs.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434634.jpg', 'caption': 'Closeup of a cooked pepperoni, cheese and green pepper pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434634.jpg', 'caption': 'Hot and spicy pork sausage jalapeno pepper pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497466.jpg', 'caption': 'A man holds a surfboard as others stand in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497466.jpg', 'caption': 'A man walking along a seawall carrying a light red surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497466.jpg', 'caption': 'A man standing up and holding a surfboard in his arms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497466.jpg', 'caption': 'A man wearing a wet suit and carrying a pink surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497466.jpg', 'caption': 'A man carrying a surfboard near the ocean ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419860.jpg', 'caption': 'An uncut pizza sits on a serving plate', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000299946.jpg', 'caption': 'A picture of a person cooking some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299946.jpg', 'caption': 'a man using a hand blender in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065969.jpg', 'caption': 'A glass and vase sit on a table overlooking the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065969.jpg', 'caption': 'a glass of beer sitting on a table next to a vase ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065969.jpg', 'caption': 'Flowers inside a glass vase beside a beverage on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065969.jpg', 'caption': 'A glass of beer is sitting next to a vase full of flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065969.jpg', 'caption': 'a table that has a vase with a flower in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492886.jpg', 'caption': 'A knitted stuffed animal face down on a magazine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492886.jpg', 'caption': 'a stuffed animal lying on the open page of a magazine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492886.jpg', 'caption': 'a little teddy bear lying on a magazine ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492886.jpg', 'caption': 'A pink knitted bear laying on an open book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492886.jpg', 'caption': 'A knitted fabric article laying on top of a magazine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414857.jpg', 'caption': 'A man who is using a hair dryer to dry his hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414857.jpg', 'caption': 'A shirtless ginger blow-dries his hair in the bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414857.jpg', 'caption': 'a man is blow drying his hair in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414857.jpg', 'caption': 'This young man is blowing his hair dry', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414857.jpg', 'caption': 'A man dries his hair in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360182.jpg', 'caption': 'The small boy is holding a hair brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360182.jpg', 'caption': 'a kid holding a comb standing in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360182.jpg', 'caption': 'A young boy holding a brush standing on top of a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360182.jpg', 'caption': 'A young boy playing with a black and red hairbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360182.jpg', 'caption': 'barefoot little boy holding a hairbrush in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164899.jpg', 'caption': 'A woman sitting at the end of a table with a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164899.jpg', 'caption': 'The two plates of sandwiches are on a table in a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164899.jpg', 'caption': 'Close up of a plate holding a fruit salad and a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164899.jpg', 'caption': 'A plate of food with a sandwich and fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164899.jpg', 'caption': 'A plate of food is pictured on a table, with another person sitting opposite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459999.jpg', 'caption': 'A large brick building with a clock at the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459999.jpg', 'caption': 'A large building with a clock tower on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459999.jpg', 'caption': 'A large clock tower towering over a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459999.jpg', 'caption': 'A photograph of a ancient building with a clock on its tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459999.jpg', 'caption': 'A slim tall building is equipped with a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243189.jpg', 'caption': 'A large clock on top of the face of a building with statue adorned on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243189.jpg', 'caption': 'A picture of the entrance at the Grand Central Station Terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243189.jpg', 'caption': 'A statue sits above a clock on a train station entrance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243189.jpg', 'caption': 'The art figures and clock on top of the Grand Central Terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243189.jpg', 'caption': 'A shot of the top of the entrance to Grand Central Station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200018.jpg', 'caption': 'A picture of a teddy bear on a stone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200018.jpg', 'caption': 'A mile marker fashioned like a headstone has a teddy bear perched upon it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200018.jpg', 'caption': 'A stuffed teddy bear sitting on top of a stone pillar. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200018.jpg', 'caption': 'a teddy hear sitting on top of a sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200018.jpg', 'caption': 'A tombstone with a teddy bear on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083510.jpg', 'caption': 'A woman with her head lowered cuddling a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083510.jpg', 'caption': 'A man in red shirt holding a teddy bear next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083510.jpg', 'caption': 'Emotional person hugging a stuffed bear while sitting in a plain room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083510.jpg', 'caption': 'A man looking downward holding a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083510.jpg', 'caption': 'An adult man hugs a stuffed teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076329.jpg', 'caption': 'A clock with the word \"Frisco\" written on top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076329.jpg', 'caption': 'A pole with a clock on top on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076329.jpg', 'caption': 'A Frisco clock that currently reads 2:25. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076329.jpg', 'caption': 'A large face clock on a post on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076329.jpg', 'caption': 'A clock on a street post with a name above it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368505.jpg', 'caption': 'A tall white clock tower inside of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368505.jpg', 'caption': 'Steeple and clock of on the face of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368505.jpg', 'caption': 'A black and white photo of a building with a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368505.jpg', 'caption': 'A decorated building with a clock within a dome near the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368505.jpg', 'caption': 'Large marble looking building with a steeple top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574227.jpg', 'caption': 'An old brick building with a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574227.jpg', 'caption': 'An old church with a clock tower is pictured.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574227.jpg', 'caption': 'A stone church with a bell tower during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574227.jpg', 'caption': 'A building made of brown stone with a clock tower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574227.jpg', 'caption': 'The corner of a church made of stone with a clocktower and a black gate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008498.jpg', 'caption': 'A clock tower is in the middle of some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008498.jpg', 'caption': 'A tall clock in the middle of an apartment complex', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008498.jpg', 'caption': 'A clock tower sitting in a field with green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008498.jpg', 'caption': 'Clock tower sitting in an open park area in front of a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008498.jpg', 'caption': 'A clock tower in the middle of a small gated area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478282.jpg', 'caption': 'A vase of floral decorations sits in front of a tin and a picture on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478282.jpg', 'caption': 'A very unique looking flower vase with fake flowers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478282.jpg', 'caption': 'a colorful vase with colorful plants inside of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478282.jpg', 'caption': 'The vase holds a flower arrangement in front of a picture on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478282.jpg', 'caption': 'A set of werid flowers in a vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140167.jpg', 'caption': 'A colorful vase sitting on top of a table next to a picture on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140167.jpg', 'caption': 'A flower arrangement matches a colorful vase placed on a side table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140167.jpg', 'caption': 'oriental setting with a orange case and red candle on a stand ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140167.jpg', 'caption': 'A multi colored vase on a table with dried flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140167.jpg', 'caption': 'Decorative objects on a counter in front of a framed picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128568.jpg', 'caption': 'A floral arrangement with flowering twigs in an orange vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128568.jpg', 'caption': 'a large orange vase sitting on an end table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128568.jpg', 'caption': 'A vase has flowers and a candle sitting next to it on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128568.jpg', 'caption': 'A table featuring an ornamental vase with flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128568.jpg', 'caption': 'a large vase on a table with flowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290477.jpg', 'caption': 'A wooden alter displaying a potted plant and some candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290477.jpg', 'caption': 'A beautiful houseplant sitting on a table on a purple cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290477.jpg', 'caption': 'An altar with purple cloth, vase and two candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290477.jpg', 'caption': 'a vase with a pretty green plant and two candles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290477.jpg', 'caption': 'The large plant is between two tall candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482007.jpg', 'caption': 'Trees sitting gin vases next to a marble wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482007.jpg', 'caption': 'Several tall young plants of the same height with yellow flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482007.jpg', 'caption': 'There are several plants in clear, glass vases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482007.jpg', 'caption': 'A display of yellow flowers in several long glass vases on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482007.jpg', 'caption': 'A row of plants with a circular vase around each.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536990.jpg', 'caption': 'A vase on a table next to two candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536990.jpg', 'caption': 'wooden table with tree different vase and candies picture frame ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536990.jpg', 'caption': 'A vase and two candles sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536990.jpg', 'caption': 'A picture of a room with a table that has a vase and candles on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536990.jpg', 'caption': 'A vase with straw flowers sitting on a table along with two candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251590.jpg', 'caption': 'A very big pretty green vase with some flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251590.jpg', 'caption': 'A dying and wilting plant in a vase with a photo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251590.jpg', 'caption': 'a vase with some dead vegetation inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251590.jpg', 'caption': 'a table with a vase with many flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251590.jpg', 'caption': 'A beautiful vase full of flowers and pictures next to it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478071.jpg', 'caption': 'A vase with flowers that is standing on a stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478071.jpg', 'caption': 'A vase with sunflowers sits on a pedestal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478071.jpg', 'caption': 'an orange vase on a white stand with some yellow sunflowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478071.jpg', 'caption': 'A gold vase with sunflowers in it sitting on a white post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478071.jpg', 'caption': 'A vase that has some sunflowers placed in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174893.jpg', 'caption': 'A young girl cutting paper into tiny pieces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174893.jpg', 'caption': 'A close up of a little girl cutting paper with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174893.jpg', 'caption': 'A girl cutting yellow paper into small pieces with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174893.jpg', 'caption': 'A girl with a pair of scissors cutting into paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174893.jpg', 'caption': 'A little girl uses scissors to cutup bits of yellow paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292482.jpg', 'caption': 'A little girl sitting at a table cutting a piece of paper with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292482.jpg', 'caption': 'a little girl doing some arts and crafts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292482.jpg', 'caption': 'a small child sitting at a table cutting paper with scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292482.jpg', 'caption': 'A young girl sitting at a table making something with construction paper, scissors, and crayons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292482.jpg', 'caption': 'A little girl cutting paper sitting at a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561314.jpg', 'caption': 'Scissors ready to cut a sheet of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561314.jpg', 'caption': 'there are a pair of scissors about to cut paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561314.jpg', 'caption': 'A person cutting a piece of paper with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561314.jpg', 'caption': 'A person using scissors to cut a piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561314.jpg', 'caption': 'someone is cutting open an envelope with scissors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310493.jpg', 'caption': 'A woman holding a pair of clear plastic scissors to her face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310493.jpg', 'caption': 'A person in glasses holding large transparent scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310493.jpg', 'caption': 'A double exposure picture with a pair of scissor and a man face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310493.jpg', 'caption': 'A person with glasses holding scissors in front of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310493.jpg', 'caption': 'Redheaded man looking at transparent scissors near waterfront.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399873.jpg', 'caption': 'A woman is cutting a sheet with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399873.jpg', 'caption': 'A person standing over a table cutting with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399873.jpg', 'caption': 'In a workroom with bare plywood cabinets, a woman uses a scissor on a white cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399873.jpg', 'caption': 'A woman standing at a table cutting white fabric with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399873.jpg', 'caption': 'A woman cutting a piece of fabric with some scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131159.jpg', 'caption': 'a close up of a stuffed animal near car pedals ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131159.jpg', 'caption': 'a tan teddy bear and a gas and brake pad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131159.jpg', 'caption': 'A stuffed bear sits on the floorboard of a vehicle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131159.jpg', 'caption': 'A teddy bear positioned to look as though he is pushing the gas pedal in a vehicle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131159.jpg', 'caption': 'A very cute stuffed animal with its foot on a gas pedal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285727.jpg', 'caption': 'A young boy is eating a meal in his pajamas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285727.jpg', 'caption': 'A boy stands in front of his bowl of food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285727.jpg', 'caption': 'A little boy and some food in a bowl on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285727.jpg', 'caption': 'Little boy in pajamas starting to eat his breakfast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285727.jpg', 'caption': 'A small boy in pajamas has some cereal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185807.jpg', 'caption': 'A baby girl in a high chair eating a bowl of cereal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185807.jpg', 'caption': 'A person feeding a little girl cereal who is sitting in a high chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185807.jpg', 'caption': 'A little girl in a high chair eating cheerios and milk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185807.jpg', 'caption': 'A small child is eating cereal in a highchair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185807.jpg', 'caption': 'a toddler sitting in a high chair being fed breakfast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174336.jpg', 'caption': 'A young girl is eating her meal with other plates of food present. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174336.jpg', 'caption': 'a small girl sitting at a table with food and drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174336.jpg', 'caption': 'A girl sitting at a table eating from a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174336.jpg', 'caption': 'A pile of fried foods sitting on top of a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174336.jpg', 'caption': 'A kid at a long table with some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515660.jpg', 'caption': 'A spread of seafood on a large plate with bread on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515660.jpg', 'caption': 'A feast of shrimp with wine sits on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515660.jpg', 'caption': 'A plate of shrimp and bread with glasses of wine on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515660.jpg', 'caption': 'A plate of steamed shrimp, slice of bread and a lemon wedge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515660.jpg', 'caption': 'A person sitting at a table with a plate of shrimp and bread, some cutlery, salt and pepper containers and some glasses of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433370.jpg', 'caption': 'a person at a table with many glasses of wine ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433370.jpg', 'caption': 'A woman sitting at a table with wine glasses ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433370.jpg', 'caption': 'A man sitting behind a group of different wines ready to taste them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433370.jpg', 'caption': 'The man has five wine glasses on the table in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433370.jpg', 'caption': 'A man sitting at a table with wine glasses in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425475.jpg', 'caption': \"A woman's hand holding a glass of wine.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425475.jpg', 'caption': 'A person holds up a champagne glass to make a toast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425475.jpg', 'caption': 'This person is holding a whine glass with a drink in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425475.jpg', 'caption': 'A woman holding up a glass of liquid.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425475.jpg', 'caption': 'A person holds up their champagne glass for a toast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376628.jpg', 'caption': 'A group of motorcycles parked in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376628.jpg', 'caption': 'a couple of people stand next to some parked motorcycles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376628.jpg', 'caption': 'A busy street with cars parked down one side and motorcycles parked on the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376628.jpg', 'caption': 'Adults standing next to busy roadway in urban area at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376628.jpg', 'caption': 'A row of motorcycles parked on the side of a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221547.jpg', 'caption': 'a couple on a subway looks at each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221547.jpg', 'caption': 'A boy puts his arm around a girl on the subway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221547.jpg', 'caption': 'Two people sit closely on a subway train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221547.jpg', 'caption': 'a male and female are sitting together on a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221547.jpg', 'caption': 'A man and a woman sitting on a subway train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007256.jpg', 'caption': 'A group of people with a cell phone the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007256.jpg', 'caption': 'some people are standing behind a pole in line', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007256.jpg', 'caption': 'A group of people standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007256.jpg', 'caption': 'A bunch of people waiting in line by a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007256.jpg', 'caption': 'Group of people standing against wall waiting in line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531086.jpg', 'caption': 'A kitchen area with a refrigerator, dishwasher and cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531086.jpg', 'caption': 'A refrigerator is shown with papers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531086.jpg', 'caption': 'A refrigerator covered with pictures and papers in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531086.jpg', 'caption': 'The refrigerator is covered in papers with magnets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531086.jpg', 'caption': 'A white refrigerator freezer sitting in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187791.jpg', 'caption': 'A woman with a tie and a bag on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187791.jpg', 'caption': 'A woman standing on the sidewalk with a huge, colorful tie on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187791.jpg', 'caption': 'Girl standing on street with large pink flower tie on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187791.jpg', 'caption': 'A woman that has a large pink tie standing on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187791.jpg', 'caption': 'a woman with a tie on standing on a side walk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207196.jpg', 'caption': 'A kitchen with tile back splash and stainless steel appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207196.jpg', 'caption': 'A kitchen has white cabinets and stainless steel appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207196.jpg', 'caption': 'A small kitchen is shown with a stove, dishwasher and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207196.jpg', 'caption': 'Kitchen area with modern appliances and plenty of cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207196.jpg', 'caption': 'A kitchen with a microwave, stove, oven, dishwasher and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428263.jpg', 'caption': 'The young kids are playing Frisbee in the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428263.jpg', 'caption': \"A couple of kids jumping for a Frisbee that's in the air.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428263.jpg', 'caption': 'Two children attempting to catch a frisbeen on a stretch of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428263.jpg', 'caption': 'A couple of kids playing with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428263.jpg', 'caption': 'two people in a field jumping to try to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349642.jpg', 'caption': 'A woman is sitting on a bench with a dog behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349642.jpg', 'caption': 'Someone sitting on a bench while a dog sits behind the bench ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349642.jpg', 'caption': 'A person sitting on a bench next to a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349642.jpg', 'caption': 'A dog is laying behind a bench with a person sitting on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349642.jpg', 'caption': 'An old lady in a fur-lined coat sitting on a wooden bench with a fuzzy dog sitting behind the bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448795.jpg', 'caption': 'There is a table with chairs and a stove in the room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448795.jpg', 'caption': 'A table sitting in a kitchen surrounded by white chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448795.jpg', 'caption': 'a brightly lit kitchen with the stove, cabinets, and kitchen table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448795.jpg', 'caption': 'The kitchen is clean and ready to be used.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448795.jpg', 'caption': 'The view of a kitchen from across the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436130.jpg', 'caption': 'A small kitchen cluttered with a variety of kitchen items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436130.jpg', 'caption': 'a kitchen with a stove a refrigerator and some cupbords', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436130.jpg', 'caption': \"A child's play kitchen right next to a real kitchen.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436130.jpg', 'caption': 'A kitchen with white tile floor and blue sloped ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436130.jpg', 'caption': 'A small kitchen area features a stove and cupboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345389.jpg', 'caption': ' A tall woman is standing in a small kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345389.jpg', 'caption': 'A girl is standing in a kitchen with a mug in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345389.jpg', 'caption': 'Woman in knitted jump pants and yellow sleeveless top, in kitchen scene with matching yellow tone area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345389.jpg', 'caption': 'a woman standing in a kitchen near a refrigerator and a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345389.jpg', 'caption': 'A woman with pigtails is standing in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045195.jpg', 'caption': 'A break room has a table, phone, lamp, sink and other appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045195.jpg', 'caption': 'A nice clean looking kitchen with wood fronts and a black dishwasher. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045195.jpg', 'caption': 'a small break room with a floor lamp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045195.jpg', 'caption': 'A small office kitchen has a basket on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045195.jpg', 'caption': 'a room with a kitchen set up and a calendar on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062510.jpg', 'caption': 'A small kitchen has a stove and a blender.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062510.jpg', 'caption': 'a kitchen with a stove and a sink and plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062510.jpg', 'caption': 'A kitchen with drawers, a stove and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062510.jpg', 'caption': 'A very small kitchen in an attic with a sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062510.jpg', 'caption': 'An apartment kitchen tucked in under a stairway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199634.jpg', 'caption': 'a open kitchen with white color and wood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199634.jpg', 'caption': 'A kitchen with a refrigerator, microwave, counter and chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199634.jpg', 'caption': 'A kitchen that has an island in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199634.jpg', 'caption': 'this kitchen has all white walls and ceilings and a brown and white island', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199634.jpg', 'caption': 'A clean, organized kitchen filled with kitchen furniture and accessories.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212122.jpg', 'caption': 'A boat sitting out on an island surrounded by water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212122.jpg', 'caption': 'A boat out in the clear ocean where you can see the bottom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212122.jpg', 'caption': 'A house boat sits in the ocean with people onboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212122.jpg', 'caption': 'A house boat is on clear blue water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212122.jpg', 'caption': 'A boat sailing in the middle of the open ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011360.jpg', 'caption': 'A kitchen countertop is cluttered with various kitchen items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011360.jpg', 'caption': 'On a kitchen counter top, a knife rests on an empty cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011360.jpg', 'caption': 'Dirty kitchen utensils and a stove together with fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011360.jpg', 'caption': 'a place with cheese and forks and fruits', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011360.jpg', 'caption': 'a knife a cutting board some bananas and a toaster', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420081.jpg', 'caption': 'The front of a Chinese postal store with people walking by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420081.jpg', 'caption': 'a green yellow and white truck and some people on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420081.jpg', 'caption': 'People going about their day on a street in the Chinese district.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420081.jpg', 'caption': 'A large green transport truck parked in front of a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420081.jpg', 'caption': 'A man walking down the street carrying boxes on a hand truck while several others pass through the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148668.jpg', 'caption': 'a bike chained to a metal pole on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148668.jpg', 'caption': 'A bike parked on a lamppost in a downtown square.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148668.jpg', 'caption': 'a bike is chained to a lamp post outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148668.jpg', 'caption': 'A bicycle can be seen parked next to a light pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148668.jpg', 'caption': 'A bicycle is parked near a pole on a cobblestone street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390137.jpg', 'caption': 'A man on a bike near people on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390137.jpg', 'caption': 'A nice park setting area with bikers and others around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390137.jpg', 'caption': 'a man on a bike rides by some other people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390137.jpg', 'caption': 'a person riding a bike on a grass field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390137.jpg', 'caption': 'A group of people standing around and riding bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114183.jpg', 'caption': 'A woman sitting on top of a red bench next to a man on a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114183.jpg', 'caption': 'A kid is riding a bicycle near a mannequin on a bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114183.jpg', 'caption': 'A guy with a helmet and dark glasses on a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114183.jpg', 'caption': 'A boy rides a bicycle down a street as a statue of a woman sits on a red bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114183.jpg', 'caption': 'A boy is on a bicycle next to a red bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275781.jpg', 'caption': 'A woman in red shirt standing in bathroom with sinks and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275781.jpg', 'caption': 'Black television sitting on the corner of a bathroom wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275781.jpg', 'caption': 'A woman photographing a television located in a swank bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275781.jpg', 'caption': 'A woman stnind in a bathroom with a tv in the top corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275781.jpg', 'caption': 'A bathroom with a television mounted in the corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020307.jpg', 'caption': 'A bicycle sitting beside a black door and steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020307.jpg', 'caption': 'A bike stands outside an apartment building with two cats at the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020307.jpg', 'caption': 'A bicycle is parked outside a window that has two cats in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020307.jpg', 'caption': 'A bicycle leaning against a white window with two cats in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020307.jpg', 'caption': 'A bike parked up next to a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280736.jpg', 'caption': 'A cat sitting outside on some cobble stone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280736.jpg', 'caption': 'Cat staring at something while sitting on porch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280736.jpg', 'caption': 'A cat looking to its left while sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280736.jpg', 'caption': 'A tan cat sitting on a stone patio', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280736.jpg', 'caption': 'a cat standing around on some bricks outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536321.jpg', 'caption': 'An adorable caleco cat sitting underneath a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536321.jpg', 'caption': 'A cat on a red sheet is right under a bicycle wheel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536321.jpg', 'caption': 'A multi-colored cat peers from a blanket between the wheels of a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536321.jpg', 'caption': 'A cat sits behind a bicycle tire and peddles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536321.jpg', 'caption': 'A cat sitting under a bicycle with a red blanket in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048185.jpg', 'caption': 'A clean bathroom with black marble counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048185.jpg', 'caption': 'A bathroom with a large walk in shower and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048185.jpg', 'caption': 'A bathroom with mirrored doors and a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048185.jpg', 'caption': 'A clean bathroom with mirrored shower and marble sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048185.jpg', 'caption': 'a bathroom with a large mirror a smaller mirror and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188146.jpg', 'caption': 'A bike parked in front of a doorway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188146.jpg', 'caption': \"A bicycle that is stored in someone's closet in the apartment. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188146.jpg', 'caption': 'A bicycle is placed behind an open door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188146.jpg', 'caption': 'A bicycle leaned against the hallway wall in a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188146.jpg', 'caption': 'A yellow bike sits on a wall in the hallway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045208.jpg', 'caption': 'A small black cat sitting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045208.jpg', 'caption': 'A small clack cat sitting in a white bathtub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045208.jpg', 'caption': 'The top of a black cat sitting down. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045208.jpg', 'caption': 'A black cat sits in a cream tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045208.jpg', 'caption': 'a black cat sitting in a white bathtube looking down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077486.jpg', 'caption': 'A bathroom is shown with a toilet, sink, and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077486.jpg', 'caption': 'A wash basin and toilet beside a shower stall in a tiled bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077486.jpg', 'caption': 'a bathroom with a large mirror and a small counter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077486.jpg', 'caption': 'a bathroom with a sink sitting under a big mirror ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077486.jpg', 'caption': 'This bathroom has a sink and a shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497443.jpg', 'caption': 'A cat sitting on the edge of a tub with the faucet running.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497443.jpg', 'caption': 'A cat watching a bathtub fill up with water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497443.jpg', 'caption': 'A black cat sitting on ledge of bathtub next to flowing water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497443.jpg', 'caption': 'A cat watches a tub filling up with water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497443.jpg', 'caption': 'a black cat is sitting by a faucet of running water in a tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194594.jpg', 'caption': 'a couple of cats sit in front of a tub full of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194594.jpg', 'caption': 'Two cats curiously look at water in the bath tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194594.jpg', 'caption': 'A couple cats examine a bathtub with water in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194594.jpg', 'caption': 'Two cats in a bathroom near a tub of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194594.jpg', 'caption': 'two black cats standing one taking water from a bath tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514982.jpg', 'caption': 'A couple of white sinks and a mirror in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514982.jpg', 'caption': 'Two sinks sitting under a bathroom mirror under lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514982.jpg', 'caption': 'there is a long counter with two sinks in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514982.jpg', 'caption': 'There are two sinks in a long bathroom countertop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514982.jpg', 'caption': 'A bathroom with a long fancy black counter next to a big long mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448320.jpg', 'caption': 'This bathroom has a sleek counter top that wraps around the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448320.jpg', 'caption': 'A bathroom with a vessel sink sitting on the counter and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448320.jpg', 'caption': 'a bathroom with a bowl sink and toilet paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448320.jpg', 'caption': 'There is a toilet with a roll of tissue on the lid and an brown base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448320.jpg', 'caption': 'A bathroom with a toilet, stand alone sink and a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213429.jpg', 'caption': 'A small bathroom with a stainless steel sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213429.jpg', 'caption': 'A small yellow bathroom with two multitcolored towels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213429.jpg', 'caption': 'A bathroom with a metal sink and an odd shaped toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213429.jpg', 'caption': 'A bathroom with a push button on top of the toilet to flush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213429.jpg', 'caption': 'A bathroom that is clean and has the light on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005412.jpg', 'caption': 'a light brown bathroom with drawers sink and toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005412.jpg', 'caption': 'A beige bathroom stall with a sink and a toilet also a urinal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005412.jpg', 'caption': 'A small but very neatly set up bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005412.jpg', 'caption': 'A very unique bathroom that is very clean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005412.jpg', 'caption': 'A modern bathroom with toilet, bidet and wash basin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496604.jpg', 'caption': 'A couple of toilets sitting in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496604.jpg', 'caption': 'The corner of a bathroom with colorful tile floors and a very low sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496604.jpg', 'caption': 'there is a white toilet and a white urinal in this bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496604.jpg', 'caption': 'The colorful tile is underneath the toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496604.jpg', 'caption': 'A bathroom with colorful floor tiles, a toilet, and a sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186822.jpg', 'caption': 'A bathroom sink sitting under a mirror sitting next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186822.jpg', 'caption': 'a sink sitting next to a toilet and mirror ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186822.jpg', 'caption': 'A bathroom with mint green walls and a white toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186822.jpg', 'caption': 'A bathroom showing sink, mirror and toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186822.jpg', 'caption': 'A small bathroom has a mirror, vanity and toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303413.jpg', 'caption': 'A woman standing in front of a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303413.jpg', 'caption': 'A person in a mirror by a sink with a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303413.jpg', 'caption': 'A woman takes a photo of herself in a small yellow bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303413.jpg', 'caption': 'a girl that is taking a picture of herself ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303413.jpg', 'caption': 'a woman taking a selfie in front of a bathroom mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559312.jpg', 'caption': 'The man is walking with a bicycle covered with small green bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559312.jpg', 'caption': 'A man walking a bike with piles of green bananas on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559312.jpg', 'caption': 'A man pushes a bicycle filled with many bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559312.jpg', 'caption': 'A person pushing a bicycle that is loaded with bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559312.jpg', 'caption': 'A man carrying a load of bananas through the marketplace on his bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162280.jpg', 'caption': 'A small bathroom with focus on the shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162280.jpg', 'caption': 'A bathroom with a shower and a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162280.jpg', 'caption': 'A bathroom with carpet and light coming from a window behind the curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162280.jpg', 'caption': 'A bathroom with green walls and shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162280.jpg', 'caption': 'A green bathroom with a leaf shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535808.jpg', 'caption': 'A bicycle sits parked in front of a bookstore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535808.jpg', 'caption': 'A bike parked in front of a book shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535808.jpg', 'caption': 'Bike leaned against a wall of books inside and establishment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535808.jpg', 'caption': 'a bike that is leaning up against a book rack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535808.jpg', 'caption': 'A bicycle leaned against an outdoor magazine stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357475.jpg', 'caption': 'A white toilet sitting next to a white bath tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357475.jpg', 'caption': 'A bathroom with tile floor and white fixtures', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357475.jpg', 'caption': 'A white bathroom with a checked tile floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357475.jpg', 'caption': 'A white and black bathroom with tub and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357475.jpg', 'caption': 'A bathroom has a black and white tile floor and a dirty tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245274.jpg', 'caption': 'A bathroom with a toilet and a bathtub with a safety rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245274.jpg', 'caption': 'Tiled and curtained bathtub area of home bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245274.jpg', 'caption': 'A bathroom is accented in pink and has a handicap bar in the tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245274.jpg', 'caption': 'a a bathroom with a bath tub a toilet and a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245274.jpg', 'caption': 'Light shines into a bathroom with a tub and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451944.jpg', 'caption': 'A blue and white bus with two bicycles and people by it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451944.jpg', 'caption': 'Several people board a bus carrying bikes on the front of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451944.jpg', 'caption': 'A bus stopped at a bus stop with a bike on the front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451944.jpg', 'caption': 'A commuter bus in Miami with bicycles on its front rack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451944.jpg', 'caption': 'People board the blue bus with the two bicycles on the front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124654.jpg', 'caption': 'A restroom view of a toilet, sink, and shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124654.jpg', 'caption': 'A stand that is on top of a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124654.jpg', 'caption': 'a bath room with a toilet and a sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124654.jpg', 'caption': 'A white toilet sitting next to a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124654.jpg', 'caption': 'A rack of various bath items and decorations in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325078.jpg', 'caption': 'A small bathroom is decorated in pretty colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325078.jpg', 'caption': 'A bathroom with a shower curtain, toilet and a sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325078.jpg', 'caption': 'A white bathroom with sink, vanity, toilet and a blue circle shower curtain enclosing the tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325078.jpg', 'caption': 'a bathroom with a toiilet sink and a shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325078.jpg', 'caption': 'A bathroom that has a polka dot shower curtain in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182423.jpg', 'caption': 'A photograph of street sign and traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182423.jpg', 'caption': 'A black traffic light on a white street post', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182423.jpg', 'caption': 'A sign on a busy city street pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182423.jpg', 'caption': 'A street light has a street sign at the top of its pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182423.jpg', 'caption': 'A busy intersection with many cars, a street sign and traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322594.jpg', 'caption': 'A series of photographs depicting bathroom before and after minor changes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322594.jpg', 'caption': \"There's not much room in these tiny bathrooms.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322594.jpg', 'caption': 'A before and after shot of a bathroom including a toilet seat cover change.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322594.jpg', 'caption': 'A split-screen, showing the same bathroom with sink and toilet, with different toilet seats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322594.jpg', 'caption': 'A pair of white bathroom sinks with matching vanity mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262030.jpg', 'caption': 'this bathroom is big and has a jacuzzi tub made of wood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262030.jpg', 'caption': 'A all wooden bathroom with the windows open .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262030.jpg', 'caption': 'A bath tub sitting in a bathroom on top of a hard wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262030.jpg', 'caption': 'Bathroom with wood and tub with window and floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262030.jpg', 'caption': 'This bathroom has a wood floor, wood surfaces, and a large window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046099.jpg', 'caption': 'A stop sign that looks likes it made of crinkled paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046099.jpg', 'caption': 'a close up of a vandalized stop sign ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046099.jpg', 'caption': ' An old stop sign with cracked paint on a street corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046099.jpg', 'caption': 'A car parked by a stop sign with cracked paint.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046099.jpg', 'caption': 'a stop sign with the red color looking all cracked ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328091.jpg', 'caption': 'A bathroom sink with a toothbrush, soap dispenser and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328091.jpg', 'caption': 'Two towel holders that are above a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328091.jpg', 'caption': 'The bathroom sink below the cabinet has two toothbrushes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328091.jpg', 'caption': 'a sink sits in front of a tiled wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328091.jpg', 'caption': 'A sink with a mirror above it has a bottle of soap and toothbrushes on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198139.jpg', 'caption': 'A car is parked next to an old fashioned parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198139.jpg', 'caption': 'A white car near a green and yellow parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198139.jpg', 'caption': 'A small white truck is parked next to a parking meter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198139.jpg', 'caption': 'A white truck parked next to a green and yellow parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198139.jpg', 'caption': 'A white car sits near a green parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463825.jpg', 'caption': 'A cat climbing into a bathroom sink looking at someone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463825.jpg', 'caption': 'A cat looks up as it stands in the bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463825.jpg', 'caption': 'A large cat stands inside of a clean bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463825.jpg', 'caption': 'Cat is caught stepping in to the bathroom sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463825.jpg', 'caption': 'a cute kitty cat in the sink of a bathroom near a brush and other items', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219492.jpg', 'caption': 'THERE IS AN ADULT CAT THAT IS LYING DOWN IN THE SINK ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219492.jpg', 'caption': 'A cat laying inside of a white sink under a faucet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219492.jpg', 'caption': 'a cat lounging in a bathroom sink looking at the photographer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219492.jpg', 'caption': 'there is a cat that is laying in the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219492.jpg', 'caption': 'The white and orange cat is laying inside of a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435316.jpg', 'caption': 'A cat watching water go down a sink drain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435316.jpg', 'caption': 'A cat standing in a sink next to a drain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435316.jpg', 'caption': 'A young cat is staring intently down a drain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435316.jpg', 'caption': 'A grey and white cat watching water drain from a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435316.jpg', 'caption': 'a close up of a cat with watching water drain down a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173530.jpg', 'caption': 'A Ford Mustang next to a brown horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173530.jpg', 'caption': 'A mustang car and horse who the car is named after', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173530.jpg', 'caption': 'A horse is standing near a parked vintage car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173530.jpg', 'caption': 'An old mustang with chrome rims parked next to brown horse on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173530.jpg', 'caption': 'An old Ford Mustang parked near a field with horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050411.jpg', 'caption': 'A mounted police officer riding down a city street past parked cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050411.jpg', 'caption': 'A gentleman riding a horse down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050411.jpg', 'caption': 'A man rides a horse down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050411.jpg', 'caption': 'Man riding white horse in the street while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050411.jpg', 'caption': 'A man on a horse walking down the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058223.jpg', 'caption': \"A giraffe sticking it's head in a van.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058223.jpg', 'caption': 'A giraffe lowers its head to look inside a car window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058223.jpg', 'caption': 'The giraffe is looking into the back window of a car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058223.jpg', 'caption': 'A giraffe is sticking its head into the window of a van. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058223.jpg', 'caption': 'A giraffe that is standing next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443640.jpg', 'caption': 'A young boy kneeling beside a toilet in rubber gloves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443640.jpg', 'caption': 'a little kid cleaning a toilet with gloves on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443640.jpg', 'caption': 'a small child in the bathroom cleaning a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443640.jpg', 'caption': 'A child wears rubber gloves while cleaning a toilet bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443640.jpg', 'caption': 'The boy with the purple gloves is playing around the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524637.jpg', 'caption': 'there is a white toilet and tile floors in the bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524637.jpg', 'caption': 'a very clean toilet with black and white tiles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524637.jpg', 'caption': 'An open white toilet against a wall of white tiles and a black and white floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524637.jpg', 'caption': 'a white toilet in a bathroom with a checkers floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524637.jpg', 'caption': 'A white toilet that has its seat up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335284.jpg', 'caption': 'A metallic toilet sitting in a metallic stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335284.jpg', 'caption': 'A view of a metal airplane toilet with seat raised.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335284.jpg', 'caption': 'A stainless steel toilet with the sat up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335284.jpg', 'caption': 'The toilet lid and cover are not down. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335284.jpg', 'caption': 'A metal toilet is shown with the lid open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392928.jpg', 'caption': 'A bathroom door is opened by a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392928.jpg', 'caption': 'A picture of a toilet with the door cracked open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392928.jpg', 'caption': 'a small bathroom with some kind of little toliet in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392928.jpg', 'caption': 'A small bathroom with the door half open leading to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392928.jpg', 'caption': 'A white toilet in a houses small bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031730.jpg', 'caption': 'A white toilet in a bathroom with a digital arm rest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031730.jpg', 'caption': 'a toilet with a raised seats and controls on a side arm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031730.jpg', 'caption': 'White modern commode displayed in small bathroom area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031730.jpg', 'caption': 'A white electric toilet in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031730.jpg', 'caption': 'A white toilet that has some controls next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245161.jpg', 'caption': 'A toilet setting in a bathroom with tile flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245161.jpg', 'caption': 'A white toilet in a very small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245161.jpg', 'caption': 'A white toilet in a room with baseboard heaters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245161.jpg', 'caption': 'A white toilet is very close to a beige wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245161.jpg', 'caption': 'There is a small white toilet in the corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464033.jpg', 'caption': 'A large tower that has a weather vain at the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464033.jpg', 'caption': 'A large tall building with a small bird flying over the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464033.jpg', 'caption': 'There is a bird flying up around the weather vane on this building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464033.jpg', 'caption': 'A close shot of a very large building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464033.jpg', 'caption': 'An ornate tower in a Gothic or Gothic Revival style of architecture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212558.jpg', 'caption': 'A person stopped wearing a yellow jacket riding a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212558.jpg', 'caption': 'female biker sits in traffic awaiting green light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212558.jpg', 'caption': 'a lady sitting on a motor cycle next to a white car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212558.jpg', 'caption': 'A girl stopped at a red light on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212558.jpg', 'caption': 'a person riding a motorcycle on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283216.jpg', 'caption': 'A woman standing next to a red scooter near a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283216.jpg', 'caption': 'Two people standing in front of a display of mopeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283216.jpg', 'caption': 'Two people pose for a picture while one points at a moped.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283216.jpg', 'caption': 'two people standing in front of a row of motorcycles in a store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283216.jpg', 'caption': 'two people standing next to a scooter on display', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512912.jpg', 'caption': 'A white bowl of bananas and sour cream sits on a white plate next to a banana half in the peel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512912.jpg', 'caption': 'The bowl of dessert has a banana half near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512912.jpg', 'caption': 'A bowl on a plate with a spoon and half a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512912.jpg', 'caption': 'A plate with a bowl of food and a half banana on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512912.jpg', 'caption': 'A white plate topped with a bowl of pudding next to a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469134.jpg', 'caption': 'A group of bikers assembles outside of a pizza shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469134.jpg', 'caption': 'this is an image of several motorcyclists and walkers in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469134.jpg', 'caption': 'A group of people gather around on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469134.jpg', 'caption': 'People and bikers on the side of city street with many motorcycles parked at the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469134.jpg', 'caption': 'A crowd of people mingling on a sidewalk by parked motorcycles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562592.jpg', 'caption': 'A person that is driving on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562592.jpg', 'caption': 'THERE IS A MNA RIDING A MOTORCYCLE DOWN THE STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562592.jpg', 'caption': 'a close up of a person riding a motorcycle on a long empty road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562592.jpg', 'caption': 'A photo taken from the back of a motorcycle cruising down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562592.jpg', 'caption': 'A motorcyclist surveys the sunlit road into the horizon.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000343643.jpg', 'caption': 'A modern day double decker bus that is parked in a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343643.jpg', 'caption': 'A white and blue double decker bus on side of street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343643.jpg', 'caption': 'A double decker bus parked by a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553522.jpg', 'caption': 'a girraf standing in a grassy field next to a forrest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553522.jpg', 'caption': 'a very large giraffe that is standing in some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553522.jpg', 'caption': \"A giraffe that is bent over and you can see it's tail.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553522.jpg', 'caption': 'A tall giraffe standing on top of grass covered ground near a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553522.jpg', 'caption': 'A giraffe stands with its legs askew as it bends its head down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203257.jpg', 'caption': 'A group of three buses driving down a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203257.jpg', 'caption': 'A highway in a busy city is filled with cars and buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203257.jpg', 'caption': 'A busy freeway, with lots of cars, buses, and a subway entrance next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203257.jpg', 'caption': 'A view of a busy city street and an enclosed bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203257.jpg', 'caption': 'A very busy highway with a lot of traffic and multiple off ramps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149123.jpg', 'caption': 'a truck and two double deckered busses near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149123.jpg', 'caption': 'A white recovery truck is in front of a red bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149123.jpg', 'caption': 'a truck parked in front of a red double decker bus next to a sidewalk in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149123.jpg', 'caption': 'Two large trucks are parked between some lines on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149123.jpg', 'caption': 'A towing truck towing a bus away and another bus in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339759.jpg', 'caption': 'A little black colored bird stands gazing at a statue on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339759.jpg', 'caption': 'A bird sitting on snow covered ground next to a statue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339759.jpg', 'caption': 'A small black bird standing in snow bedside a small lawn figurine ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339759.jpg', 'caption': 'a little black bird standing next to a statue', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339759.jpg', 'caption': 'A black bird standing on the ground near a toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292616.jpg', 'caption': 'There is a group of small birds standing on the chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292616.jpg', 'caption': 'A bunch of birds that are sitting on chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292616.jpg', 'caption': 'The birds are lined up near some purple chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292616.jpg', 'caption': 'Birds are sitting on the arms of poolside chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292616.jpg', 'caption': 'A group of little birds sitting on the arm rest of the lounge chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016238.jpg', 'caption': 'Two women looking at three giraffes behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016238.jpg', 'caption': 'Giraffes in a zoo enclosure are watched by two women.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016238.jpg', 'caption': 'Three giraffe stand near a fence as two women watch them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016238.jpg', 'caption': 'a close up of three giraffes near a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016238.jpg', 'caption': 'Three giraffes looking over a wooden fence at two women.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219897.jpg', 'caption': 'A stop sign mounted on a pole with a street sign with a forest in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219897.jpg', 'caption': 'An all way stop sign at the intersection of two streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219897.jpg', 'caption': 'A four way stop on St. Andrews Rd,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219897.jpg', 'caption': 'a sign altered so it says stop all war', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219897.jpg', 'caption': 'A picture of a stop sign and a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490491.jpg', 'caption': 'A burnt out cement building is next to a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490491.jpg', 'caption': 'A street corner with street signs and a beaten up rock wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490491.jpg', 'caption': 'Remains of old city wall at the corner of two cobblestone streets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490491.jpg', 'caption': 'Traffic signage on post displayed near cement wall at intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490491.jpg', 'caption': 'An old wall is falling apart along a street in mexico.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322955.jpg', 'caption': 'A bird standing on the shore of the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322955.jpg', 'caption': 'A lone bird sitting on top of a wet beach next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322955.jpg', 'caption': 'A lone small bird stands on the beach during sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322955.jpg', 'caption': 'A seagull standing on a beach with a dwindling tide', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322955.jpg', 'caption': 'A single seagull standing on the coast with waves in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173897.jpg', 'caption': 'Two giraffes in a field between multiple trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173897.jpg', 'caption': 'Giraffe amongst trees with dry vegetation on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173897.jpg', 'caption': 'some giraffes on a dirt ground with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173897.jpg', 'caption': 'a giraffe standing by a tree eating some leaves ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173897.jpg', 'caption': 'A group of giraffes stand next to trees on a path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070125.jpg', 'caption': 'A metal pole with a bunch of street signs hanging from the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070125.jpg', 'caption': 'a pole that has a bunch of street signs on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070125.jpg', 'caption': 'There are many street signs on the pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070125.jpg', 'caption': 'a pole with some sign coming out the side of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070125.jpg', 'caption': 'a couple of street signs are on a pole above a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357041.jpg', 'caption': 'A lone, blue and orange bird sits on a bare tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357041.jpg', 'caption': 'The colorful bird is perched on the delicate branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357041.jpg', 'caption': 'A small blue, brown and white bird sitting on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357041.jpg', 'caption': 'A SMALL ORANGE AND BLUE BIRD HANGING ON A BRANCH ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357041.jpg', 'caption': 'A small blue bird sits in a leafless tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023807.jpg', 'caption': 'Two people sitting on a dock eating sandwiches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023807.jpg', 'caption': 'Lunch is consumed by two people on the lakeshore. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023807.jpg', 'caption': 'A couple consuming a meal as boats travel past.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023807.jpg', 'caption': 'Two people are sitting on a shore eating while boats pass by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023807.jpg', 'caption': 'The man and the woman eat food at the harbor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033208.jpg', 'caption': 'The entrance for a subway on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033208.jpg', 'caption': 'GREEN SIGN AND POST ON A BUSY STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033208.jpg', 'caption': 'A sign outside of a subway station on a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033208.jpg', 'caption': 'a green white and black sign some cars a street and buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033208.jpg', 'caption': 'A sign indicating an entrance next to a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312024.jpg', 'caption': 'A black and blue multi color bird walking on a grassy area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312024.jpg', 'caption': 'A bird sits on the ground in some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312024.jpg', 'caption': 'A bird is standing in the grass. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312024.jpg', 'caption': 'A little bird with blue markings standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312024.jpg', 'caption': 'Small bird with black and blue on its wings standing on top of grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211054.jpg', 'caption': \"A train traveling past a factory with tons of smoke pouring out of it's stacks.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211054.jpg', 'caption': 'Two trains moves past a factory emitting smoke.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211054.jpg', 'caption': 'an image of a smoke filled building with a train passing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211054.jpg', 'caption': 'A factory near a train track letting out smoke.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211054.jpg', 'caption': 'A building at a railroad crossing billows smoke.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308678.jpg', 'caption': 'two men in in a white raft and a ship behind them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308678.jpg', 'caption': 'Enforcement personnel in small rubber craft on waterway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308678.jpg', 'caption': 'Several patrol men ride on a motorized raft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308678.jpg', 'caption': 'A small boat is next to the ship.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308678.jpg', 'caption': 'a couple of people are riding in a small white boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174721.jpg', 'caption': 'A traffic light with a busy city street behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174721.jpg', 'caption': 'a red light on the crosswalk light on a street with tall buildings ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174721.jpg', 'caption': 'This pole has a street sign and traffic light on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174721.jpg', 'caption': 'A street sign is flashing do not walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174721.jpg', 'caption': 'A street sign in the middle of a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558794.jpg', 'caption': 'two persons standing outside a moving sub train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558794.jpg', 'caption': 'A woman and a man wait on a train station ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558794.jpg', 'caption': 'Two people standing on a platform near a moving subway car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558794.jpg', 'caption': 'A subway platform with two a man and woman waiting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558794.jpg', 'caption': 'Woman and man waiting near the rails as a subway rushes by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188044.jpg', 'caption': 'Two people are standing at a subway stop as a train goes by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188044.jpg', 'caption': 'A woman standing on a subway platform holding a piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188044.jpg', 'caption': 'Two people in a station and a train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188044.jpg', 'caption': 'Two people waiting on a train platform as a train passes by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188044.jpg', 'caption': 'People are standing at a station while holding luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121384.jpg', 'caption': 'A seagull swims toward a rocky shore in a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121384.jpg', 'caption': 'A single seagull swimming towards a rocky shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121384.jpg', 'caption': 'A seagull swimming in water near the shoreline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121384.jpg', 'caption': 'a duck that is floating in a pond', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121384.jpg', 'caption': 'The duck is swimming toward the moss covered rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291990.jpg', 'caption': 'Different street signs mounted to a pole with a stop light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291990.jpg', 'caption': 'A pole holding two street signs, a traffic light and two traffic signs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291990.jpg', 'caption': 'a pedestrian traffic light with street name and pedestrian crossing signs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291990.jpg', 'caption': 'A red hand lights the cross-walk sign on the corner of 35th Avenue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291990.jpg', 'caption': 'Street sign, with name and abbreviation, in front of very old building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449546.jpg', 'caption': 'We are looking up at a street sign with a building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449546.jpg', 'caption': 'One, 35 Av, 81 ST, 35th Avenue street signs on one pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449546.jpg', 'caption': 'The street pole contains traffic and street signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449546.jpg', 'caption': 'A close up of a street pole with multiple street signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449546.jpg', 'caption': 'Several street signs are on a post next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532007.jpg', 'caption': 'Three people riding horses on a beach next to the ocean..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532007.jpg', 'caption': 'Three people on three horses on a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532007.jpg', 'caption': 'Three people riding three horses along the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532007.jpg', 'caption': 'A group of three people ride horses on the beach alongside the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532007.jpg', 'caption': 'Three people riding horses on the beach right up to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326726.jpg', 'caption': 'A person holding a Jesus sign in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326726.jpg', 'caption': 'a woman stands on a corner while holding a sign ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326726.jpg', 'caption': 'Picketer on city street trying to praise her religion', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326726.jpg', 'caption': 'A woman holding a sign which explains how Jesus is the way to heaven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326726.jpg', 'caption': 'Woman on a city street has her photo taken while holding a bilingual sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293296.jpg', 'caption': 'a sign for prospect and brady st on a street with a light post', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293296.jpg', 'caption': 'Signs hang on a pole against the blue of the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293296.jpg', 'caption': 'A group of various signs on a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293296.jpg', 'caption': 'A highway sign sitting on top of a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293296.jpg', 'caption': 'A sign for Lake Michigan posted at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315072.jpg', 'caption': 'cars riding down a lit street with a bright light post ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315072.jpg', 'caption': 'A large business facility in a building with traffic passing by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315072.jpg', 'caption': 'A group of different types of cars in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315072.jpg', 'caption': 'A neon sign is shown at the top of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315072.jpg', 'caption': 'A car drives down a street at night under the lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424333.jpg', 'caption': 'Many street signs are located within close vicinity of each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424333.jpg', 'caption': 'A blue cyclists dismount sign sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424333.jpg', 'caption': ' Roadsigns showing stop lights, right and left turns and warning cyclists to dismount.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424333.jpg', 'caption': 'Various street signs and signals in an urban setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424333.jpg', 'caption': 'Stop signs at an intersection indicating you can not turn in either direction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507950.jpg', 'caption': 'Several cows in a field with a train passing in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507950.jpg', 'caption': 'Cows in a closed of field next to a passing train. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507950.jpg', 'caption': 'a cow and some goats hang out in a big flock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507950.jpg', 'caption': 'A bunch of cows is in a field while a train passes by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507950.jpg', 'caption': 'Herd of cows in a fence with the backdrop of a train going down a train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397121.jpg', 'caption': 'A green heron perches on a stump in a swamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397121.jpg', 'caption': 'the bird is sitting on a branch is a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397121.jpg', 'caption': 'A large colorful bird sitting on top of a tree trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397121.jpg', 'caption': 'The bird is big and colorful sitting on the bark of the tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397121.jpg', 'caption': 'A bird with many colors and orange legs perches on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075719.jpg', 'caption': 'This bird is looking at a toy photographer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075719.jpg', 'caption': 'a toy person taking a photo of two small birds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075719.jpg', 'caption': 'Two small birds standing on the ground next to a plastic man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075719.jpg', 'caption': 'A miniature person taking pictures of two green birds. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075719.jpg', 'caption': 'Two birds on a carpet and a man taking pictures of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238071.jpg', 'caption': 'S&B train number 3815 coming down the track, country area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238071.jpg', 'caption': 'A train is going down the tracks on a mountain side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238071.jpg', 'caption': 'A locomotive on railroad tracks in a scenic countryside setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238071.jpg', 'caption': 'The train is traveling through the rugged wilderness.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238071.jpg', 'caption': 'A train is stopped in a forested area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197774.jpg', 'caption': 'A yellow street light mounted to the top of a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197774.jpg', 'caption': 'The night is illuminated by a large, yellow lighted, lamp post.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197774.jpg', 'caption': 'Street signs are attached to a lit street lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197774.jpg', 'caption': 'A yellow street lamp shines as the sun sets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197774.jpg', 'caption': 'The sky is cloudy behind an illuminated street light. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500703.jpg', 'caption': 'People are waiting for the train to arrive', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500703.jpg', 'caption': 'People standing at a train station as a train is approaching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500703.jpg', 'caption': 'some people on a platform and a silver train ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500703.jpg', 'caption': 'Train coming in to a station at the edge of a large city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500703.jpg', 'caption': 'People standing on the pavement waiting for the approaching train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536654.jpg', 'caption': 'A group of three women sitting at a table sharing a cup of tea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536654.jpg', 'caption': 'Three women wearing hats at a table together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536654.jpg', 'caption': 'Three women with hats at a table having a tea party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536654.jpg', 'caption': 'Several woman dressed up with fancy hats at a tea party', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536654.jpg', 'caption': 'Three women wearing large hats at a fancy tea event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340637.jpg', 'caption': 'a pink hat and a cellphone on some weaved basket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340637.jpg', 'caption': 'A cell phone next to a knitted cell phone cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340637.jpg', 'caption': 'A small pink beanie hat next to a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340637.jpg', 'caption': 'A pink winter hat sits next to a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340637.jpg', 'caption': 'A cell phone sitting next to a pink ski hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431199.jpg', 'caption': 'A phone that is laying next to a stocking cap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431199.jpg', 'caption': 'a phone is sitting next to some cloth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431199.jpg', 'caption': 'The knit hat is next to the cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431199.jpg', 'caption': 'a phone and a hat that are sitting on a basket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431199.jpg', 'caption': 'A picture of a cell phone and a knitted cell phone cover. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174329.jpg', 'caption': 'A yellow train traveling down tracks next to a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174329.jpg', 'caption': 'A yellow train with a flag on it riding down train tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174329.jpg', 'caption': 'A large yellow train moving down a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174329.jpg', 'caption': 'Yellow-orange pecial purpose train engine with American flag painted in the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174329.jpg', 'caption': 'A yellow type of train is sitting on train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180830.jpg', 'caption': 'A cat sitting in front of a window where there is a field of tulips and a windmill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180830.jpg', 'caption': 'A cat sitting in front of an open windmill with a view of a red windmill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180830.jpg', 'caption': 'A gray and white cat is sitting in front of an open window with multi-colored tulips in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180830.jpg', 'caption': 'Cat sitting on a window sill in front of a windmill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180830.jpg', 'caption': 'A cat sits in front of an opened window facing a tulip field and windmill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356456.jpg', 'caption': 'a cargo and train on the train tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356456.jpg', 'caption': 'An old caboose on the train tracks while a modern train passes by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356456.jpg', 'caption': 'An unused train car sits on a track while another train drives by in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356456.jpg', 'caption': 'A train riding on a track near an old train car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356456.jpg', 'caption': 'A passenger train is passing a single old train car parked on another track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050354.jpg', 'caption': 'An old iron square steam train pulling gray passenger cars down a track past a bicyclist.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050354.jpg', 'caption': 'An old fashioned train traveling down some tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050354.jpg', 'caption': 'The train is going down the railroad tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050354.jpg', 'caption': 'A steam engine going down a track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050354.jpg', 'caption': 'A train going down the track with steam on top and a bicyclist riding beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499537.jpg', 'caption': 'A traffic sign sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499537.jpg', 'caption': 'A yellow sign that is sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499537.jpg', 'caption': 'A street sign is standing on the corner of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499537.jpg', 'caption': 'The road of an area with brick side walks and wide roads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499537.jpg', 'caption': 'A yellow warning sign on a street pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206770.jpg', 'caption': 'A house with a large hole in the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206770.jpg', 'caption': 'A maroon vehicle stops at the stop sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206770.jpg', 'caption': 'A minivan at a stop sign in front of a broken house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206770.jpg', 'caption': 'A red SUV sits across the street from a damaged house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206770.jpg', 'caption': 'A dark red minivan is stopped at the stop sign by the corner of two quiet streets in town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082662.jpg', 'caption': 'A red stop sign with a sticker of a man holding up a sword.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082662.jpg', 'caption': 'A small figure has been drawn on a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082662.jpg', 'caption': 'A vandalized stop sign with some stickers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082662.jpg', 'caption': 'A stop sign that has been damaged by graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082662.jpg', 'caption': 'The large red stop sign is hanging up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050355.jpg', 'caption': 'a bunch of cars that are paying a toll', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050355.jpg', 'caption': 'A wide toll booth along a large freeway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050355.jpg', 'caption': 'there are many cars that are passing threw the traffic toll', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050355.jpg', 'caption': 'A group of toll booths with a vehicle passing through.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050355.jpg', 'caption': 'A toll road with lots of separate booths sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245174.jpg', 'caption': 'a person standing next to a stop sign on a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245174.jpg', 'caption': 'An old man holds a stop sign beside a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245174.jpg', 'caption': 'A man is in front of a tree with a stop sign on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245174.jpg', 'caption': 'An older man frowns next to a homemade stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245174.jpg', 'caption': 'A man posing with his hand made stop sign by a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044045.jpg', 'caption': 'a bicycle leaning against a stop and a yellow car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044045.jpg', 'caption': 'A bicycle sitting at the base of a stop sign with a one way sign on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044045.jpg', 'caption': 'A bicycle parked at a stop sign on the corner of a one way street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044045.jpg', 'caption': 'A bicycle leaned up on a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044045.jpg', 'caption': 'A bicycle is leaning against a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454561.jpg', 'caption': 'A train that is on the tracks next to the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454561.jpg', 'caption': 'Train on tracks with grassy knolls and trees with cloudy sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454561.jpg', 'caption': 'A train is traveling down the tracks in the forest area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454561.jpg', 'caption': 'A very long train traveling through a lush green hillside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454561.jpg', 'caption': 'A long train on a narrow train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241141.jpg', 'caption': 'The street sign says \"Can\\'t Stop The Dance\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241141.jpg', 'caption': 'A traffic sign and another sign on a pole near the curb and parked cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241141.jpg', 'caption': \"A sign that says Can't stop the dance on a street pole.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241141.jpg', 'caption': 'A black and white sign that reads \"can\\'t stop the dance.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241141.jpg', 'caption': 'A humorous street sign is seen on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092205.jpg', 'caption': 'Construction worker holding a stop sign on the side of a road on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092205.jpg', 'caption': 'A road construction worker holding up a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092205.jpg', 'caption': 'a construction worker holding a red and white stop sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092205.jpg', 'caption': 'A flagger on the side of the street holding a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092205.jpg', 'caption': 'A man in a neon green vest is holding a stop sign on the newly paved road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067255.jpg', 'caption': 'A red stop sign sitting above a four way sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067255.jpg', 'caption': 'Four way stop sign at street intersection and two street signs above', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067255.jpg', 'caption': 'a stop sign on the side walk of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067255.jpg', 'caption': 'A four-way stop sign is at the corner of Delta and Bridge Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067255.jpg', 'caption': 'A four way stop sign in a nonresidential area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258078.jpg', 'caption': 'A young boy standing next to a yellow bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258078.jpg', 'caption': 'A young boy eats something in front of a bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258078.jpg', 'caption': 'A small boy standing next to a bike and a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258078.jpg', 'caption': 'A young boy standing by a bicycle leaning on a parking meter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258078.jpg', 'caption': 'A boy stands beside a bicycle parked by a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038186.jpg', 'caption': 'A truck that is next to a curb with coin meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038186.jpg', 'caption': 'some parking meters a street buildings and a black truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038186.jpg', 'caption': 'A truck parked on the street beside a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038186.jpg', 'caption': 'Pick up truck with peeling paint parked next to a parking meter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038186.jpg', 'caption': 'a city street with parking meters and one old pickup truck parked in the background a building with a gold dome', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050952.jpg', 'caption': 'Two boats floating on top of a river next to a rock mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050952.jpg', 'caption': 'people on a small boat in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050952.jpg', 'caption': 'A group of people traveling on a boat with a cave in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050952.jpg', 'caption': 'People in the water on a boat near a cave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050952.jpg', 'caption': 'A group of people in a boat sitting in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376046.jpg', 'caption': 'A train being pulled by an orange engine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376046.jpg', 'caption': 'An old train on the rail line next to an open field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376046.jpg', 'caption': 'An orange engine at the beginning of a train. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376046.jpg', 'caption': 'An orange train traveling down train tracks through a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376046.jpg', 'caption': 'A large moving vehicle, shaped like a train, is traveling down the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502397.jpg', 'caption': 'A person puts money into a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502397.jpg', 'caption': \"A person's hand leaning on a parking meter.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502397.jpg', 'caption': 'a hand resting on a parking meter and a black car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502397.jpg', 'caption': 'Parking meter on sidewalk with hand resting on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502397.jpg', 'caption': 'A gentleman waits expectantly at a parking meter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181836.jpg', 'caption': 'A man walking without a shirt past an orange cone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181836.jpg', 'caption': 'A painted man is walking across the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181836.jpg', 'caption': 'A large man wearing ties as a skirt and skin painted orange.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181836.jpg', 'caption': 'A man is walking down the street covered in ties', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181836.jpg', 'caption': 'A person standing by a cone on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422432.jpg', 'caption': 'A pickup truck parked on a street near a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422432.jpg', 'caption': 'The people are walking by the red truck on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422432.jpg', 'caption': 'there is a small red pick up truck parked at the corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422432.jpg', 'caption': 'people line the sidewalk and streets of a run down town', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422432.jpg', 'caption': 'A red pickup truck parked next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171695.jpg', 'caption': 'A number of tourists atop two colorful trucks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171695.jpg', 'caption': 'a truck with a bunch of people in back of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171695.jpg', 'caption': 'The people in the truck are riding in the parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171695.jpg', 'caption': 'People standing in the back of trucks while going down a street in a parade', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171695.jpg', 'caption': 'Several people are standing in the flatbed of a truck during a parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079816.jpg', 'caption': 'A red truck parked on top of a dirty ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079816.jpg', 'caption': 'A dusty old pick up truck sits on a cliff by the sea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079816.jpg', 'caption': 'A four door Nissan pickup parked near the water with equipment on the roof and in the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079816.jpg', 'caption': 'A truck parked in the dirt near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079816.jpg', 'caption': \"A truck with it's door open parked at the waters edge.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300994.jpg', 'caption': 'A birthday cake is shaped like a fire truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300994.jpg', 'caption': 'A cake made to look like a fire truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300994.jpg', 'caption': 'The birthday cake has a fire engine and 4 year olds name.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300994.jpg', 'caption': 'A birthday cake shaped like a fire truck\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300994.jpg', 'caption': 'A birthday cake decorated with a red fire truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304917.jpg', 'caption': 'a dump truck carrying a car a building and a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304917.jpg', 'caption': 'A picture of multiple cars driving on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304917.jpg', 'caption': 'A dump truck with a car in the back drives down a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304917.jpg', 'caption': 'a garbage truck with the back of a car sticking out of the back of the garbage truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304917.jpg', 'caption': 'a station wagon being carried in the back of a truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143974.jpg', 'caption': 'A cow walking across a river as a boat approaches on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143974.jpg', 'caption': 'A black cow walking across a stream. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143974.jpg', 'caption': 'A boat is traveling down a river with a cow crossing the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143974.jpg', 'caption': 'a cow in the waters and boat sailing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143974.jpg', 'caption': 'A boat is traveling on a river past a cow that is in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090366.jpg', 'caption': 'A dog sitting on the grass looking at a fake cow that is lit up at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090366.jpg', 'caption': 'A dog looking at a statue of a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090366.jpg', 'caption': 'A dog sitting in the grass watching a cow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090366.jpg', 'caption': 'A black and white cow is looking through a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090366.jpg', 'caption': 'A dog faces a light up cow ornament.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497791.jpg', 'caption': \"The old tow truck tries to lift an overturned truck that's on it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497791.jpg', 'caption': 'People looking at an over turned tractor trailer on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497791.jpg', 'caption': \"A bus knocked over on it's side on a snow covered mountain.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497791.jpg', 'caption': \"Black and white of large dump truck on its side with a small tow truck backed up to it, with some people standing around, and backs of people's heads from above the scene, with background of a valley and a mountain side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497791.jpg', 'caption': 'a truck is turned over by the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099540.jpg', 'caption': 'a lift truck sits parked next to a pine tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099540.jpg', 'caption': 'Safety cones protect a parked utility truck with crane on a roadside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099540.jpg', 'caption': 'Truck with cones around it with a cherry picker on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099540.jpg', 'caption': 'A large cherry pickers truck is parked in a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099540.jpg', 'caption': 'A large white hydraulic truck near pine trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421206.jpg', 'caption': 'The black and white cat lies next to a pair of sneakers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421206.jpg', 'caption': 'A black and white cat rubbing against a pair of sneakers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421206.jpg', 'caption': 'A black and white cat laying on a pair of shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421206.jpg', 'caption': 'A cat lying on the floor playing with a pair of sneakers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421206.jpg', 'caption': 'A cat is lying beside a pair of puma shoes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446460.jpg', 'caption': 'Green dump truck with a yellow bed sitting on a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446460.jpg', 'caption': 'A picture of a big games bagels truck thats stuck in a traffic jam. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446460.jpg', 'caption': 'A large semi truck is shown parked in a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446460.jpg', 'caption': 'A truck moving along in heavy traffic down an incline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446460.jpg', 'caption': 'An older large green and yellow trash truck driving down a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168698.jpg', 'caption': 'A gray cat laying inside an opened suit case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168698.jpg', 'caption': 'Cat lying in an empty suit case, for attention.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168698.jpg', 'caption': 'A cat is sitting inside of a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168698.jpg', 'caption': 'A cat laying on top of a piece of empty green luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168698.jpg', 'caption': 'a cat laying in an open bag of luggage ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143533.jpg', 'caption': 'A herd of white cows on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143533.jpg', 'caption': 'A group of cows in a fenced in field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143533.jpg', 'caption': 'A group of cows mill about on a grassy pasture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143533.jpg', 'caption': 'a number of cows sitting near one another in a field of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143533.jpg', 'caption': 'A number of white cattle standing in a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076155.jpg', 'caption': 'A hairy brown cow laying on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076155.jpg', 'caption': 'A highland cow lies in the grass in the sun next to a large group of goats. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076155.jpg', 'caption': 'A ram animal with horns is laying in the very green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076155.jpg', 'caption': 'A shaggy, brown, long horned bull lays in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076155.jpg', 'caption': 'A long horn cow resting in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581717.jpg', 'caption': 'An adorable cat hiding out in luggage that is left open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581717.jpg', 'caption': 'A picture of a cat hiding inside a full suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581717.jpg', 'caption': 'A white cat is hiding in a bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581717.jpg', 'caption': 'A cat with big eyes sitting inside a suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581717.jpg', 'caption': 'A cat peeking out from inside a closed suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366679.jpg', 'caption': 'A very attractive woman holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366679.jpg', 'caption': 'A tennis player with racquet raised has a shadow of a cat by her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366679.jpg', 'caption': \"A tennis player about to serve, but instead of a ball, it's a cat.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366679.jpg', 'caption': 'A woman with a tennis racket looking up at the cat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366679.jpg', 'caption': 'a woman with a tennis player holding a racket with a cat in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350084.jpg', 'caption': 'A dump truck parked by the side of a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350084.jpg', 'caption': 'A white Mack truck parked beside the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350084.jpg', 'caption': 'a truck parked on the side on a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350084.jpg', 'caption': 'A dump truck is parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350084.jpg', 'caption': 'A large dump truck at a construction site ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356507.jpg', 'caption': 'A yellow dump truck parked on a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356507.jpg', 'caption': 'A large dirty yellow truck, parked in a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356507.jpg', 'caption': 'A large yellow dump truck parked and empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356507.jpg', 'caption': 'A large yellow dump truck is sitting parked', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356507.jpg', 'caption': 'A yellow truck is hauling a load off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575624.jpg', 'caption': 'A group of cows relaxing in the grass in front of a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575624.jpg', 'caption': 'This is an image of a barn with several cows in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575624.jpg', 'caption': 'The cattle are lying in the green pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575624.jpg', 'caption': 'A herd of cows laying in a field by a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575624.jpg', 'caption': 'horses laying down on the grass beside trees and a barn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103272.jpg', 'caption': 'A construction truck parked near a storage shed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103272.jpg', 'caption': 'A dump truck sitting by a barn surrounded by overgrowth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103272.jpg', 'caption': 'An old dump truck sitting with grass growing around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103272.jpg', 'caption': 'A dump truck that is parked on some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103272.jpg', 'caption': 'a parked truck sits next to a shed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217383.jpg', 'caption': 'A white semi truck parked on a large muddy puddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217383.jpg', 'caption': 'An old truck sits in the mud next to a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217383.jpg', 'caption': 'A large truck is parked in a muddy field next to a camouflage truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217383.jpg', 'caption': 'An old Mack truck parked in a muddy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217383.jpg', 'caption': 'A large white mack truck parked in a muddy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121547.jpg', 'caption': 'A dog carrying packs on his back while being walked. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121547.jpg', 'caption': 'a dog is carrying a blue back pack and some brown leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121547.jpg', 'caption': 'A dog carrying two pouches stands in a patch of leaves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121547.jpg', 'caption': 'A dog has two pouches on his back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121547.jpg', 'caption': 'a beagle with a blue pack on walking through leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223342.jpg', 'caption': 'A orange tractor sitting on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223342.jpg', 'caption': 'A snowplow truck with two snowplows on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223342.jpg', 'caption': 'Farm equipment truck in a field near a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223342.jpg', 'caption': 'an image of a truck with the scaffolding ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223342.jpg', 'caption': 'The yellow earth mover sits in the field in front of the pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361923.jpg', 'caption': 'A green truck with a snow plow next to a yellow vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361923.jpg', 'caption': 'A big green dump truck with a plow clearing out some snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361923.jpg', 'caption': 'there is a green truce that is cleaning snow off the roads ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361923.jpg', 'caption': 'A large truck is in the snow next to a Clark truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361923.jpg', 'caption': 'A green dump truck sitting next to a yellow tractor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450404.jpg', 'caption': 'A huge dump truck is fenced in in front of a neighborhood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450404.jpg', 'caption': 'a yellow dump truck in a fenced in area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450404.jpg', 'caption': 'a very large dump truck on display surrounded by a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450404.jpg', 'caption': 'A construction truck is surrounded by a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450404.jpg', 'caption': 'A large dump truck surrounded by a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313623.jpg', 'caption': 'The trucks are all parked closely together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313623.jpg', 'caption': 'Two large trucks next to each other in a parking lot ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313623.jpg', 'caption': 'A large white truck parked beside several buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313623.jpg', 'caption': 'A large utility truck butted up against a large white piece of equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313623.jpg', 'caption': 'A large white construction truck parked in a lot area in front of a building supply store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414487.jpg', 'caption': 'A cat laying in a leather chair near a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414487.jpg', 'caption': 'A cat is sitting in a black leather desk chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414487.jpg', 'caption': 'a cat in an office sitting on a chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414487.jpg', 'caption': 'A cat is sitting in a black chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414487.jpg', 'caption': 'A long-haired cat sits on a black leather desk chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472399.jpg', 'caption': 'A vase of flowered branches sitting on a chair in a backyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472399.jpg', 'caption': 'A cat under a white chair that has a mason jar with flowers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472399.jpg', 'caption': 'A white tray with a vase holding flowers over a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472399.jpg', 'caption': 'A cat sits under a chair with flowers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472399.jpg', 'caption': 'A cat standing under a metal chair that is placed in a yard and has a vase of flowers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080757.jpg', 'caption': 'An orange tabby cat is curled up fast asleep on the top of a sofa cushion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080757.jpg', 'caption': 'An orange tiger striped cat sleeping on the back of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080757.jpg', 'caption': 'A cat asleep on the back of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080757.jpg', 'caption': 'THERE IS A ADULT CAT SLEEPING ON THE COUCH', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080757.jpg', 'caption': 'A tabby cat sleeping on a beige couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436676.jpg', 'caption': 'A person and a black cat are on a brown couch with a colorful blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436676.jpg', 'caption': 'A person laying on a couch with a cat laying in their arms, covering part of the face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436676.jpg', 'caption': 'A woman is holding a cat while she lays on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436676.jpg', 'caption': \"Girl holding cat on couch while cat's eyes are closed\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436676.jpg', 'caption': 'A woman on a couch with a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329940.jpg', 'caption': 'Two large concrete trucks parked near a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329940.jpg', 'caption': 'Two cement trucks travel down the middle of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329940.jpg', 'caption': 'Two cement mixing trucks parked in a wet lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329940.jpg', 'caption': 'These two large cement trucks are in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329940.jpg', 'caption': 'Two cement trucks parked alongside one another on the pavement', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472540.jpg', 'caption': 'three orange and white trucks and an orange building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472540.jpg', 'caption': 'A number of large trucks are parked near an industrial building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472540.jpg', 'caption': 'A trio of cement mixers back under the chute.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472540.jpg', 'caption': 'A construction area with various trucks and loading machinery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472540.jpg', 'caption': 'two large trucks are loading gravel at a worksite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577223.jpg', 'caption': 'A large semi truck delivers food to the store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577223.jpg', 'caption': 'a large truck is parked in a lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577223.jpg', 'caption': 'A truck that is sitting in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577223.jpg', 'caption': 'A semi truck is parked beside In-N-Out restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577223.jpg', 'caption': 'a semi truck with the in n out logo on the side of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262626.jpg', 'caption': 'A cat looks off the edge of a made up bed that has blue pillows and a floral pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262626.jpg', 'caption': 'There is a black cat sitting on the edge of the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262626.jpg', 'caption': 'A bed has a brown cover, blue pillows and a floral decorative pillow and a black cat sits on the edge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262626.jpg', 'caption': 'a black cat seated on the edge of a neatly made bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262626.jpg', 'caption': 'a cat sitting on a neatly made bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394251.jpg', 'caption': 'A fleet of semi trucks driving through orange traffic cones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394251.jpg', 'caption': 'A semi truck is driving through orange cones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394251.jpg', 'caption': 'a man walking up to a semi parked in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394251.jpg', 'caption': 'A couple of parked trucks in the parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394251.jpg', 'caption': 'Semi trucks on a parking lot with orange cones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465868.jpg', 'caption': 'A gray cat standing on top of a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465868.jpg', 'caption': 'A gray fluffy cat staring in a dirt and weedy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465868.jpg', 'caption': 'A grey cat with the camera flash caught in its eyes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465868.jpg', 'caption': 'A gray cat standing near some plants close to the fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465868.jpg', 'caption': 'A cat that is standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574665.jpg', 'caption': 'A cement truck sitting next to a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574665.jpg', 'caption': 'A cement mixing truck parked in front of a concrete wall on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574665.jpg', 'caption': 'Parked cement truck parked near a stack of large concrete blocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574665.jpg', 'caption': 'A cement truck that has the number seventy one on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574665.jpg', 'caption': 'A cement truck is parked next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259879.jpg', 'caption': 'A cat sitting on a window sill in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259879.jpg', 'caption': 'a cat sitting in a window area with a pair of gloves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259879.jpg', 'caption': 'A pair of blue gloves sitting on top of a window sill next to a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259879.jpg', 'caption': 'A cat sitting on a window sill next to a pair of blue gloves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259879.jpg', 'caption': 'A cat sitting in a bathroom window by some cleaning gloves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205054.jpg', 'caption': 'A grey cat laying down on a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205054.jpg', 'caption': 'A cat laying on a desk in front of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205054.jpg', 'caption': 'A gray cat lying on top of a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205054.jpg', 'caption': 'A cat laying on a desk in a home office ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205054.jpg', 'caption': 'A fat cat laying on the edge of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238459.jpg', 'caption': 'A cow standing on a mount of rock filled dirt next to a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238459.jpg', 'caption': 'Some cows standing in an open outside area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238459.jpg', 'caption': 'A cow standing next to a body of water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238459.jpg', 'caption': 'Several cows graze in the countryside as nightfall nears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238459.jpg', 'caption': 'A herd of scattered cattle graze through a large field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565186.jpg', 'caption': 'a blue and silver truck with logs trees and wires', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565186.jpg', 'caption': 'A truck is carrying some huge tree trunks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565186.jpg', 'caption': 'A large blue truck hauling many long logs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565186.jpg', 'caption': 'A large truck has large logs on its bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565186.jpg', 'caption': 'A large truck is stacked with cut wooden logs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232453.jpg', 'caption': 'A large green and yellow truck parked next to a similar green and yellow truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232453.jpg', 'caption': 'A green and yellow dump truck backing into a garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232453.jpg', 'caption': 'A truck waiting in front of the warehouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232453.jpg', 'caption': 'a green and yellow truck with a cloudy sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232453.jpg', 'caption': 'The two large trucks are painted green and yellow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464286.jpg', 'caption': 'Several cows stick their heads out of a pen to feed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464286.jpg', 'caption': 'Cows are being feed hay while being put in cages', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464286.jpg', 'caption': 'a number of cows in cages eating hay on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464286.jpg', 'caption': 'A herd of cattle grazing on hay inside of a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464286.jpg', 'caption': 'Cows strain their necks for hay in between posts of a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291404.jpg', 'caption': 'A white truck with a shovel attached to the front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291404.jpg', 'caption': 'a white truck with a snow plow attached to its front bumper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291404.jpg', 'caption': 'A man driving a truck with a snowplow .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291404.jpg', 'caption': 'There is a snow plow driving in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291404.jpg', 'caption': 'A snow shovel is attached to the front of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235131.jpg', 'caption': 'A harbor with various boats and people walking up stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235131.jpg', 'caption': 'many small boats in a harbor in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235131.jpg', 'caption': 'People enjoying boating in the river.Many motorboats and passengers seen at the river bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235131.jpg', 'caption': 'boats parked at a dock in water and many people in the background', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000365652.jpg', 'caption': 'a person sitting on a bike near many other parked bikes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365652.jpg', 'caption': 'A group of men riding on the backs of motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365652.jpg', 'caption': 'Three motorcycles parked next to each other with two men on one. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365652.jpg', 'caption': 'Two men on motorcycles in front of building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365652.jpg', 'caption': 'Three men admiring motorcycles in a sidewalk exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189634.jpg', 'caption': 'This is an open box containing four cucumbers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189634.jpg', 'caption': 'An open food container box with four unknown food items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189634.jpg', 'caption': 'A small box filled with four green vegetables. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189634.jpg', 'caption': 'An opened box of four chocolate bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189634.jpg', 'caption': 'An open box contains an unknown, purple object', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567686.jpg', 'caption': 'A keyboard and mouse along with other items on the desk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567686.jpg', 'caption': 'A white computer mouse is sitting next to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567686.jpg', 'caption': 'A computer mouse, keyboard and various office items on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567686.jpg', 'caption': 'A keyboard, a mouse, some pens and a mug on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567686.jpg', 'caption': 'A computer keyboard sitting next to a mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533900.jpg', 'caption': 'A wooden bathroom with a wooden toilet next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533900.jpg', 'caption': 'There is a wooden bench in a wooden room with a window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533900.jpg', 'caption': 'A wooden outhouse has a pretty white window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533900.jpg', 'caption': 'An outhouse is shown with a toilet and window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533900.jpg', 'caption': 'A wooden bench in a room made of wood with a white, painted window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465424.jpg', 'caption': 'A group of bikers sitting out in front of a store near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465424.jpg', 'caption': 'Street view of a group of bikers and their motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465424.jpg', 'caption': 'Several motorcycles parked on a street near a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465424.jpg', 'caption': 'A group of motorcycles and a crowd of people on a small town street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465424.jpg', 'caption': 'A group of motorcycles and people are parked out on the street in front of a pizza restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232488.jpg', 'caption': 'Two young men are looking at a computer screen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232488.jpg', 'caption': 'The two men sit at the table of the conference room at a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232488.jpg', 'caption': 'Two men are at a large desk with a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232488.jpg', 'caption': 'Two men at a conference table with a laptop computer and speaker phone in front of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232488.jpg', 'caption': 'Two people look at a computer screen together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059532.jpg', 'caption': 'mopeds parked in a parking garage with a green floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059532.jpg', 'caption': 'A couple of motor bikes parked on top of a green surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059532.jpg', 'caption': 'A lot of scooters parked indoors on a green floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059532.jpg', 'caption': 'A parking garage, with a green painted floor, full of scooters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059532.jpg', 'caption': 'Scooters parked in numbered parking spots in the garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537611.jpg', 'caption': 'a very used and dirty harley davidson motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537611.jpg', 'caption': 'A mud covered motor cycle parked by some stairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537611.jpg', 'caption': 'A motorcycle is by some brown brick steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537611.jpg', 'caption': 'Large black motorcycle parked near a set of brick stairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537611.jpg', 'caption': 'A parked motorcycle in front of a brick stair case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425151.jpg', 'caption': 'Bright room with a couch and various different dressers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425151.jpg', 'caption': 'A room filled with furniture with hard wood floors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425151.jpg', 'caption': 'A couch, a mirror and some cabinets in an open room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425151.jpg', 'caption': 'A couch and mirror in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425151.jpg', 'caption': 'A living room has a couch, decorations, and some tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242870.jpg', 'caption': 'The black and white silhouette of a motorcycle near water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242870.jpg', 'caption': 'a motor bike sits parked on a rocky hill ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242870.jpg', 'caption': 'The motor cycle is setting on the hill over looking the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242870.jpg', 'caption': 'A motorcycle parked on the grass near water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242870.jpg', 'caption': 'A lone motorcycle parked along side a ridge top with the sun coming up behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080260.jpg', 'caption': 'Three people on a motorcycle in the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080260.jpg', 'caption': 'The man is holding a child on the back of the motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080260.jpg', 'caption': 'Three people sit on a small red motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080260.jpg', 'caption': 'a couple of people are riding on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080260.jpg', 'caption': 'Two people riding on the back of a red motorcycle and city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348091.jpg', 'caption': 'A bedroom with a bed next to a closet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348091.jpg', 'caption': 'a red desk chair in a small room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348091.jpg', 'caption': 'A bedroom with cloths hanging up on the back of a door and wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348091.jpg', 'caption': 'A view of a small room that has a bed desk and chair in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348091.jpg', 'caption': 'A bunch of jackets hanging on the all in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061862.jpg', 'caption': 'A person is looking in the mirror of a motor bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061862.jpg', 'caption': 'A woman looks into the mirror of her motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061862.jpg', 'caption': 'A young woman taking a photo of herself in the side mirror of a motorcycle parked by an outdoor market. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061862.jpg', 'caption': 'a close up of a person in the reflection of a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061862.jpg', 'caption': 'a girl looking in a mirror holding a camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208169.jpg', 'caption': 'A large number of people riding motorcycles down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208169.jpg', 'caption': 'A lot of motorcycles and riders in formation riding down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208169.jpg', 'caption': 'A group of motorcycle riders going through the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208169.jpg', 'caption': 'Large number of motorcycles riding down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208169.jpg', 'caption': 'A large group of motorcyclists are driving down a wide road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126606.jpg', 'caption': 'Group of motorcycle riders looking over traffic on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126606.jpg', 'caption': 'Several people wearing jackets with foreign writing and motorcycle helmets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126606.jpg', 'caption': 'A bang of bikers sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126606.jpg', 'caption': 'A small group of motorcyclists stand next to a motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126606.jpg', 'caption': 'The police officers are standing on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578485.jpg', 'caption': 'A empty living room with hard wood flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578485.jpg', 'caption': 'A stove is in a kitchen next to an empty room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578485.jpg', 'caption': 'The hallway has dark hard wood for floors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578485.jpg', 'caption': 'A room with a wooden floor and no furniture in view leads into a hallway that is painted yellow and features a white stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578485.jpg', 'caption': 'Small kitchen with white appliances and white cabinets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021060.jpg', 'caption': 'The computer desk has a small pad of notes, and an mp3 player on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021060.jpg', 'caption': 'A computer monitor sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021060.jpg', 'caption': 'A computer monitor sitting on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021060.jpg', 'caption': 'A desk holds a computer, speakers, and sticky notes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021060.jpg', 'caption': 'a computer that is on a wooden desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310407.jpg', 'caption': 'A man watching a single engine plane make an approach to land.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310407.jpg', 'caption': 'A small plane lowers its landing gear and readies itself to land.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310407.jpg', 'caption': 'A man watching a plane in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310407.jpg', 'caption': 'A man who is looking at an airplane that is flying.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310407.jpg', 'caption': 'Man watching a light aircraft coming in to land', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350073.jpg', 'caption': 'a couple of planes are out on a runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350073.jpg', 'caption': 'A large jetliner sitting on top of an airport runway as the sun rises.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350073.jpg', 'caption': 'two jets and a bus and an airports runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350073.jpg', 'caption': 'To planes parked on a landing strip & blue skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350073.jpg', 'caption': 'A couple of planes getting ready to take off on a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394131.jpg', 'caption': 'Lufthansa has been a recognizable airline for many years.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394131.jpg', 'caption': 'A plane going down a runway right before sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394131.jpg', 'caption': 'An airplane riding on a runway in front of an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394131.jpg', 'caption': 'The plane is parked in the runway of the airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394131.jpg', 'caption': 'A plain waits on the tarmac at dawn or dusk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001029.jpg', 'caption': 'A large jet flying through a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001029.jpg', 'caption': 'Some barbed wire up close and an airplane taking off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001029.jpg', 'caption': 'A airplane flies into the clouds with a barbed wire fence in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001029.jpg', 'caption': 'An airplane is shown taking off into the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001029.jpg', 'caption': 'a plane flying high in the sky on a cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054766.jpg', 'caption': 'Two men watch as yellow aircraft flies over a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054766.jpg', 'caption': 'Two men in black jackets near water and a yellow plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054766.jpg', 'caption': 'Two men watching a remove controlled air plane fly over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054766.jpg', 'caption': 'Two guys looking at a remote control plane flying over some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054766.jpg', 'caption': 'Two people stand at the edge of a body of water looking at a plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132143.jpg', 'caption': 'a couple of big buildings that are next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132143.jpg', 'caption': 'A city street lined with lots of tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132143.jpg', 'caption': 'A view of a city corner, from the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132143.jpg', 'caption': 'A city street is lined with tall buildings on either side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132143.jpg', 'caption': 'A green traffic light at night on a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043376.jpg', 'caption': 'A giraffe looks out over a tall fence with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043376.jpg', 'caption': 'A giraffe looks up over an outdoor fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043376.jpg', 'caption': 'A giraffe standing in the shade looking down at something. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043376.jpg', 'caption': 'A big giraffe is looking over a big gate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043376.jpg', 'caption': 'A very cute giraffe by a metal fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140908.jpg', 'caption': 'A pair of stuffed animals sitting on a bench in front of lake Michigan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140908.jpg', 'caption': 'Two stuffed animals are sitting on the park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140908.jpg', 'caption': 'A couple of stuffed animals on a bench by a walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140908.jpg', 'caption': 'Two stuffed animals are sitting on a bench on a waterfront.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140908.jpg', 'caption': 'A couple of stuffed animals sitting on a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062865.jpg', 'caption': 'three giraffe stretching there necks to reach high leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062865.jpg', 'caption': 'A group of giraffes grazing on leaves off of trees in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062865.jpg', 'caption': 'A group of giraffes eating leaves off trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062865.jpg', 'caption': 'A group of giraffe standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062865.jpg', 'caption': 'A few giraffes are standing on dirt by some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213475.jpg', 'caption': 'A street scene in the evening with a lone car and traffic light showing red.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213475.jpg', 'caption': 'A red stoplight that is on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213475.jpg', 'caption': 'Street lights on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213475.jpg', 'caption': 'There is a red light at the intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213475.jpg', 'caption': 'A car sits by the corner as some people stand by it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021202.jpg', 'caption': 'cars that are stopped at a traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021202.jpg', 'caption': 'a traffic light on the road with many vehicle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021202.jpg', 'caption': 'A busy street with many cars, buildings and stop light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021202.jpg', 'caption': 'a big street with houses all around it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021202.jpg', 'caption': 'A red light over a city street in a neighborhood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499983.jpg', 'caption': 'A traffic light made of chrome sitting on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499983.jpg', 'caption': 'A stylized photo of a traffic light at an intersection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499983.jpg', 'caption': 'A traffic light that is on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499983.jpg', 'caption': 'Overhead view of traffic lights on pole above top of building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499983.jpg', 'caption': 'A drawing of a traffic signal that points in several directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035148.jpg', 'caption': 'there are cars coming down the street to a green light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035148.jpg', 'caption': 'The traffic is speeding through the wet streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035148.jpg', 'caption': 'A city street filled with traffic surrounded by buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035148.jpg', 'caption': 'Cars riding on the road through a green light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035148.jpg', 'caption': 'There are cars moving down an empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487095.jpg', 'caption': 'Giraffes and zebra watching a zookeeper in their enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487095.jpg', 'caption': 'A couple of giraffe standing next to a zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487095.jpg', 'caption': 'A zoo keeper walks away as a zebra and giraffes follow her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487095.jpg', 'caption': 'A pair of giraffes and a zebra lounging in a habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487095.jpg', 'caption': 'A woman walking on a stone wall near two giraffes and a zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364589.jpg', 'caption': 'A couple of zebra walking next to a giraffe on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364589.jpg', 'caption': 'A couple of zebra and a giraffe on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364589.jpg', 'caption': 'Two zebras and a giraffe are walking in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364589.jpg', 'caption': 'a couple of zebras walk next to a giraffe ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364589.jpg', 'caption': 'A giraffe and two zebras walking on a hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493695.jpg', 'caption': 'A city street filled with traffic at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493695.jpg', 'caption': 'A blurry image with lights and cars in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493695.jpg', 'caption': 'A blurry view of a street with many lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493695.jpg', 'caption': 'Many lights can be seen on the street in the blurry image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493695.jpg', 'caption': 'A blurry image of an urban street at dusk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332502.jpg', 'caption': 'An airplane crossing above a metal structure on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332502.jpg', 'caption': 'A ferris wheel sits while a plane flys overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332502.jpg', 'caption': 'A carnival ride with riders on it viewing a plane up in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332502.jpg', 'caption': 'An airplane is flying in a cloudy white sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332502.jpg', 'caption': 'A airplane flying in the sky above a structure and below the clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321424.jpg', 'caption': 'A small aircraft parked on a grass field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321424.jpg', 'caption': 'a small aircraft parked in grassy field with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321424.jpg', 'caption': 'A plane sitting in the middle of a field.It appears to be an older propeller plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321424.jpg', 'caption': 'a green black and white airplane on a grass field and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321424.jpg', 'caption': 'A small airplane parked in the middle of a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494179.jpg', 'caption': 'A single engine plane in the air right above a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494179.jpg', 'caption': 'A small airplane takes off on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494179.jpg', 'caption': 'A white small plane flying over a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494179.jpg', 'caption': 'The small turboprop airplane lifts off the runway on takeoff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494179.jpg', 'caption': 'A plane takes off over a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252292.jpg', 'caption': 'A city street with cabs, people and traffic lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252292.jpg', 'caption': 'A very busy and congested street full of taxi cabs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252292.jpg', 'caption': 'There are plenty of taxis waiting in the street to pick up a fare. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252292.jpg', 'caption': 'An extremely busy city street with many cabs, cars, and people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252292.jpg', 'caption': 'Taxis get jammed up on the busy street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539310.jpg', 'caption': 'A traffic light sitting above a street with vehicles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539310.jpg', 'caption': 'Traffic on a street with a green traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539310.jpg', 'caption': 'A car sitting at an intersection with both red and green lights on ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539310.jpg', 'caption': 'A view from the windshield of a car shows a street with traffic, lights, and buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539310.jpg', 'caption': 'A car that is stopped at three street lights. People are waiting to cross the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132578.jpg', 'caption': 'A cat laying on a bed by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132578.jpg', 'caption': 'A kitten sleeping on a perch in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132578.jpg', 'caption': 'A cat rests in front of the sunlight coming through the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132578.jpg', 'caption': 'A cat is sleeping on a large bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132578.jpg', 'caption': 'A black and white cat laying on a seat next to windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398007.jpg', 'caption': 'A city with many people waiting for a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398007.jpg', 'caption': 'People standing in a long line at a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398007.jpg', 'caption': 'A line of people stand against a fence by tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398007.jpg', 'caption': 'many people standing on one side of a train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398007.jpg', 'caption': 'A intersection crossed by train tracks is crowded with people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328368.jpg', 'caption': 'an old man with a white dog on a leash and a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328368.jpg', 'caption': 'A man is walking his poodle as the poodle stops to rest against a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328368.jpg', 'caption': 'MAN WALKING HIS DOG STOPPING AT A BENCH', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328368.jpg', 'caption': 'old man walks small white dog down the street near bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328368.jpg', 'caption': 'A man walking his dog next to a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418933.jpg', 'caption': 'a stuffed animal and a figurine are sitting on a bench and water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418933.jpg', 'caption': 'A wooden bench with stuffed animals sitting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418933.jpg', 'caption': 'A stone bench sitting in front of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418933.jpg', 'caption': 'A stuffed animal on bench at the beach with a building behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418933.jpg', 'caption': 'Stuffed animals left out on the bench at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505967.jpg', 'caption': 'An intersection on the strip in Las Vegas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505967.jpg', 'caption': 'Cars whizzing by on the traffic filled street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505967.jpg', 'caption': 'A number of vehicles in a busy road with traffic lights in a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505967.jpg', 'caption': 'A street filled with lots of car traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505967.jpg', 'caption': 'Several cars at an intersection during the day in Las Vegas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226801.jpg', 'caption': 'A train traveling down tracks next to a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226801.jpg', 'caption': 'a green train is riding down a set of tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226801.jpg', 'caption': 'a passenger train goes along some train tracks in front of a highway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226801.jpg', 'caption': 'A green train travels on the tracks through the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226801.jpg', 'caption': 'A green and white train on tracks with water in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322824.jpg', 'caption': 'A one way sign that is on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322824.jpg', 'caption': 'A black and white picture of a traffic signal in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322824.jpg', 'caption': 'A black and white image of some buildings and a street light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322824.jpg', 'caption': 'Intersection with traffic signals in large metropolitan area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322824.jpg', 'caption': 'Traffic lights in front of large buildings with a one way sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477705.jpg', 'caption': 'An empty street with two street lights placed next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477705.jpg', 'caption': 'street lights showing red and yellow near a bike lane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477705.jpg', 'caption': 'Stop lights outside beside the bike lane on a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477705.jpg', 'caption': 'bike lane near sidewalk with traffic control lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477705.jpg', 'caption': 'Two traffic lights on a sidewalk near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330754.jpg', 'caption': 'A man and woman in western clothing standing in front of a trailer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330754.jpg', 'caption': 'A couples posts for a picture in front of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330754.jpg', 'caption': 'A man and woman in western attire pose in front of a coach bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330754.jpg', 'caption': 'A man and a woman standing in front of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330754.jpg', 'caption': 'Two people are leaning against a motor coach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383053.jpg', 'caption': 'A person with a mask and other cover with umbrellas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383053.jpg', 'caption': 'People walking down the sidewalk with umbrella and bus passing by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383053.jpg', 'caption': 'People are walking in the rain while holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383053.jpg', 'caption': 'A man with a hideous mask on as a tour bus rides away.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383053.jpg', 'caption': 'A man wearing a mask on a sidewalk beside a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012268.jpg', 'caption': 'A purse is sitting on top of a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012268.jpg', 'caption': 'A gold purse shaped like a bus sitting on a kitchen counter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012268.jpg', 'caption': 'A gold colored purse designed like a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012268.jpg', 'caption': 'A purse is in the shape of a bus and is gold with flowers and rainbows on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012268.jpg', 'caption': 'there is a small gold bus purse on the counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559051.jpg', 'caption': 'Several giraffes are gathered around a tree stump near a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559051.jpg', 'caption': 'A herd of giraffe standing around a tree trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559051.jpg', 'caption': 'Group of giraffes standing next to cut up tree in grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559051.jpg', 'caption': 'Several baby and parent giraffes sitting around a cut down tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559051.jpg', 'caption': 'a group of giraffe standing next a pile of wood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376187.jpg', 'caption': 'A large American flag sitting on top of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376187.jpg', 'caption': 'The American flag is on top of the tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376187.jpg', 'caption': 'A street pole that has traffic lights and street signs on it, with a large building in the background that has an American flag flying from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376187.jpg', 'caption': 'An American flag flies on top of a tall building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376187.jpg', 'caption': 'a street sign is hanging on a pole outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040557.jpg', 'caption': 'a street light is hanging on a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040557.jpg', 'caption': 'Two traffic signals on a pole arm at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040557.jpg', 'caption': 'Traffic light hanging near power lines with trees in back. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040557.jpg', 'caption': 'A red light at a stop in front of some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040557.jpg', 'caption': 'A traffic light with a thirty one street sign next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365542.jpg', 'caption': 'a public transit bus parked on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365542.jpg', 'caption': 'A man taking a selfie with a bus in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365542.jpg', 'caption': 'an older man is posing in front of a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365542.jpg', 'caption': 'A double decker bus driving down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365542.jpg', 'caption': 'A yellow and orange double decker bus is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221543.jpg', 'caption': 'A clock displaying the time in a passenger bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221543.jpg', 'caption': 'A clock on the wall inside a mass transit vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221543.jpg', 'caption': \"A digital clock on a bus can be seen above people's heads.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221543.jpg', 'caption': 'A view of a a clock that reads 911 on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221543.jpg', 'caption': 'A clock on a bus shows the time is 9:11.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025244.jpg', 'caption': 'Their is a boy reading a book and sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025244.jpg', 'caption': 'A man reading a book on a bench on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025244.jpg', 'caption': ' a person sitting on a bench reading a book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025244.jpg', 'caption': 'A man sitting on top of a blue bench on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025244.jpg', 'caption': 'A man reading a book while on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154607.jpg', 'caption': 'An old, rickety wooden bench near the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154607.jpg', 'caption': 'A wooden bench that is by some trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154607.jpg', 'caption': 'A bench that is underneath trees in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154607.jpg', 'caption': 'a wood bench is next to some small trees outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154607.jpg', 'caption': 'a wood bench sitting under a tree at a park ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513778.jpg', 'caption': 'a big giraffe walks across a dirt road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513778.jpg', 'caption': 'The giraffe is crossing a road in front of a car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513778.jpg', 'caption': 'A giraffe is crossing a street with a car behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513778.jpg', 'caption': 'A giraffe walking across a country road surrounded by dry grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513778.jpg', 'caption': 'The very tall giraffe is walking across the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436162.jpg', 'caption': 'A white van parked in a parking lot next to a forest of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436162.jpg', 'caption': 'A medium size white tour bus waits for passengers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436162.jpg', 'caption': 'A small white passenger bus with the doors open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436162.jpg', 'caption': 'There is a small transportation bus with its doors open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436162.jpg', 'caption': 'A small bus parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450151.jpg', 'caption': 'A black and brown park bench in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450151.jpg', 'caption': 'A bench that is next to a walking path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450151.jpg', 'caption': 'A bench in the park on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450151.jpg', 'caption': 'An iron and wooden bench in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450151.jpg', 'caption': 'A bench in a park beside a walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027433.jpg', 'caption': 'The giraffe is sitting in the middle of the grass alone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027433.jpg', 'caption': 'Giraffe laying down in a field with other animals grazing in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027433.jpg', 'caption': 'a giraffe that is laying with his legs curled under him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027433.jpg', 'caption': 'A giraffe that is laying down in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027433.jpg', 'caption': 'a young giraffe lying down in a grassy field with small animals behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246530.jpg', 'caption': 'Two giraffes looking in opposite directions and crossing necks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246530.jpg', 'caption': 'A couple of giraffe standing in front of a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246530.jpg', 'caption': 'there are two giraffes that seem to be embracing each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246530.jpg', 'caption': 'A fenced area ringed with trees and green leaves, shows two giraffes, their necks criss-crossing, so that their heads look in opposite directions. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246530.jpg', 'caption': 'Two giraffes are standing next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359234.jpg', 'caption': 'Two sheep grazing on a lush green grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359234.jpg', 'caption': 'an image of two sheep in the pasture ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359234.jpg', 'caption': 'Two sheep sitting behind a fenced in area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359234.jpg', 'caption': 'A lamb and her child standing in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359234.jpg', 'caption': 'The two sheep are standing in tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093887.jpg', 'caption': 'A fluffy sheep stands in a large field and looks at a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093887.jpg', 'caption': 'A sheep standing on a hill in front of a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093887.jpg', 'caption': 'A sheep with lots of fur on a fence in the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093887.jpg', 'caption': 'a sheep standing up next to a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093887.jpg', 'caption': \"The sheep's coat will be sheared off soon.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376236.jpg', 'caption': 'a young boy is feeding a large giraffe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376236.jpg', 'caption': 'From his hand, a young boy feeds a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376236.jpg', 'caption': 'A giraffe is eating out of a kids hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376236.jpg', 'caption': 'a close up of a person feeding a giraffe ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376236.jpg', 'caption': 'A child feeding a giraffe from the palm of his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447991.jpg', 'caption': 'A small bus driving down a street next to a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447991.jpg', 'caption': 'A woman walking on the sidewalk with bags. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447991.jpg', 'caption': 'This is a busy city street with many bright signs at dusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447991.jpg', 'caption': 'a bunch of people walk down a side walk as traffic passes by ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447991.jpg', 'caption': 'The city is still busy with business this time of evening. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478406.jpg', 'caption': 'A tall giraffe standing next to a bunch of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478406.jpg', 'caption': 'A giraffe walking past some trees in the wild', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478406.jpg', 'caption': 'A giraffe with a long neck walks in his enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478406.jpg', 'caption': 'A giraffe walking in a pasture with a house in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478406.jpg', 'caption': 'A giraffe standing next to trees on the plains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027528.jpg', 'caption': 'An old couple sits on a bench by a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027528.jpg', 'caption': 'The man and women seat on the bench watching something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027528.jpg', 'caption': 'a male and female sitting on a bench water and grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027528.jpg', 'caption': 'Two eldery people are wnjoying the view of a lake in this park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027528.jpg', 'caption': 'A couple of people sitting on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156458.jpg', 'caption': \"A black lab waits at a picnic table for it's master.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156458.jpg', 'caption': 'A dog is leaning against a picnic table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156458.jpg', 'caption': 'A large black dog sitting underneath a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156458.jpg', 'caption': 'A black dog props itself up under a park table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156458.jpg', 'caption': 'A dog has came up from underneath a picnic table and rests his arms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287967.jpg', 'caption': 'a street a street light a traffic light and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287967.jpg', 'caption': 'a traffic light at an intersection a dusk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287967.jpg', 'caption': 'traffic lights on the road showing and some lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287967.jpg', 'caption': 'Empty road with street light on and red traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287967.jpg', 'caption': 'A stop light under a street light at twilight with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258702.jpg', 'caption': 'A rainy day at the bus station in the old section of town. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258702.jpg', 'caption': 'people walking near two double deckered busses with buildings in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258702.jpg', 'caption': 'A street filled with buses and cars surrounded by tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258702.jpg', 'caption': 'A busy city intersection with public transit and pedestrians.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258702.jpg', 'caption': 'A street view of intersection with people and buses in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084200.jpg', 'caption': 'An orange fire hydrant with a black hat on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084200.jpg', 'caption': 'There is a pink fire hydrant with a black hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084200.jpg', 'caption': 'a yellow and black fire hydrant close to the road\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084200.jpg', 'caption': 'a fire hydrant with a hat on top near a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084200.jpg', 'caption': 'A yellow fire hydrant with a black beanie on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468933.jpg', 'caption': 'A large herd of sheep are walking behind a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468933.jpg', 'caption': 'Several sheep are foraging in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468933.jpg', 'caption': 'a herd of sheep behind a fence with one looking at the camera ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468933.jpg', 'caption': 'There are sheep standing in the grass near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468933.jpg', 'caption': 'A metal wire fence confining sheep inside a grassy meadow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378672.jpg', 'caption': 'a decorative seat sitting inside cut out bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378672.jpg', 'caption': 'A park area with a shelter made of leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378672.jpg', 'caption': 'A well-carved green bush outside during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378672.jpg', 'caption': 'A bench is in an enclave of manicured bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378672.jpg', 'caption': 'a bench under a bush with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403515.jpg', 'caption': 'a woman in black walking down a sidewalk by herself ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403515.jpg', 'caption': 'A woman walking down a street next to a yellow fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403515.jpg', 'caption': 'A woman wearing high boots walks down a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403515.jpg', 'caption': 'a young woman walking on a sidewalk next to a firehydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403515.jpg', 'caption': 'Adult woman walking on sidewalk near yellow fire hydrant in city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278977.jpg', 'caption': 'An older man sitting on a wooden bench under a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278977.jpg', 'caption': 'A man rest comfortably on a park bench in a beautiful park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278977.jpg', 'caption': 'A man sitting on a bench under a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278977.jpg', 'caption': 'A man is sitting on a bench under a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278977.jpg', 'caption': 'An older man sitting on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137634.jpg', 'caption': 'A yellow and green fire hydrant in Canada.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137634.jpg', 'caption': 'A yellow and green fire hydrant sitting in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137634.jpg', 'caption': 'A photo of a yellow and green fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137634.jpg', 'caption': 'A hydrant of the Canada Valve & Hydrant Co, Ltd, along a residential road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137634.jpg', 'caption': 'A green and yellow fire hydrant on a Canadian street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323288.jpg', 'caption': 'A large older man sitting on a wooden bench in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323288.jpg', 'caption': 'A heavy set man sitting on a bench alone with a light colored shirt on ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323288.jpg', 'caption': 'A man sitting on a park bench by himself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323288.jpg', 'caption': 'A man sitting on a wooden bench in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323288.jpg', 'caption': 'A large older man sits on a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463615.jpg', 'caption': 'some old dirty pipes laying on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463615.jpg', 'caption': 'A fire hydrant is sitting near many logs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463615.jpg', 'caption': 'Metal pipes lay on the ground at a construction site.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463615.jpg', 'caption': 'there are many tree logs that are layer on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463615.jpg', 'caption': 'a couple of steel pipes lay on the ground next to each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359843.jpg', 'caption': 'A fire hydrant in the grass near the curb with the remnants of melting snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359843.jpg', 'caption': 'A red fire hydrant sitting next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359843.jpg', 'caption': 'A fire hydrant in a patch of grass near a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359843.jpg', 'caption': 'a red fire hydrant some grass and a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359843.jpg', 'caption': 'A red fire hydrant, sitting on on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129592.jpg', 'caption': 'A red fire hydrant sitting in the middle of the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129592.jpg', 'caption': 'A red fire hydrant sits on the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129592.jpg', 'caption': 'a small red fire hydrant in the yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129592.jpg', 'caption': 'Fire hydrant in a field of grass next to a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129592.jpg', 'caption': 'There is a fire hydrant in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125084.jpg', 'caption': 'A yellow fire hydrant is standing in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125084.jpg', 'caption': 'A yellow fire hydrant surrounded by smooth snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125084.jpg', 'caption': 'A yellow fire hydrant is in the white snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125084.jpg', 'caption': 'a fire hydrant in a field covered in snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125084.jpg', 'caption': 'The fire hydrant is the only thing visible in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155873.jpg', 'caption': 'A woman sitting next to a yellow hydrant on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155873.jpg', 'caption': 'A girl lays in the grass by a fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155873.jpg', 'caption': 'A woman sitting in lush green grass next to a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155873.jpg', 'caption': 'Pretty young girl in white tank top sitting in grass by fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155873.jpg', 'caption': 'A woman sits on the ground near a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545363.jpg', 'caption': 'There is a black and white photo with a bench falling over.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545363.jpg', 'caption': 'A bench falls into a crack in the asphalt. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545363.jpg', 'caption': 'A large crack in the ground that a bench has fallen into.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545363.jpg', 'caption': 'A caved in street with a bench in the hole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545363.jpg', 'caption': 'A bench sits at a wrong angle down a gully as the water of the river next to it appears to be high.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068203.jpg', 'caption': \"A giraffe stands with several birds resting on it's neck. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068203.jpg', 'caption': 'A giraffe that has some birds perched on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068203.jpg', 'caption': 'this is a close up picture of a giraffe that is standing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068203.jpg', 'caption': 'A giraffe with a couple birds holding onto his neck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068203.jpg', 'caption': \"Several birds perched on a giraffe's neck eating bugs.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565693.jpg', 'caption': 'there is a little boy dressed as santa sitting on the bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565693.jpg', 'caption': 'Some people sitting on a long bench wearing funny hats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565693.jpg', 'caption': 'A couple of people sitting next to a miniature Santa Clause.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565693.jpg', 'caption': 'Parents and children dressed up as Santa Claus sit on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565693.jpg', 'caption': 'A group of people on a bench all dressed in Christmas hats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009286.jpg', 'caption': 'A few school buses are parked near other vehicles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009286.jpg', 'caption': 'There are three buses parked behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009286.jpg', 'caption': 'A parking lot with several large yellow buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009286.jpg', 'caption': 'Several buses and cars parked in a dirt lot while a man walks by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009286.jpg', 'caption': 'This is a dirty parking lot with several school buses in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380140.jpg', 'caption': 'A kneeling woman takes a photo of a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380140.jpg', 'caption': 'A woman taking a picture of a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380140.jpg', 'caption': 'A lady squatting down on a lawn taking a picture of a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380140.jpg', 'caption': 'an image of a woman photographing a famous park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380140.jpg', 'caption': 'A cement and wood bench sitting in a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197745.jpg', 'caption': 'A couple of captive giraffes look around the ground in the zoo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197745.jpg', 'caption': 'Two giraffes stand in a field and lower their necks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197745.jpg', 'caption': 'Two giraffes standing in front of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197745.jpg', 'caption': 'Two giraffe snuggling next to each other next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197745.jpg', 'caption': 'Two giraffe standing in the grass with necks bent looking down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171464.jpg', 'caption': 'A parking lot with a car, three buses, and a semi.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171464.jpg', 'caption': 'A group of three buses parked next to each other in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171464.jpg', 'caption': 'A parking lot with one car and 3 commuter buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171464.jpg', 'caption': 'Three buses and a car waiting for passengers at a stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171464.jpg', 'caption': 'A line of three busses and a car on a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457060.jpg', 'caption': \"A close up of a giraffe's face standing in front of a tree and another giraffe.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457060.jpg', 'caption': 'A close up of a giraffe with another in the background against a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457060.jpg', 'caption': 'There is a close up picture of a giraffes face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457060.jpg', 'caption': 'A couple of giraffe standing next to each other in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457060.jpg', 'caption': 'A close up of a giraffe in front of a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352476.jpg', 'caption': 'A bike attached to the front of a blue bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352476.jpg', 'caption': 'A couple of bikes riding on the front of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352476.jpg', 'caption': 'A bus that has bikes mounted on the front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352476.jpg', 'caption': 'A public bus with bike racks on the front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352476.jpg', 'caption': 'a bus that has some bikes on the outside of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089909.jpg', 'caption': 'A wooden bench on a fence and plants surrounding it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089909.jpg', 'caption': 'A walled garden has a bench and a fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089909.jpg', 'caption': 'Bench in a garden surrounded by vines and flowers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089909.jpg', 'caption': 'A wooden bench sitting in front of a brick wall surrounded by flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089909.jpg', 'caption': 'A wooden bench nestled by a fountain on a vine covered wall in a garden', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048907.jpg', 'caption': 'A flock of sheep graze on a hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048907.jpg', 'caption': 'A flock of sheep eating grass in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048907.jpg', 'caption': 'The sheep are grazing on the hill side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048907.jpg', 'caption': 'Several sheep atop a grassy hill eating grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048907.jpg', 'caption': 'Sheep grazing in an open grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266579.jpg', 'caption': 'A boat and a duck is in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266579.jpg', 'caption': 'This is an image of a bird on a buoy with a boat nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266579.jpg', 'caption': 'This is a bird standing on a buoy with a boat behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266579.jpg', 'caption': 'a bird standing on a buoy in a large body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266579.jpg', 'caption': 'Segull sits on a floatation device looking at a boat on the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384308.jpg', 'caption': 'The small dog sitting in the center of the walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384308.jpg', 'caption': 'A cat sits in the middle of pavement as a bird swoops down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384308.jpg', 'caption': 'A cat sitting in a concrete parking area with a piece of paper blowing in the wind over his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384308.jpg', 'caption': 'A cat sits on the pavement while a bird flies overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384308.jpg', 'caption': 'Little cat out on the road watching a bird fly by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321861.jpg', 'caption': 'A dead bird being dangled in front of a cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321861.jpg', 'caption': 'A dead bird being held in front of a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321861.jpg', 'caption': 'A tabby cat sniffing a dead bird being held.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321861.jpg', 'caption': \"A person's hand holding up a dead bird to a cat.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321861.jpg', 'caption': 'a gray and white cat smelling a small dead bird', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558741.jpg', 'caption': 'A tall giraffe standing next to a baby giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558741.jpg', 'caption': 'There are two giraffes standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558741.jpg', 'caption': 'A mother giraffe standing above her young child', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558741.jpg', 'caption': 'An adult and baby giraffe stand in the sun. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558741.jpg', 'caption': 'A giraffe and its young standing in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076454.jpg', 'caption': 'A giraffe is fenced in next to a large city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076454.jpg', 'caption': 'A picture of a giraffe fenced in captivity.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076454.jpg', 'caption': 'A giraffe standing near a pole in an enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076454.jpg', 'caption': 'A giraffe standing next to a tall tree in front of a major city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076454.jpg', 'caption': 'A giraffe sitting behind a fenced in area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412551.jpg', 'caption': 'A view of a street at night shows a yellow fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412551.jpg', 'caption': 'a night time scene of trees and a yellow fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412551.jpg', 'caption': 'A yard with a fire hydrant and trees at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412551.jpg', 'caption': 'A yellow fire hydrant viewed between two trees on a curb side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412551.jpg', 'caption': 'A yellow fire hydrant sitting next to brown trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343059.jpg', 'caption': 'A green school bus drives down the road with bikes on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343059.jpg', 'caption': 'Green bus in front of a mcdonalds with many bikes on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343059.jpg', 'caption': 'An extended bus with several bicycle resting on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343059.jpg', 'caption': 'A big green bus that is covered with dust and has many bicycles on the roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343059.jpg', 'caption': 'A long green school bus parked on pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121663.jpg', 'caption': 'City bus on an empty city street near a STOP sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121663.jpg', 'caption': 'A city bus traveling down a street with tall structures on either side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121663.jpg', 'caption': 'a public transit bus on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121663.jpg', 'caption': 'A yellow and white bus driving past an industrial building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121663.jpg', 'caption': 'A bus driving down the road in front of buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050277.jpg', 'caption': 'A flock of seagulls walking along a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050277.jpg', 'caption': 'a number of birds flying on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050277.jpg', 'caption': 'There are five seagulls are flying along the shore. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050277.jpg', 'caption': 'there are many seagulls flying around the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050277.jpg', 'caption': 'A group of seagulls fly close to the sand on the shore of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343643.jpg', 'caption': 'A double decker bus parked next to a crowded sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343643.jpg', 'caption': 'A bus is shown with a line of people next to it.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000235131.jpg', 'caption': 'An image of boats, and ferries on water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081035.jpg', 'caption': 'A woman with a red sweater, seated and holding a small dog over a railing while looking into a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081035.jpg', 'caption': 'A woman holding a dog on a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081035.jpg', 'caption': 'A woman is sitting in a boat holding her puppy as he has his paw on a railing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081035.jpg', 'caption': 'a woman holds a dog as it looks over the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081035.jpg', 'caption': 'A person holding a dog as it looks at the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016005.jpg', 'caption': 'A woman holding a child and standing near a bull.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016005.jpg', 'caption': 'A lady holding a small child near a big animal with horns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016005.jpg', 'caption': 'A woman holding a baby near a long horn steer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016005.jpg', 'caption': 'A woman holding a baby is looking at a bull.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016005.jpg', 'caption': 'A woman holding a child looking at a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259136.jpg', 'caption': 'A large metal fork sticking out of a lake next to a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259136.jpg', 'caption': 'an image a large fork perched in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259136.jpg', 'caption': 'A seemingly very large fork stuck in the water with a ship behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259136.jpg', 'caption': 'A large fork sculpture stands in the water as a large boat passes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259136.jpg', 'caption': 'A large fork on the water where a boat is in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154254.jpg', 'caption': 'A cat curled up on a bed sleeping with a man sitting in the back ground holding a laptop and watching the cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154254.jpg', 'caption': 'A man in a chair while holding a laptop and posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154254.jpg', 'caption': 'A man sitting in a chair smiling at a sleeping cat on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154254.jpg', 'caption': 'A brown and white cat laying in couch with man in chair in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154254.jpg', 'caption': 'A man with a laptop is next to a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078741.jpg', 'caption': 'A grey and white cat sitting next to keyboard and computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078741.jpg', 'caption': 'A cat standing on to of a computer keyboard next to a monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078741.jpg', 'caption': 'a cat stiing by a desk with a paw on a keyboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078741.jpg', 'caption': 'A cat standing on a desk near a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078741.jpg', 'caption': \"A cat sits with its' paw on the keyboard of the computer.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435562.jpg', 'caption': 'A young boy sitting on a seat on a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435562.jpg', 'caption': 'a little boy is wearing a blue shirt and a red tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435562.jpg', 'caption': 'Boy with a bright blue shirt and bow tie sitting in a seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435562.jpg', 'caption': 'A small child sitting in a seat with a bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435562.jpg', 'caption': 'Small boy with a bow tie on sitting down on a bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163684.jpg', 'caption': 'A dirty dog holds a stick in its mouth in the winter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163684.jpg', 'caption': 'A brown dog with a stick in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163684.jpg', 'caption': 'A dog holds a branch in its mouth on a snowy path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163684.jpg', 'caption': 'A dog standing in the snow with a stick in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163684.jpg', 'caption': 'a little dog holding sticks in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291672.jpg', 'caption': 'A person is wading ashore near three fishing boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291672.jpg', 'caption': 'Three boats in the green and blue water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291672.jpg', 'caption': 'A group of boats tied to the beach sitting in clear water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291672.jpg', 'caption': 'Fishing boats tied to the beach in clear water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291672.jpg', 'caption': 'a couple of boats are in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237597.jpg', 'caption': 'A small elephant licking a blue metal fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237597.jpg', 'caption': 'A small elephant trumpets over the fence of his zoo enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237597.jpg', 'caption': 'A baby elephant is standing next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237597.jpg', 'caption': 'Baby elephant standing on a log while making noise.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237597.jpg', 'caption': 'A baby elephant standing on a log by the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346642.jpg', 'caption': 'A lagoon with crystal blue water filled with boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346642.jpg', 'caption': 'some boats can be seen out on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346642.jpg', 'caption': 'A lot of boats in a small area of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346642.jpg', 'caption': 'Huge body of water near a shore filled with watercraft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346642.jpg', 'caption': 'There are many boats on the clear blue sea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068435.jpg', 'caption': 'A woman and man dance while smiling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068435.jpg', 'caption': 'A man and woman in formal wear standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068435.jpg', 'caption': 'There is a woman wearing a corsage next to a man in a white suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068435.jpg', 'caption': 'A man and a woman who are standing together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068435.jpg', 'caption': 'A man and women pose at a wedding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357317.jpg', 'caption': 'A business man walking along side the baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357317.jpg', 'caption': 'A man is walking in a suit on the baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357317.jpg', 'caption': 'A heavy-set man with a large satchel walks along the sidelines of a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357317.jpg', 'caption': 'Man in suit walking on baseball field looking through fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357317.jpg', 'caption': 'A man in a suit walking across a baseball field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111259.jpg', 'caption': 'A group of people riding a raft down a rapid river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111259.jpg', 'caption': 'A group of people are white water rafting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111259.jpg', 'caption': 'a group of people on a raft in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111259.jpg', 'caption': 'A group of people in a raft in some rough current.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111259.jpg', 'caption': 'a raft full of people makes its way through some wavy water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155285.jpg', 'caption': 'A young boy stands around a busy area, wearing a white shirt with a yellow tie and a name tag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155285.jpg', 'caption': 'Afro American boy wearing a tie poses for a picture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155285.jpg', 'caption': 'A smiling young boy wearing a big yellow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155285.jpg', 'caption': 'A smiling little boy wearing a large yellow neck tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155285.jpg', 'caption': 'A boy wearing a tie and a white shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024921.jpg', 'caption': 'A small white boat floating on top of a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024921.jpg', 'caption': 'A boat is floating out on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024921.jpg', 'caption': 'A boat on the water with trees behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024921.jpg', 'caption': 'A boat in the water on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024921.jpg', 'caption': 'A boat in a harbor with trees in the skyline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420181.jpg', 'caption': 'A group of people gather underneath some umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420181.jpg', 'caption': 'A man in a black leather jacket is near others and umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420181.jpg', 'caption': 'People standing in front of a building with umbrellas .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420181.jpg', 'caption': 'A group of people are outdoors under red and white umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420181.jpg', 'caption': 'A group of people on a street next to orange and white umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436871.jpg', 'caption': 'A view of a lake and mountains from a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436871.jpg', 'caption': 'A boat floating on a lake near a giant pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436871.jpg', 'caption': 'A body of water, with a background of mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436871.jpg', 'caption': 'A small boat in the blue and green water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436871.jpg', 'caption': 'A view of a harbor with a massive flag pole and mountains in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565813.jpg', 'caption': 'A ferry going from one point to another point. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565813.jpg', 'caption': 'a big water way with some boats in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565813.jpg', 'caption': 'an orange boat is passing near a large monument', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565813.jpg', 'caption': 'Boats near Ellis Island and the Statue of Liberty. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565813.jpg', 'caption': 'A boat sails with the Statue of Liberty and the Manhattan skyline in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426309.jpg', 'caption': 'A photo-shopped picture of grass umbrellas on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426309.jpg', 'caption': 'A beach covered with umbrellas next to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426309.jpg', 'caption': 'THERE ARE A LOT OF IMAGES SHOWING HERE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426309.jpg', 'caption': 'We are looking at an abstract work of art.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426309.jpg', 'caption': 'A painting that involves a reverse of a beach and umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294124.jpg', 'caption': 'A basketball court with the head coach dressed in a suit and standing on the court, with a player near him and event staff close by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294124.jpg', 'caption': 'a coach looking at someone on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294124.jpg', 'caption': 'A man in a business suit standing on a basketball court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294124.jpg', 'caption': 'a person wearing a suit and tie ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294124.jpg', 'caption': 'Older fine dressed coach standing during basketball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324785.jpg', 'caption': 'A group of cages stacked on top of each other near a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324785.jpg', 'caption': 'Several stacks of lobster cages on a dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324785.jpg', 'caption': 'Fishing crates are stacked on a dock and fishing boats are in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324785.jpg', 'caption': 'Lobster traps are stacked on the dock near the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324785.jpg', 'caption': 'Stacks of cages are piled by the docks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323576.jpg', 'caption': 'People swimming and reclining in chairs under umbrellas on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323576.jpg', 'caption': 'Several people sit under chairs on the beach while two others swim in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323576.jpg', 'caption': 'Two people are walking in the shore of the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323576.jpg', 'caption': 'A beach with lawn chairs and umbrellas on a blue green ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323576.jpg', 'caption': \"Four umbrella's with chairs sitting on a beach near the ocean.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107741.jpg', 'caption': 'there is no picture in this particular one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107741.jpg', 'caption': 'A woman holding an umbrella speaks on her mobile phone in the rain. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107741.jpg', 'caption': 'A young woman on the phone holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107741.jpg', 'caption': 'an image of a woman walking in the rain with an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107741.jpg', 'caption': 'A woman carrying an umbrella talks on her cellphone while walking through the city on a rainy night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205352.jpg', 'caption': 'A bright, building-lined river heavily populated with boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205352.jpg', 'caption': 'Barges and small pole boats going down a canal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205352.jpg', 'caption': 'Boats are traveling down the river in the middle of the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205352.jpg', 'caption': 'A view of a river with several boats in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205352.jpg', 'caption': 'Many boats float down the water in between the buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181139.jpg', 'caption': 'A group of people sitting and laying on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181139.jpg', 'caption': 'A large group of people lounge at a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181139.jpg', 'caption': 'Many people on a beach with many chairs and blue umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181139.jpg', 'caption': 'Several people sitting or walking on the beach at a resort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181139.jpg', 'caption': 'A few rows of cabanas with blue umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021971.jpg', 'caption': \"Several umbrella's and chairs gathered around at a beach.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021971.jpg', 'caption': 'a beach with beach chairs and raised umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021971.jpg', 'caption': 'A sandy beach is full of blue umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021971.jpg', 'caption': 'Many blue beach umbrellas near lounge chairs at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021971.jpg', 'caption': 'Several beach umbrellas are up next to lounges with a view of the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550431.jpg', 'caption': 'A man adjusting another mans color in front of a painting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550431.jpg', 'caption': 'A man in button down holding tie to neck and a senior man with adjusting his collar in a room with lamp and framed photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550431.jpg', 'caption': 'A man helping another man fix his tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550431.jpg', 'caption': 'two men getting dressed for an event with one adjusting the others shirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550431.jpg', 'caption': 'an older man helping a younger man adjust his collar and getting dressed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014257.jpg', 'caption': 'Two men walk down the street in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014257.jpg', 'caption': 'a couple of people walk next to some trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014257.jpg', 'caption': 'Two young men walking through a small park at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014257.jpg', 'caption': 'Two men wearing back packs walking through a park in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014257.jpg', 'caption': 'Two young men walking in a park, one is wearing a backpack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074309.jpg', 'caption': 'two people riding on top of two horses ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074309.jpg', 'caption': 'a line of elephants that were walking in a line', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074309.jpg', 'caption': 'Men are riding on elephants down the stone street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074309.jpg', 'caption': 'People ceremoniously riding elephants in a path in India', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074309.jpg', 'caption': 'A couple of men riding elephants by a mountain side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465257.jpg', 'caption': 'Elephants walking with each other to travel to a place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465257.jpg', 'caption': 'A herd of elephants walking through an open range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465257.jpg', 'caption': 'The gray elephant family is crossing the ditch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465257.jpg', 'caption': 'Adult and baby elephants depicted in a stampede.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465257.jpg', 'caption': 'A herd of elephants crosses a dry ravine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204536.jpg', 'caption': 'Two elephant walking, the one in the foreground kicking up a some dirt. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204536.jpg', 'caption': 'Two elephants walk around in a large grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204536.jpg', 'caption': 'two elephants with long walking through the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204536.jpg', 'caption': 'An elephant kicking some dirt on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204536.jpg', 'caption': 'two very big elephants walking in the wild ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533979.jpg', 'caption': 'an elephant standing alone on a cement floor behind a wired fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533979.jpg', 'caption': 'An elephant standing in an enclosed metal cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533979.jpg', 'caption': \"There's an elephant standing with his trunk in his mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533979.jpg', 'caption': 'AN ELEPHANT KEPT IN A YARD AT SOME PLACE.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533979.jpg', 'caption': 'An elephant behind a wired fence inside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170950.jpg', 'caption': 'A man carrying apiece of luggage on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170950.jpg', 'caption': 'A man on the sidewalk pulling a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170950.jpg', 'caption': 'Man carrying satchel and pulling suitcase down sidewalk in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170950.jpg', 'caption': 'Man carrying a flowered suitcase down the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170950.jpg', 'caption': 'A man pulls a suitcase on wheels down a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306103.jpg', 'caption': 'A herd of elephants walking next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306103.jpg', 'caption': 'A pack of elephants are trampling in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306103.jpg', 'caption': 'The herd of elephants include adults and young ones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306103.jpg', 'caption': 'A herd of elephants are walking among the desert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306103.jpg', 'caption': 'There is a herd of elephants walking together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513125.jpg', 'caption': 'Dog lying on bedding material in suitcase in large room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513125.jpg', 'caption': 'A dog on a blanket in a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513125.jpg', 'caption': 'a dog in a suitcase with some purple sheets and pillow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513125.jpg', 'caption': 'A dog sitting in a piece of luggage on a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513125.jpg', 'caption': 'A dog laying on a purple pillow in a suitcase on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423008.jpg', 'caption': 'A group of boats with passengers docked at a fenced wall with a crowd at the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423008.jpg', 'caption': 'a number of small boats in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423008.jpg', 'caption': 'A large group of people with umbrellas look at the boats below. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423008.jpg', 'caption': 'A large group of people with umbrellas next to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423008.jpg', 'caption': 'A anal filled with boats and the street above it filled with people under umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267076.jpg', 'caption': 'a small child watching an elephant behind a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267076.jpg', 'caption': 'A child looking at an elephant that is standing in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267076.jpg', 'caption': 'a baby in front of a metal railing and an elephant standing behind the railing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267076.jpg', 'caption': 'A baby looks at a looming elephant wearing a red cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267076.jpg', 'caption': 'A baby in the foreground to an elephant in a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110313.jpg', 'caption': 'Many people are walking along through the hallway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110313.jpg', 'caption': 'A lot of people walked down a covered walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110313.jpg', 'caption': 'Several people milling about in a lobby area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110313.jpg', 'caption': 'people walking on tiles in an arched hallway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110313.jpg', 'caption': 'A classical building interior full of people in passing on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419344.jpg', 'caption': 'A group of people stare at a group of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419344.jpg', 'caption': 'People are walking near five adult elephants with head dresses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419344.jpg', 'caption': 'Onlooker on sidewalk watching group of elephants in city setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419344.jpg', 'caption': 'A group of people standing around a line of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419344.jpg', 'caption': 'The circus elephants are in town before the big show. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435260.jpg', 'caption': 'A red brick building as a backdrop, trained elephants entertain a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435260.jpg', 'caption': 'Clowns stand in front of a line of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435260.jpg', 'caption': 'Several elephants with headdresses and three clowns entertaining a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435260.jpg', 'caption': 'A row of circus elephants and circus clowns in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435260.jpg', 'caption': 'A crowd of people looking at circus elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232618.jpg', 'caption': 'A pair of elephants lined up next each other in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232618.jpg', 'caption': 'Two elephants on top of the sand next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232618.jpg', 'caption': 'Two elephants walking by a tan wall with green palm trees painted on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232618.jpg', 'caption': 'Two elephants walking next to a rock wall with trees painted on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232618.jpg', 'caption': 'Two elephants walk around their enclosure at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306467.jpg', 'caption': 'The four men are performing in costumes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306467.jpg', 'caption': 'Four actors in renaissance clothes stand outside on a stage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306467.jpg', 'caption': 'Four people in colorful attire with hats are getting ready to perform on a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306467.jpg', 'caption': 'The group of entertainers are dressed in vintage garb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306467.jpg', 'caption': 'A group of men dressed in medieval clothing ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559778.jpg', 'caption': 'there is a german sherpard sitting on the floor with a stuffed bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559778.jpg', 'caption': \"A large dog lies on the wooden floor next to someone's standing feet.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559778.jpg', 'caption': 'A picture of a German Shepard with a stuffed animal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559778.jpg', 'caption': 'A dog laying on a wooden floor with a stuffed toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559778.jpg', 'caption': 'The dog is looking in the other direction as he has a stuffed animal in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256601.jpg', 'caption': 'People pulling their luggage as they walk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256601.jpg', 'caption': \"lady's walking toward a building pulling suitcases \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256601.jpg', 'caption': 'People walking some with luggage and some without.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256601.jpg', 'caption': 'People are walking around outside of an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256601.jpg', 'caption': 'The couple holds hands as a woman walks past.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468078.jpg', 'caption': 'A photo of an old elephant standing in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468078.jpg', 'caption': 'An elephant standing in a grassy clearing among some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468078.jpg', 'caption': 'large brown elephant making his surrounding look so small', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468078.jpg', 'caption': 'A large brown elephant is in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468078.jpg', 'caption': 'An elephant standing in green grass next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378658.jpg', 'caption': 'Two people sitting and two people walking through what looks to be an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378658.jpg', 'caption': 'Two people sitting outside waiting on a ride.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378658.jpg', 'caption': 'A man is sitting down with his belongings in a train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378658.jpg', 'caption': 'people waiting at an airport next to their luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378658.jpg', 'caption': 'A black and white photo of a man sitting against the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148188.jpg', 'caption': 'A LOT OF PEOPLE ARE RIDING ON THE ELEPHANT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148188.jpg', 'caption': 'Two elephants on the grass with people riding on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148188.jpg', 'caption': 'People are riding on elephants as other people are standing on a raised platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148188.jpg', 'caption': 'Several groups of people ride elephants on an elephant track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148188.jpg', 'caption': 'A group of people riding on the back of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043128.jpg', 'caption': 'An elephant picks up an object with its trunk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043128.jpg', 'caption': 'A small elephant standing next to a white stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043128.jpg', 'caption': 'An elephant that is putting something in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043128.jpg', 'caption': 'an elephant living in captivity standing under a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043128.jpg', 'caption': 'large elephant standing in enclosure with curled trunck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472067.jpg', 'caption': 'A group of people seated while holding umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472067.jpg', 'caption': 'A group of people sitting on a beach while holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472067.jpg', 'caption': 'four people sitting on a bench holding umbrellas and one man is standing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472067.jpg', 'caption': 'A group of people under some umbrellas in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472067.jpg', 'caption': 'A big full view of several people gathering.\\n\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288000.jpg', 'caption': 'A cup filled with umbrellas and canes next to a white wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288000.jpg', 'caption': 'A basket in the sunlight holds many different umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288000.jpg', 'caption': \"There's quite a selection of umbrellas in this stand.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288000.jpg', 'caption': 'a large group of umbrellas in a holder', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288000.jpg', 'caption': \"A batch of umbrella's and walking canes in a basket.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199641.jpg', 'caption': 'A dog leaping outside to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199641.jpg', 'caption': 'a blurry shot of a dog chasing a Frisbee in the backyard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199641.jpg', 'caption': 'A dog that is about to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199641.jpg', 'caption': 'A large brown dog chasing a yellow frisbee through a back yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199641.jpg', 'caption': 'A dog in a back yard chasing a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402778.jpg', 'caption': \"A brown dog running with a yellow frisbee in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402778.jpg', 'caption': 'a dog grabbing a yellow umbrella in the yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402778.jpg', 'caption': 'A dog running to catch a frisbee in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402778.jpg', 'caption': 'A dog is catching a Frisbee that his owner through', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402778.jpg', 'caption': 'A large brown dog with a yellow Frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230454.jpg', 'caption': 'The man is posing with his umbrella up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230454.jpg', 'caption': 'A man wearing a neon shirt while holding a pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230454.jpg', 'caption': 'two people holding open umbrellas near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230454.jpg', 'caption': 'An individual is capture in the stillness of the picture.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230454.jpg', 'caption': 'A man smiles at something off-screen while holding a magenta umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164325.jpg', 'caption': 'A group of people with luggage waiting by a door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164325.jpg', 'caption': 'Several people waiting outside of an ornate door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164325.jpg', 'caption': 'a group of people standing holding luggage bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164325.jpg', 'caption': 'Several people stand at a door with luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164325.jpg', 'caption': 'Group of people standing outside of a door with a gate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329307.jpg', 'caption': 'a man that is standing by some bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329307.jpg', 'caption': 'A man is pointing out a brown suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329307.jpg', 'caption': 'A man standing in front of a zoo shop window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329307.jpg', 'caption': 'A man is holding his hand out to point at a window with suitcases on each shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329307.jpg', 'caption': 'there is a man that is posing in front of a store window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329307.jpg', 'caption': 'A man standing next to a bat of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487282.jpg', 'caption': 'a girl wearing a white bonnet holding a black luggage bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487282.jpg', 'caption': 'A woman standing outside of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487282.jpg', 'caption': 'Young lady with suitcase waiting outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487282.jpg', 'caption': 'A young woman standing against a building with luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487282.jpg', 'caption': 'A woman stands behind her luggage next to a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040497.jpg', 'caption': 'a street with some vehicle on it pass in front of a market ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040497.jpg', 'caption': 'A group of umbrellas that are sitting next to a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040497.jpg', 'caption': 'Group of people driving alongside a group of red umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040497.jpg', 'caption': 'A crowded city street with the red umbrellas of a streetside market on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040497.jpg', 'caption': 'Food stands with red umbrellas on a crowded street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552253.jpg', 'caption': 'A very big polar bear under water with an item.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552253.jpg', 'caption': 'A polar bear that is underneath the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552253.jpg', 'caption': 'A polar bear under water with a plastic container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552253.jpg', 'caption': 'A polar bear is playing with a blue bottle underwater.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552253.jpg', 'caption': 'a white beear with a blue bottle under water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309843.jpg', 'caption': 'a couple of surfboards placed in the sand with dogs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309843.jpg', 'caption': 'Two dogs sitting in the shade provided by some surfboards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309843.jpg', 'caption': 'A group of three surfboards sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309843.jpg', 'caption': 'three surf boards leaning up against a tree branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309843.jpg', 'caption': 'an image of two dogs that are in the sand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005105.jpg', 'caption': 'a man paddling in the lake with a dog nearby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005105.jpg', 'caption': 'A man on a paddle board with a black dog swimming behind him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005105.jpg', 'caption': 'A man riding a paddle board on top of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005105.jpg', 'caption': 'A man rows standing on a surfboard near a dog fetching a ball in a body of water near a shoreline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005105.jpg', 'caption': 'A man on a standup paddle board in a lake with a dog swimming nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259345.jpg', 'caption': 'A bearded man in a long tie-dyed shirt sitting in the shade of his pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259345.jpg', 'caption': 'A man sits in a chair with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259345.jpg', 'caption': 'A man in a rainbow frock is holding a pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259345.jpg', 'caption': 'A bearded man holding a pink umbrella in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259345.jpg', 'caption': 'Man in rainbow colored smock holding a pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253969.jpg', 'caption': 'A man and a woman standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253969.jpg', 'caption': 'A couple is getting a picture by baggage claim', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253969.jpg', 'caption': 'A man and a woman with cameras at a baggage claim.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253969.jpg', 'caption': 'A cute little oriental couple standing at an air port with cameras and smiling ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253969.jpg', 'caption': 'Young couple smiling and standing in front of a baggage claim sign at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332432.jpg', 'caption': 'A red bag of luggage at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332432.jpg', 'caption': 'A red suitcase comes down the belt at an airport while other people get their luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332432.jpg', 'caption': 'A piece of luggage on a conveyor belt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332432.jpg', 'caption': 'A man at the airport trying to claim his luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332432.jpg', 'caption': 'A red piece of luggage riding on a conveyor belt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527375.jpg', 'caption': 'A computer desk topped with a desktop computer and a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527375.jpg', 'caption': 'Two computers and a keyboard sit on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527375.jpg', 'caption': 'A desk with a laptop and a desktop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527375.jpg', 'caption': 'A desk with a laptop and desktop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527375.jpg', 'caption': 'A desk top computer and a laptop sitting on a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559006.jpg', 'caption': 'A big brown bear swims in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559006.jpg', 'caption': 'Water drips off a bear who is standing in water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559006.jpg', 'caption': 'a bear dripping wet from a dunk in a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559006.jpg', 'caption': 'a brown and black bear is in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559006.jpg', 'caption': 'Black bear walking in water with water falling off of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407019.jpg', 'caption': 'A polar bear is walking around the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407019.jpg', 'caption': 'A large white polar bear walking along a path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407019.jpg', 'caption': 'A polar bear is walking alone in his enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407019.jpg', 'caption': 'a polar bear that is walking around some rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407019.jpg', 'caption': 'a polar bear standing in a rocky habitat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044250.jpg', 'caption': 'A polar bear dives off a rock into a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044250.jpg', 'caption': 'A bear jumping into a pool of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044250.jpg', 'caption': 'A polar bear reaches down into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044250.jpg', 'caption': 'There is a white polar bear plunging into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044250.jpg', 'caption': 'A polar bear diving off an outcrop of rocks into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478320.jpg', 'caption': 'a passenger sorting through luggage on an airport runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478320.jpg', 'caption': 'The men are putting luggage in order for the plane. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478320.jpg', 'caption': 'A woman looking at baggage laid out on the tarmac at an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478320.jpg', 'caption': 'Airport baggage handlers attend to luggage on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478320.jpg', 'caption': 'The lady is searching for luggage on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306664.jpg', 'caption': 'A large white polar bear walking across a dirt and gravel ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306664.jpg', 'caption': 'A polar bear is walking around in the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306664.jpg', 'caption': 'A polar bear walking on some rocky ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306664.jpg', 'caption': 'A fat polar bear walking along the rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306664.jpg', 'caption': 'A polar bear walking in a zoo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178361.jpg', 'caption': 'An adult polar bear is swimming in the icy water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178361.jpg', 'caption': 'A polar bear emerging from water head first. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178361.jpg', 'caption': 'A polar bear bursts out of the water at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178361.jpg', 'caption': 'A polar bear looking up while swimming in water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178361.jpg', 'caption': 'A polar bear is sticking his head out of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218215.jpg', 'caption': 'A large white polar bear rolling around in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218215.jpg', 'caption': 'A polar bear with his mouth open swimming on its back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218215.jpg', 'caption': 'an adult polar bear splashing into cold water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218215.jpg', 'caption': 'A nose and white fur peek out from the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218215.jpg', 'caption': 'A white bear rolling around in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578807.jpg', 'caption': 'A person sitting outdoors with a Frisbee in front of their face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578807.jpg', 'caption': 'This is a picture of a Frisbee stuck to a guys face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578807.jpg', 'caption': 'A boy scout wearing a Frisbee on his face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578807.jpg', 'caption': 'A man sitting down with a Frisbee on his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578807.jpg', 'caption': 'Person in a khaki shirt with a white frisbee on their face in a park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115796.jpg', 'caption': 'a male in a black shirt playing frisbee on some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115796.jpg', 'caption': 'A man waiting to catch a frisbee in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115796.jpg', 'caption': 'A kid waits to catch a Frisbee at a grassy park in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115796.jpg', 'caption': 'a person in a field with a frisbee and a building in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115796.jpg', 'caption': 'A man in a park prepares to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417193.jpg', 'caption': 'A red Frisbee floating in a lake with dark water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417193.jpg', 'caption': 'A red flying disk floating just below the surface of a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417193.jpg', 'caption': 'A frisbee barely hits the surface at a lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417193.jpg', 'caption': 'A round red disc lying in rippled water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417193.jpg', 'caption': 'A frisbee is floating on a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240137.jpg', 'caption': 'A man tossing a frisbee to a brown dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240137.jpg', 'caption': 'A man playing Frisbee with a dog in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240137.jpg', 'caption': 'A man holds up a frisbee and a dog jumps for it in a snowy clearing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240137.jpg', 'caption': 'A MAN AND HIS DOG PLAYING FRISBEE IN THE SNOW', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240137.jpg', 'caption': 'A dog leaping in the air to grab a frisbee from its owner on a snowy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046245.jpg', 'caption': 'a happy looking polar bear swiiming in water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046245.jpg', 'caption': 'Close up of a polar bear swimming in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046245.jpg', 'caption': 'A polar bear with a black nose swimming in water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046245.jpg', 'caption': 'A polar bear swims through the water with its head and back above the surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046245.jpg', 'caption': 'A polar bear wading through a pool with a happy look on its face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457575.jpg', 'caption': 'A kid playing a game of frisbee with his dog in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457575.jpg', 'caption': 'a person and their dog playing in the snow with a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457575.jpg', 'caption': 'A person and a dog playing with a Frisbee in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457575.jpg', 'caption': 'A woman plays Frisbee with her dog in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457575.jpg', 'caption': 'A lady playing frisbee with her dog, in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379077.jpg', 'caption': 'A brown dog looks up at the camera as he stands in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379077.jpg', 'caption': 'A dog fetching a Frisbee out of a snow bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379077.jpg', 'caption': 'A dog is standing in the snow with two Frisbees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379077.jpg', 'caption': 'A very cute brown dog standing in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379077.jpg', 'caption': 'A dog standing in the snow with some frisbees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121876.jpg', 'caption': 'A polar bear stands over an orange disc in his enclosure. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121876.jpg', 'caption': 'A polar bear standing behind a bright orange object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121876.jpg', 'caption': 'A polar bear looks toward the camera in front of his orange disc toy. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121876.jpg', 'caption': 'a polar bear standing on a cement floor next to an orange plate and an enclosed body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121876.jpg', 'caption': 'a polar bear standing next to an orange disc', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306636.jpg', 'caption': 'This young girl is learning to throw a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306636.jpg', 'caption': 'A picture of a little kid holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306636.jpg', 'caption': 'a little girl with a yellow jacket is holding a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306636.jpg', 'caption': 'A young girl holding a frisbee on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306636.jpg', 'caption': \"A frisbee will be thrown to a girl's dad in time\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359164.jpg', 'caption': 'A couple of dogs walking next to a couple of chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359164.jpg', 'caption': 'Two small dogs are playing under a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359164.jpg', 'caption': 'A brown dog crouches by a black bag as a gray and brown dog is under a black chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359164.jpg', 'caption': 'Two dogs playing near some chairs and a table outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359164.jpg', 'caption': 'two puppies play outside in the grass under a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011696.jpg', 'caption': 'A dog on top of a person so you cannot see the person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011696.jpg', 'caption': 'A dog climbs on top of the person lying on the couch, next to the closed laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011696.jpg', 'caption': 'A dog climbing on top of a person sleeping on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011696.jpg', 'caption': 'A large dog seems to be laying on someone who is also laying on the coach with a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011696.jpg', 'caption': 'A dog that is on top of a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406976.jpg', 'caption': 'Two dogs lay next to each other on a brown couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406976.jpg', 'caption': 'Two large dogs sleeping on a large couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406976.jpg', 'caption': 'Two dogs are laying on a couch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406976.jpg', 'caption': 'Two dogs sit on top of a couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406976.jpg', 'caption': 'A close up of two dogs sleeping on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204381.jpg', 'caption': 'The white polar bear is standing near a tree branch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204381.jpg', 'caption': 'White polar bear standing on top of rocks in a zoo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204381.jpg', 'caption': 'A bear that is standing on a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204381.jpg', 'caption': 'A polar bear standing on rocks near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204381.jpg', 'caption': 'THIS IS A PHOTO OF A POLAR BEAR INSIDE HIS ENCLOSURE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020972.jpg', 'caption': 'A polar bear balancing on a barrel in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020972.jpg', 'caption': 'A polar bear balancing on a blue barrel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020972.jpg', 'caption': 'A polar bear standing on top of a blue barrel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020972.jpg', 'caption': 'A polar bear balances on a blue ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020972.jpg', 'caption': 'A polar bear balances on top of a blue barrel. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062540.jpg', 'caption': \"A polar bear sticks its head in another polar bear's butt.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062540.jpg', 'caption': 'Two polar bears with snowy fur stand together in a wintry landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062540.jpg', 'caption': 'A couple of white polar bears covered in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062540.jpg', 'caption': 'A polar bear sniffing the butt of another bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062540.jpg', 'caption': 'A polar bear buries its head under the rump of another polar bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285908.jpg', 'caption': 'A polar bear with snow on its fur sticking its tongue out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285908.jpg', 'caption': 'A white polar bear walking across snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285908.jpg', 'caption': 'A snow covered polar bear sticks out its tongue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285908.jpg', 'caption': 'A polar bear covered in snow sticks out his tongue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285908.jpg', 'caption': 'a polar bear sticking its black tongue out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076170.jpg', 'caption': 'A young boy holding a frisbee in one hand against his cheek. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076170.jpg', 'caption': 'a small boy in a blue shirt and a red frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076170.jpg', 'caption': 'A boy getting his picture taken with his Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076170.jpg', 'caption': 'A man is holding a Frisbee up to his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076170.jpg', 'caption': 'A young boy holding a Frisbee to his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499104.jpg', 'caption': 'two polar bears playing with each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499104.jpg', 'caption': 'Two polar bears are playing with their mouths open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499104.jpg', 'caption': \"Two Polar bears biting towards each other's face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499104.jpg', 'caption': 'Two polar bears are playing on the ice. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499104.jpg', 'caption': 'Two polar bears putting their faces close to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367881.jpg', 'caption': 'The big grey bear is staring at something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367881.jpg', 'caption': 'A bear that is standing in front of a rock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367881.jpg', 'caption': 'a big bear that is staring at a camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367881.jpg', 'caption': 'A grizzle bear with an indifferent look while in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367881.jpg', 'caption': 'A bear looking forward in a forest. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183359.jpg', 'caption': 'A polar bear is walking on snow and has one paw up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183359.jpg', 'caption': 'A lone polar bear makes its way across the ice at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183359.jpg', 'caption': 'a bear that is walking on a snow field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183359.jpg', 'caption': 'A lone polar bear walking across a frozen landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183359.jpg', 'caption': 'a polar bear walking around on the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260896.jpg', 'caption': 'A black bear with a white marking on its chest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260896.jpg', 'caption': 'a bear on a dirt ground near a fallen branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260896.jpg', 'caption': 'Bear on back feet growling in direction of the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260896.jpg', 'caption': 'A black bear standing on top of a log.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260896.jpg', 'caption': 'A bear that is sitting on a small log.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005184.jpg', 'caption': 'A pair of grizzly bears mating with each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005184.jpg', 'caption': 'Two brown bears romp and play with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005184.jpg', 'caption': 'There is an image of a bear jumping on another bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005184.jpg', 'caption': 'A bear biting the neck of another bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005184.jpg', 'caption': 'Two brown bears, one bear climbing over the larger of the two.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201318.jpg', 'caption': 'A polar bear is standing on hind legs near another sitting polar bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201318.jpg', 'caption': 'two white polar bears are playing in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201318.jpg', 'caption': 'I hope the bears are not getting ready to have a fight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201318.jpg', 'caption': 'A couple of polar bears sitting and laying next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201318.jpg', 'caption': 'Two big polar bears playing in a lot if anow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534935.jpg', 'caption': 'a big brown bear walking through some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534935.jpg', 'caption': 'A bear wandering through some tall grass by a paved trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534935.jpg', 'caption': 'a close up of a bear walking in a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534935.jpg', 'caption': 'A big brown bear walking through a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534935.jpg', 'caption': 'A bear walking in the grass near a trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502084.jpg', 'caption': 'A couple of polar bears in a snowy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502084.jpg', 'caption': 'Two polar bears in snowy area with small shrubs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502084.jpg', 'caption': 'There are two polar bears playing together in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502084.jpg', 'caption': 'Two polar bears are wrestling in a snowy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502084.jpg', 'caption': 'Two large white polar bears playing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100329.jpg', 'caption': 'A brown bear trying to open a picnic cooler. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100329.jpg', 'caption': 'A bear is shown trying to get into a man made object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100329.jpg', 'caption': 'a bear on rocks nad fallen branches ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100329.jpg', 'caption': 'A brown bear is laying down on some rocks outdoors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100329.jpg', 'caption': 'A large brown bear standing on top of a pile of rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492723.jpg', 'caption': 'A large polar bear playing with two balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492723.jpg', 'caption': 'A polar bear with a green ball and a yellow ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492723.jpg', 'caption': 'A close up of a polar bear playing with a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492723.jpg', 'caption': 'A polar bear swimming and playing with two balls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492723.jpg', 'caption': 'A bear in the water with two balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493067.jpg', 'caption': 'A polar bear is playing with a ball in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493067.jpg', 'caption': 'A white polar bear plays with toys in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493067.jpg', 'caption': 'A polar bear playing in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493067.jpg', 'caption': 'a polar bear playing with a toy in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493067.jpg', 'caption': 'The polar bear definitely wants to keep that ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224907.jpg', 'caption': 'A polar bear in the water at a zoo with two balls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224907.jpg', 'caption': 'this is a white tiger in a swimming pool', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224907.jpg', 'caption': 'A polar bear swimming in the icy waters playing with a couple of colored balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224907.jpg', 'caption': 'A polar-bear playing with balls in the water.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224907.jpg', 'caption': 'An adult polar bear playing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219174.jpg', 'caption': 'A large brown bear walking across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219174.jpg', 'caption': 'a bear walking on grass next to trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219174.jpg', 'caption': 'the brown bear walks infront of the viewing glass at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219174.jpg', 'caption': 'A gray bear in the park with grass and trees at the back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219174.jpg', 'caption': 'A brown bear seen through the glass of its enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561027.jpg', 'caption': 'A mother polar bear leads her cubs through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561027.jpg', 'caption': 'A group of polar bears walk across a snowy expanse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561027.jpg', 'caption': 'Three polar bears walk across a snowy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561027.jpg', 'caption': 'Two polar bears walk across a snowy tundra. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561027.jpg', 'caption': 'An adult polar bear with two baby bears following on the snow.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000449567.jpg', 'caption': 'A group of hot women sitting at a table in front of a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449567.jpg', 'caption': 'Several girls sit on the other side of a large pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449567.jpg', 'caption': 'three women at a table some drinks and a large pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449567.jpg', 'caption': 'a very big pizza in the middle of a table ready to be eaten', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449567.jpg', 'caption': 'A group of women are sitting over a table with a large pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255627.jpg', 'caption': 'A man holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255627.jpg', 'caption': 'Male hitting a tennis ball with a racket ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255627.jpg', 'caption': 'A tennis player is trying to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255627.jpg', 'caption': 'A man swinging a tennis racket on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255627.jpg', 'caption': 'A man is playing tennis at night on a blue court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437732.jpg', 'caption': 'A man hitting a tennis ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437732.jpg', 'caption': 'a man is swinging a racket at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437732.jpg', 'caption': 'A tennis player with a racket and ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437732.jpg', 'caption': 'A man holding a tennis racket is hitting a ball on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437732.jpg', 'caption': 'Man with tennis racket up in front of oncoming tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540159.jpg', 'caption': 'A very nice looking living room with a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540159.jpg', 'caption': 'A den with a couch, table, lamp, makeup bag and blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540159.jpg', 'caption': 'A room containing a couch with matching wooden end and coffee tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540159.jpg', 'caption': 'A lamp on a table in a livingroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540159.jpg', 'caption': 'A couch with an afghan and a lamp that is turned on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057403.jpg', 'caption': 'The office desk is still a mess and the computer is left on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057403.jpg', 'caption': 'a desk with a lamp a laptop and a mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057403.jpg', 'caption': 'The light shines on a cluttered desk with a laptop on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057403.jpg', 'caption': 'there is a desk with a laptop and some drinks on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057403.jpg', 'caption': 'A messy and unorganized workspace with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291115.jpg', 'caption': 'A remote controller packed in a case of some sort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291115.jpg', 'caption': 'A remote control jokingly entitled control a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291115.jpg', 'caption': 'A wooden table with a remote control that reads \"control a woman.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291115.jpg', 'caption': 'Remote control to Control A Woman still new in package.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291115.jpg', 'caption': 'A remote control in packaging that says control a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508872.jpg', 'caption': 'the young couple is laughing over the toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508872.jpg', 'caption': 'two people and one is holding a green tooth brush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508872.jpg', 'caption': 'Two pretty young ladies holding a green toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508872.jpg', 'caption': 'A girl holding a green toothbrush as a guy in the back looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508872.jpg', 'caption': 'Two teenagers are close together with a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052312.jpg', 'caption': 'The old man literally has a toothbrush mustache.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052312.jpg', 'caption': 'An old man with a tooth brush head under his nose, mimicking Hitler', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052312.jpg', 'caption': 'A man wearing a toothbrush for a moustache.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052312.jpg', 'caption': 'A man with the head of a toothbrush under his nose like a mustache ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052312.jpg', 'caption': 'An elderly man wearing the head of a toothbrush as a moustache.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540473.jpg', 'caption': 'A man standing next to a woman in front of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540473.jpg', 'caption': 'two people playing a video game with wii motes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540473.jpg', 'caption': 'The couple is having fun playing the game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540473.jpg', 'caption': 'Two people playing on a Wii in a living room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540473.jpg', 'caption': 'Two people holding remotes in their hands standing near a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027805.jpg', 'caption': 'A boy putting something in his mouth and smiling for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027805.jpg', 'caption': 'A young blonde child smiles and sucks on something in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027805.jpg', 'caption': 'a small child is chewing on something blue', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027805.jpg', 'caption': 'A smiling blue-eyed boy toddler chewing on a plastic object. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027805.jpg', 'caption': 'A small boy chewing on a blue and white toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410101.jpg', 'caption': 'a man that is playing a wii game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410101.jpg', 'caption': 'A young man playing the Wii in the living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410101.jpg', 'caption': 'A man is playing a video game in the living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410101.jpg', 'caption': 'A man getting into playing the game of Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410101.jpg', 'caption': 'A man is standing in a room holding a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308156.jpg', 'caption': 'A living room consisting of windows, rugs, chairs, and a coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308156.jpg', 'caption': 'A living room with couches, chairs and box coffee table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308156.jpg', 'caption': 'A living room with multiple couches and chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308156.jpg', 'caption': 'The house has an open concept, and comfortable furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308156.jpg', 'caption': 'A room with two chairs and a couch in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531852.jpg', 'caption': 'Two guys holding wii remotes standing up playing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531852.jpg', 'caption': 'Men in a living room stand while they hold controllers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531852.jpg', 'caption': 'Two men standing in a living room holding Wii controllers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531852.jpg', 'caption': 'A couple of men go head to head playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531852.jpg', 'caption': 'Two men in a room playing video games', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512223.jpg', 'caption': 'A couch and pillows in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512223.jpg', 'caption': 'The living room boasts a comfortable leather sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512223.jpg', 'caption': 'A brown leather couch sitting on top of a living room floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512223.jpg', 'caption': 'A brown leather couch sits at the bottom of the steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512223.jpg', 'caption': 'a brown leather couch in a living room ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473210.jpg', 'caption': 'two people taking apart their wii controllers to replace batteries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473210.jpg', 'caption': 'People taking apart video game remote controls on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473210.jpg', 'caption': 'People handling a couple of remotes taking them apart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473210.jpg', 'caption': 'two sets of hands a wooden table and two controllers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473210.jpg', 'caption': 'Two people who are taking apart a video game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415163.jpg', 'caption': \"A group of people standing around a TV with a video game on it's display.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415163.jpg', 'caption': 'People stand around TVs and play with Wii remotes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415163.jpg', 'caption': \"Several people standing in front of TV's with wii remotes in their hands.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415163.jpg', 'caption': 'A group of people standing around televisions. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415163.jpg', 'caption': 'A girl and guy looking at a TV in a room with other people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353969.jpg', 'caption': 'there is a man and a woman playing a video game together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353969.jpg', 'caption': 'A woman holding a Nintendo Wii game controller next to a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353969.jpg', 'caption': 'A couple of people standing in a room with remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353969.jpg', 'caption': 'A man holds his ears as a woman smiles with a video game remote next to him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353969.jpg', 'caption': 'A man and women who are playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082150.jpg', 'caption': 'A male holding video game accessories in front of his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082150.jpg', 'caption': 'A boy holds two video game controllers while sitting on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082150.jpg', 'caption': 'The guy is resting on his bed and holding the bed control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082150.jpg', 'caption': 'A man is holding up video game controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082150.jpg', 'caption': 'A boy is holding up two different Wii controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325351.jpg', 'caption': '2 men sit on the couch, video game controllers in hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325351.jpg', 'caption': 'Two guys sitting down holding small steering wheels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325351.jpg', 'caption': 'Two mean playing a driving game with steering wheels in their hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325351.jpg', 'caption': 'Two guys sitting on a couch playing a racing game on the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325351.jpg', 'caption': 'Two men playing a game with steering wheel controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217546.jpg', 'caption': 'A group of friends sits in their living room while playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217546.jpg', 'caption': 'Men and women sitting on a green couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217546.jpg', 'caption': 'White people looking ridiculous playing wii and drinking beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217546.jpg', 'caption': 'Group of people sitting down eating and drinking watching something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217546.jpg', 'caption': 'A group of people drink bears and snack while some hold video game controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309104.jpg', 'caption': 'A man standing next to a red ball on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309104.jpg', 'caption': 'The group of players is enjoying the video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309104.jpg', 'caption': 'people watching something while in a living room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309104.jpg', 'caption': 'A group of people playing Wii in a living room setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309104.jpg', 'caption': 'A group of people playing Wii games together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514787.jpg', 'caption': 'A couple of photos of a group of people playing with interactive a gaming unit..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514787.jpg', 'caption': 'A photo collage of two people playing a remote video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514787.jpg', 'caption': 'Compilation of photos showing adults using video game controller in room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514787.jpg', 'caption': 'a couple of people that have a wii remote in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514787.jpg', 'caption': 'Many shots of people playing Nintendo wiki in household', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549109.jpg', 'caption': 'Black and white dog sitting on a futon near a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549109.jpg', 'caption': 'A dog sits on the futon in a small living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549109.jpg', 'caption': 'A television and a dog on a couch in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549109.jpg', 'caption': 'A small living room has a futon sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549109.jpg', 'caption': 'A dog sitting on a coach in a living room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026584.jpg', 'caption': 'A Nintendo Wii game console box sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026584.jpg', 'caption': 'The manufacturers box for the Nintendo wii on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026584.jpg', 'caption': 'Box with picture of a hand holding a Nintendo wii remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026584.jpg', 'caption': 'A new WII game is still in the box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026584.jpg', 'caption': 'This is a photo of a Wii video game console box. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416304.jpg', 'caption': 'Two men play against each other in Wii Bowling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416304.jpg', 'caption': 'two men stand and play with Wii remotes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416304.jpg', 'caption': 'Two men playing a game on a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416304.jpg', 'caption': 'Two men play Wii bowling at an event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416304.jpg', 'caption': 'Two men playing a game with Wii remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570188.jpg', 'caption': 'Two people playing a video game while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570188.jpg', 'caption': 'Several people watching a kneeling woman use a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570188.jpg', 'caption': 'a woman is playing a game with her friends ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570188.jpg', 'caption': 'A woman with a Wii remote stands in front of a group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570188.jpg', 'caption': 'Several people watching a young women play a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167610.jpg', 'caption': 'Group of Asian young males and female smiling and laughing while looking in the same direction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167610.jpg', 'caption': 'A group of people who are playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167610.jpg', 'caption': 'Two friends are gathered to play the wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167610.jpg', 'caption': 'a bunch of people are laughing in a living room while two people hold Wii controllers in their hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167610.jpg', 'caption': 'A group of young people laughing and having fun playing Wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353347.jpg', 'caption': 'A woman holding onto a man while standing in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353347.jpg', 'caption': 'A woman that is standing next to a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353347.jpg', 'caption': 'A group of people playing a game with some remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353347.jpg', 'caption': 'A young woman is hugging a tall man in a big room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353347.jpg', 'caption': 'A man and woman playfully hugging near group of others', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060569.jpg', 'caption': 'A smiling woman looks to be playing a Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060569.jpg', 'caption': 'a woman with glasses is placing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060569.jpg', 'caption': 'A woman in a room playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060569.jpg', 'caption': 'An asian woman holding a Nintendo Wii game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060569.jpg', 'caption': 'This is an image of woman playing wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552832.jpg', 'caption': 'A couple of people sitting on top of a brown couch in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552832.jpg', 'caption': 'A couple of people and a television in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552832.jpg', 'caption': 'Two people are aiming controllers at the television set while other sit on the sofa watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552832.jpg', 'caption': 'A group of people playing a video game with remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552832.jpg', 'caption': 'Teenagers are gathered around a WII video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351345.jpg', 'caption': 'A woman standing in a room with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351345.jpg', 'caption': 'A woman stands with her teeth showing while holding a Wii remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351345.jpg', 'caption': 'An excited woman playing a game with a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351345.jpg', 'caption': 'A woman looking very intense while playing WII.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351345.jpg', 'caption': 'A woman playing a WII game with intensity', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155546.jpg', 'caption': 'The living room has a leather couch near a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155546.jpg', 'caption': 'Living room scene with a leather couch facing a large screen tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155546.jpg', 'caption': 'A living room with a leather sofa, tables and tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155546.jpg', 'caption': 'A living room with a large sofa and a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155546.jpg', 'caption': 'This living room includes a leather couch and a TV on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481518.jpg', 'caption': 'Two people standing in a living room holding remotes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481518.jpg', 'caption': 'A couple playing video games in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481518.jpg', 'caption': 'A man and a woman are playing a video game using remote controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481518.jpg', 'caption': 'two people standing in a room with some wii motes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481518.jpg', 'caption': 'A man and a woman standing near each other playing wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533743.jpg', 'caption': 'Two men who are playing video games together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533743.jpg', 'caption': 'A couple of guys are playing the Nintendo Wii. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533743.jpg', 'caption': 'two men stand in a living room pointing wii remotes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533743.jpg', 'caption': 'Two men play a game on the Wii in a room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533743.jpg', 'caption': 'Two adult males enjoy playing a videogame together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164759.jpg', 'caption': 'a living room with a long couch in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164759.jpg', 'caption': 'A den with a couch, chair, table, mirror and a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164759.jpg', 'caption': 'A living room with hardwood floors is sparsely decorated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164759.jpg', 'caption': 'The living room is clean and empty of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164759.jpg', 'caption': 'a very large room with some furniture in the inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277984.jpg', 'caption': 'A decorated living room with two green chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277984.jpg', 'caption': 'There are many chairs in a small living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277984.jpg', 'caption': 'Two chairs are covered with green seat covers in a small room that also features a a dark wood table and two chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277984.jpg', 'caption': 'A room is furnished with many items including chairs and a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277984.jpg', 'caption': 'Room with cramped quarters holding dining table set and extra chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463290.jpg', 'caption': 'a family sitting in the living room with one of them petting a dog ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463290.jpg', 'caption': 'some people and a brown and white dog a lamp and chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463290.jpg', 'caption': 'A relaxing family gathering in the living room\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463290.jpg', 'caption': 'A group of people sitting around a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463290.jpg', 'caption': 'Several people in a living room with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361527.jpg', 'caption': 'Apple computer monitor with a keyboard and mouse next to a ipod', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361527.jpg', 'caption': 'An Apple computer monitor and early generation iPod sitting on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361527.jpg', 'caption': 'A desktop computer with a grassy field background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361527.jpg', 'caption': 'A computer screen keyboard mouse and an Ipod', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361527.jpg', 'caption': 'A PC with a large flat screen on a desk in a yellow room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296255.jpg', 'caption': 'a man hitting a tennis ball with a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296255.jpg', 'caption': 'A man hitting a tennis ball with a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296255.jpg', 'caption': 'A tennis player is getting ready to serve a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296255.jpg', 'caption': 'A tennis player holding his racket swinging at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296255.jpg', 'caption': 'A man is action on a brown tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243158.jpg', 'caption': 'A picture of someones living room with two sofas and a coffee table with a blue flower vase on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243158.jpg', 'caption': 'A couch and a table in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243158.jpg', 'caption': 'Two white couches and a brown table sit in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243158.jpg', 'caption': 'A small sofa is standing in front of a blue wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243158.jpg', 'caption': 'The living room has a open feel to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096539.jpg', 'caption': 'a man sitting in a chair watching tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096539.jpg', 'caption': 'A man sitting on a chair in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096539.jpg', 'caption': 'The man is i the room by himself playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096539.jpg', 'caption': 'A man is sitting in a brown chair with a gold cover watching television. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096539.jpg', 'caption': 'A man sitting, playing a game on a wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553471.jpg', 'caption': 'An alarm clock sitting under a large hammer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553471.jpg', 'caption': 'an alarm clock with an image of a sledge hammer over it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553471.jpg', 'caption': 'Alarm clock with white face and hammer ready to strike it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553471.jpg', 'caption': 'A clock with the hands facing some of the numbers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553471.jpg', 'caption': \"An old bell alarm clock dinging at 6:00 o'clock\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371036.jpg', 'caption': 'A person flies a large yellow kite on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371036.jpg', 'caption': 'A man is flying a very large kite for trying to hang glide', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371036.jpg', 'caption': 'a man that is flying a big yellow kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371036.jpg', 'caption': 'A person flying a very large kite under a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371036.jpg', 'caption': 'The person is flying a kit in the empty field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482236.jpg', 'caption': 'a man that is flying some kind of kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482236.jpg', 'caption': 'two people on a beach with a kite in the sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482236.jpg', 'caption': 'some people on the beach flying an air kite that looks like a real bird', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482236.jpg', 'caption': 'people standing on the beach below a kite shaped like a bird', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482236.jpg', 'caption': 'A couple of people in the sand looking at a plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298933.jpg', 'caption': 'A woman standing on top of a sandy beach under a flying kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298933.jpg', 'caption': 'A woman and a child with a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298933.jpg', 'caption': 'a little girl flying a butterfly shaped kite on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298933.jpg', 'caption': 'There are people standing on the sand at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298933.jpg', 'caption': 'A woman watches a child play with a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233848.jpg', 'caption': 'A man in a field works to get a kite off the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233848.jpg', 'caption': \"It's a chilly morning here in the village. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233848.jpg', 'caption': 'A person flying a kite in a field, with a windmill and church in the background among other buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233848.jpg', 'caption': 'A kite on a field in the country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233848.jpg', 'caption': 'An open field with a kite and a person in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475917.jpg', 'caption': 'A park with lots of people flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475917.jpg', 'caption': 'A large group of people flying kites in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475917.jpg', 'caption': 'A group of people standing around a field together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475917.jpg', 'caption': 'Many people flying kites in a park on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475917.jpg', 'caption': 'a number of people standing in a field with many kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398450.jpg', 'caption': 'Many people flying kites at the mall in Washington DC', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398450.jpg', 'caption': 'A big kite fly in event at a national landmark. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398450.jpg', 'caption': 'Several people flying kits with Washington monument and cloudy sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398450.jpg', 'caption': 'hundreds of people in a bright field near an obelisk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398450.jpg', 'caption': 'A bunch of people flying their kites in a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026432.jpg', 'caption': 'A group of people fly kites into the air on a large grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026432.jpg', 'caption': 'Group of people outdoors flying kites together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026432.jpg', 'caption': 'A group of people flying kites at an outdoor convention', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026432.jpg', 'caption': 'A photo of a crowd in an open area with dozens of kites in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026432.jpg', 'caption': 'some people on some brown grass and kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281782.jpg', 'caption': 'A woman standing next to a child on a yellow flower and grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281782.jpg', 'caption': 'A person with a child flying a lite in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281782.jpg', 'caption': 'A man flying a kite with a little boy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281782.jpg', 'caption': 'A man and his son in the grass flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281782.jpg', 'caption': 'A man and child are flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487612.jpg', 'caption': 'a close up of many large kites near the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487612.jpg', 'caption': 'A row of kites with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487612.jpg', 'caption': 'The crowd of people are looking to fly their kites. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487612.jpg', 'caption': 'some people outside flying a variety of kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487612.jpg', 'caption': 'People raising a variety giant kites into the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033061.jpg', 'caption': 'A group of people flying many kites in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033061.jpg', 'caption': 'A flock of birds flying in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033061.jpg', 'caption': 'Blue sky with flying persons and people walking below.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033061.jpg', 'caption': 'A group of people in grassy area with kites in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033061.jpg', 'caption': 'A colorful display of kites flying above a city park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241102.jpg', 'caption': 'A young boy holding a kite next to a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241102.jpg', 'caption': 'A boy is running with a kite by the water\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241102.jpg', 'caption': 'The boy stands by the shoreline and prepares to fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241102.jpg', 'caption': 'A little boy nears a big body of water with kite in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241102.jpg', 'caption': 'Young boy holding a kite running by water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039322.jpg', 'caption': 'A man prepares to fly a kite in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039322.jpg', 'caption': 'Two men are flying kites in a field in front of a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039322.jpg', 'caption': 'A man standing on top of a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039322.jpg', 'caption': 'A man holds the string of a kite, as many kites fly in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039322.jpg', 'caption': 'Man standing in grassy field with assistant nearby ready to fly kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412587.jpg', 'caption': 'A man and little kids flying kites in a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412587.jpg', 'caption': 'a man and two kids standing by the water and flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412587.jpg', 'caption': 'a man with two kids playing with some kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412587.jpg', 'caption': 'A man and two young children flying kites. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412587.jpg', 'caption': 'a man and two kids by the water playing with a kite ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421865.jpg', 'caption': 'A group of kites being flown at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421865.jpg', 'caption': 'A beach that has several people flying kites on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421865.jpg', 'caption': 'A beach with various kits flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421865.jpg', 'caption': 'The kite flying on the beach is very organized ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421865.jpg', 'caption': 'Several colorful kites flying across the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257838.jpg', 'caption': 'A man putting an uncooked pizza pie in the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257838.jpg', 'caption': 'A man taking food out of an open oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257838.jpg', 'caption': 'a man loads a pan of food into his kitchen stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257838.jpg', 'caption': 'Adult at open oven with panned food items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257838.jpg', 'caption': 'A man takes a hot dish out of an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499093.jpg', 'caption': 'a bunch of people slying kites on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499093.jpg', 'caption': 'Several parachutes that are flying in the sky above the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499093.jpg', 'caption': 'People on a beach fly pink and blue para sails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499093.jpg', 'caption': 'Several people on the beach flying parasols near the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499093.jpg', 'caption': 'several people in the ocean flying kite sails', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291962.jpg', 'caption': 'a kid running with a kite in his hand outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291962.jpg', 'caption': 'Boy flying his kite outside in the yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291962.jpg', 'caption': 'A small boy flies a multi colored kite with an old house in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291962.jpg', 'caption': 'there is a young boy flying a kite on the lawn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291962.jpg', 'caption': 'A little boy flying his kite in the yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147904.jpg', 'caption': 'A person flies a kite on a stormy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147904.jpg', 'caption': 'Two men are flying kites on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147904.jpg', 'caption': 'A man flying a kite under a sky darkening with storm', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147904.jpg', 'caption': 'A couple of people in a field flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147904.jpg', 'caption': 'A person kicks a ball on a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162445.jpg', 'caption': 'Kites flown in large grassy open area with numerous onlookers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162445.jpg', 'caption': 'There are several kites in the air and several people standing in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162445.jpg', 'caption': 'Many people stand in the field flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162445.jpg', 'caption': 'A group of people standing on a field flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162445.jpg', 'caption': 'There are many people flying kites on this day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525666.jpg', 'caption': 'A sailboat in the middle of the ocean with people on the shore. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525666.jpg', 'caption': 'Some people are having fun in the ocean on a sunny day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525666.jpg', 'caption': 'A person wind sailing next to a person para sailing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525666.jpg', 'caption': 'A wind surfer and a kiteboarder are on the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525666.jpg', 'caption': 'A man para-sailing on the ocean during a blustery day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492524.jpg', 'caption': 'A person standing and watching a kite fly in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492524.jpg', 'caption': 'A man flying a kite on a very cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492524.jpg', 'caption': 'A person standing on a cloudy day flying a box kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492524.jpg', 'caption': 'A man looks at a kite flying high above the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492524.jpg', 'caption': 'A man that is standing up with a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531149.jpg', 'caption': 'PEOPLE ON A BEACH WITH TENTS AND FLYING OBJECT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531149.jpg', 'caption': 'Group of people with tents on shore of lake and mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531149.jpg', 'caption': 'a person siting on a beach with a number of kites ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531149.jpg', 'caption': 'A few wind sails rest on the beach next to some people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531149.jpg', 'caption': 'a field that has a bunch of kites in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470909.jpg', 'caption': 'A clock mounted to the side of a wall over desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470909.jpg', 'caption': 'A classroom with desks and a wall clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470909.jpg', 'caption': 'A very big dim lit room with some desks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470909.jpg', 'caption': 'A classroom with a few wooden desks and various pictures on the walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470909.jpg', 'caption': 'An empty classroom with posters on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157109.jpg', 'caption': 'A sail flying in the air over water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157109.jpg', 'caption': 'a kite surfer in a white top water and clouds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157109.jpg', 'caption': 'A man is in the water parasailing ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157109.jpg', 'caption': 'A person parasailing in the ocean on a cloudy day ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157109.jpg', 'caption': 'A woman riding a wave on top of the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551518.jpg', 'caption': 'A man standing in a lush green field flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551518.jpg', 'caption': 'a person in a field flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551518.jpg', 'caption': 'A man is flying a rectangle shaped kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551518.jpg', 'caption': 'A man flying a kite in a city park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551518.jpg', 'caption': 'A young male is flying a kite in cloudy sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294182.jpg', 'caption': 'A man and child fly a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294182.jpg', 'caption': 'A man and a small child flying a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294182.jpg', 'caption': 'A man sitting on a beach flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294182.jpg', 'caption': 'A man and a young child on a beach flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294182.jpg', 'caption': 'A parent helps a young child fly a kite on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242208.jpg', 'caption': 'A woman is talking on her phone while walking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242208.jpg', 'caption': 'a lady using her cell phone while walking down the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242208.jpg', 'caption': 'A woman in black dress on street with a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242208.jpg', 'caption': 'A pretty young lady talking on a phone walking past a red plastic fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242208.jpg', 'caption': 'a woman talking a cell phone as she walks by some red windows ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192806.jpg', 'caption': 'a woman standing by the road while talking on a cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192806.jpg', 'caption': 'woman talks on phone as she stands on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192806.jpg', 'caption': 'A woman that is holding a cellphone and purse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192806.jpg', 'caption': 'A woman talking on a phone standing on the side of a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192806.jpg', 'caption': 'a woman is on her cell phone on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464274.jpg', 'caption': 'A man dressed in green talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464274.jpg', 'caption': 'A man walking down a street while talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464274.jpg', 'caption': 'A man wearing a hate talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464274.jpg', 'caption': 'A man dressed in a costume stands next to the street talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464274.jpg', 'caption': 'a man with a green hat is talking on a cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303024.jpg', 'caption': 'the ball is coming toward the batter and the catcher is ready', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303024.jpg', 'caption': 'The baseball player is wearing a bright gold helmet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303024.jpg', 'caption': 'A baseball player holding a bat next to home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303024.jpg', 'caption': 'A baseball player in mid swing and catcher holding glove extended as the pitch arrives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303024.jpg', 'caption': 'A man that is standing in the dirt with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432239.jpg', 'caption': 'A baseball player holding a bat on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432239.jpg', 'caption': 'The player is running while carrying a baseball bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432239.jpg', 'caption': 'A man runs on a baseball field with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432239.jpg', 'caption': 'A baseball player running across a field holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432239.jpg', 'caption': 'A Minnesota Twins bat boy running with a bat on a baseball diamond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002529.jpg', 'caption': 'The clock on the corner of the sidewalk reads 4:38.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002529.jpg', 'caption': 'A picture of a very tall clock on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002529.jpg', 'caption': 'A street with houses and cars traveling down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002529.jpg', 'caption': 'A clock is shown at the top of a pole near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002529.jpg', 'caption': 'A clocktower standing next to a building-lined street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506628.jpg', 'caption': 'A big clock on a post sits on the city sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506628.jpg', 'caption': 'a small pole with a clock is on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506628.jpg', 'caption': 'A clock tower sitting in the middle of a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506628.jpg', 'caption': 'a clock atop a pole at an intersection ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506628.jpg', 'caption': 'Clock with street name sits by city street with car moving on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136642.jpg', 'caption': 'A baseball team playing a baseball game on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136642.jpg', 'caption': 'A baseball hitter with his bat on the ground in running position.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136642.jpg', 'caption': 'This baseball player has just batted and is about to run it out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136642.jpg', 'caption': 'A baseball player dropping his bat and running on a baseball diamond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136642.jpg', 'caption': 'A baseball game in progress with the batter on the run.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526800.jpg', 'caption': 'Two baseball players with bats in their hands. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526800.jpg', 'caption': 'Two baseball players are walking on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526800.jpg', 'caption': 'A baseball player walks off the diamond while another player throws his hands and bat up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526800.jpg', 'caption': 'The baseball players have words with each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526800.jpg', 'caption': 'One baseball player is returning to the dugout, another is ready to bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249184.jpg', 'caption': 'An organized baseball team near a batting cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249184.jpg', 'caption': 'The men are playing a game of baseball on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249184.jpg', 'caption': 'A group of men holding baseball bats on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249184.jpg', 'caption': 'The practicing team is wearing maroon and white uniforms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249184.jpg', 'caption': 'This is a picture of a baseball team getting ready for a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322848.jpg', 'caption': 'The baseball batter checks his stance by pointing his bat at the plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322848.jpg', 'caption': 'A baseball player steps into the batters box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322848.jpg', 'caption': 'A baseball player standing at home plate, hitting his bat on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322848.jpg', 'caption': 'baseball players at home plate waiting for pitch\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322848.jpg', 'caption': 'A man on a field holding a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138553.jpg', 'caption': 'A baseball player is up to bat at the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138553.jpg', 'caption': 'there is a male baseball player that is at the base', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138553.jpg', 'caption': 'A baseball player holding a bat on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138553.jpg', 'caption': 'A batter and a catcher are ready for the pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138553.jpg', 'caption': 'a baseball player looks at the catcher ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281688.jpg', 'caption': 'A baseball player kneeling down next to a base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281688.jpg', 'caption': 'A close up of a batter, umpire and catcher at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281688.jpg', 'caption': 'The baseball player is is ready to throw the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281688.jpg', 'caption': 'Players in a baseball game are on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281688.jpg', 'caption': 'A baseball catcher begins to throw the baseball to the pitcher', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231281.jpg', 'caption': 'a baseball swinging a baseball bat at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231281.jpg', 'caption': 'A baseball player is swinging a bat at a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231281.jpg', 'caption': 'A baseball game is being played on a dirt and grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231281.jpg', 'caption': 'A batter is swinging to hit a baseball as the catcher readies to catch it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231281.jpg', 'caption': 'A baseball player taking a swing at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575051.jpg', 'caption': 'A baseball player is standing up to bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575051.jpg', 'caption': 'A baseball player swinging a bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575051.jpg', 'caption': 'Baseball player in a grey uniform holding up a baseball bat at the plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575051.jpg', 'caption': 'A baseball batter, catcher, and umpire get ready for the pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575051.jpg', 'caption': 'A baseball player holding a bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386819.jpg', 'caption': 'giant colgate clock sits on shore next to water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386819.jpg', 'caption': 'A photo of a large clock on the shore of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386819.jpg', 'caption': 'A large circular clock near a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386819.jpg', 'caption': 'large tourist clock near a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386819.jpg', 'caption': 'A large Colgate clock sitting on the shore next to a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105973.jpg', 'caption': 'A baseball player holding a bat next to home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105973.jpg', 'caption': 'A baseball player holding a bat in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105973.jpg', 'caption': 'A baseball player steps up to the plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105973.jpg', 'caption': 'Home plate at a professional baseball game, batter not quite ready.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105973.jpg', 'caption': 'The baseball player is getting ready to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099219.jpg', 'caption': 'a person swinging a baseball bat at a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099219.jpg', 'caption': 'A pitcher throws a ball to a batter ready to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099219.jpg', 'caption': 'A man pitching a ball to a man holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099219.jpg', 'caption': 'Two men to run down field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099219.jpg', 'caption': 'A couple of people that are playing with a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012209.jpg', 'caption': 'A baseball player holding a baseball bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012209.jpg', 'caption': 'A baseball player holding a bat at the baseball game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012209.jpg', 'caption': 'A batter prepares to step up to bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012209.jpg', 'caption': 'A baseball player preparing to bat on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012209.jpg', 'caption': 'A batter swings at a ball behind a fence on a baseball diamond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455005.jpg', 'caption': 'A baseball player swinging a bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455005.jpg', 'caption': 'A baseball flies towards a batter, catcher and umpire. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455005.jpg', 'caption': 'A batter has swung and hit the baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455005.jpg', 'caption': 'Professional baseball player hitting a ball during daytime.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455005.jpg', 'caption': 'The batter, catcher and umpire during a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378970.jpg', 'caption': 'a man bunting the baseball with his bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378970.jpg', 'caption': 'The baseball player is hitting the ball with the bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378970.jpg', 'caption': 'A man is about to hit a ball during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378970.jpg', 'caption': 'A baseball player with bat hitting the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378970.jpg', 'caption': 'A man with a baseball bat that is standing near a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008065.jpg', 'caption': 'A baseball player swinging a baseball bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008065.jpg', 'caption': 'A man swinging a bat while playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008065.jpg', 'caption': 'A man in a baseball uniform swinging his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008065.jpg', 'caption': 'Baseball player in the motion of swinging at a baseball coming towards him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008065.jpg', 'caption': 'A batter swings a baseball bat as the catcher prepares to catch the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266376.jpg', 'caption': 'A baseball player holding a bat on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266376.jpg', 'caption': 'Baseball player looks out to field while starting to run down first base line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266376.jpg', 'caption': 'a baseball player with a black bat is running', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266376.jpg', 'caption': 'A baseball player with a bat is running off the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266376.jpg', 'caption': 'A baseball player is on the field holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462931.jpg', 'caption': 'A baseball player holding a bat walking across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462931.jpg', 'caption': 'Player walking away from home plate carrying bat during game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462931.jpg', 'caption': 'A baseball player running away from the base with his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462931.jpg', 'caption': 'A professorial baseball player hitting a ball in a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462931.jpg', 'caption': 'A man that is standing in the dirt with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005385.jpg', 'caption': 'On a baseball diamond, a player holds a bat while in front of a catcher in gray and an umpire in black.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005385.jpg', 'caption': 'A baseball player standing on top of a base on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005385.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005385.jpg', 'caption': 'A batter is up to the base getting ready to swing at the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005385.jpg', 'caption': \"Travis d'Arnaud, baseball catcher for the New York Mets, is at bat.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101860.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101860.jpg', 'caption': 'A batter, catcher and umpire are on a baseball diamond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101860.jpg', 'caption': 'A baseball field showing the catcher, umpire and a person up batting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101860.jpg', 'caption': 'A group of men playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101860.jpg', 'caption': 'there is a baseball player at bat that is preparing for the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561745.jpg', 'caption': 'A baseball player taking a swing at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561745.jpg', 'caption': 'A group of baseball players standing on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561745.jpg', 'caption': 'a man bunting the ball at home plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561745.jpg', 'caption': 'Some players in action in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561745.jpg', 'caption': 'A batter hit the ball and begins to run to the base', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087393.jpg', 'caption': 'A baseball player taking a swing at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087393.jpg', 'caption': 'The man at bat readies to swing at the pitch while the umpire looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087393.jpg', 'caption': 'A batter, catcher and umpire during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087393.jpg', 'caption': 'A baseball player holding a bat at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087393.jpg', 'caption': 'A batter lifts his left foot as he swings the bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410328.jpg', 'caption': 'Baseball batter misses getting hit by the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410328.jpg', 'caption': 'A baseball player swings his bat at home plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410328.jpg', 'caption': 'A baseball player standing near home plate during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410328.jpg', 'caption': 'A batter just swung through a pitch and the catcher is reaching for the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410328.jpg', 'caption': 'A baseball player moves to avoid getting hit by a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111244.jpg', 'caption': 'Edward, the number 6 baseball player, waiting to bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111244.jpg', 'caption': 'A man stands with a bat on his shoulders.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111244.jpg', 'caption': 'A baseball player named Howard, getting ready to bat at a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111244.jpg', 'caption': 'a baseball player standing on the sidelines during a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111244.jpg', 'caption': 'A man in a white and orange baseball uniform standing with a bat in his hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364073.jpg', 'caption': 'A player in action up to bat in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364073.jpg', 'caption': 'A full view of a baseball player about to swing at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364073.jpg', 'caption': 'The man is hitting the ball during the baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364073.jpg', 'caption': 'a batter hitting a baseball during a game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364073.jpg', 'caption': 'A baseball player hitting a baseball in a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142742.jpg', 'caption': 'A baseball player hitting a ball with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142742.jpg', 'caption': 'A uniformed baseball player holding a bat toward a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142742.jpg', 'caption': 'Uniformed players at the home plate of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142742.jpg', 'caption': 'A man swinging a bat at a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142742.jpg', 'caption': 'Baseball batter ready to strike arriving ball and umpire waiting to catch if he misses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142742.jpg', 'caption': 'A baseball player at home plate who has just hit the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368576.jpg', 'caption': 'A baseball player holding a bat next to home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368576.jpg', 'caption': 'there is a male baseball player that is at base', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368576.jpg', 'caption': 'A baseball player is preparing to go to bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368576.jpg', 'caption': 'some baseball players a pitcher catcher and an umpire', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368576.jpg', 'caption': 'A baseball player holds his bat and waits for the pitch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128142.jpg', 'caption': 'A team of baseball players playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128142.jpg', 'caption': 'A batter standing to the left of home plate while an umpire and catcher look off to the right.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128142.jpg', 'caption': 'An umpire calls a play as the batter and catcher stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128142.jpg', 'caption': 'The batter, catcher and umpire at home plate at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128142.jpg', 'caption': 'Umpire makes a signal during a baseball game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520787.jpg', 'caption': 'Two slices of pizza are being served on a plate.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000231052.jpg', 'caption': 'Satay with peanut sauce and broccoli being enjoyed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231052.jpg', 'caption': 'Broccoli covered in orange-colored sauce sits on a serving platter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231052.jpg', 'caption': 'Chicken with sauce and broccoli is served in a serving dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026512.jpg', 'caption': 'BASEBALL DIAMOND WITH PITCHER ON MOUND READY TO THROW THE BALL', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026512.jpg', 'caption': 'A man pitching a baseball in a baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026512.jpg', 'caption': 'A baseball player is about to throw his pitch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026512.jpg', 'caption': 'A baseball player that is standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026512.jpg', 'caption': 'A baseball player is preparing to throw a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286313.jpg', 'caption': 'Two baseball players and an umpire on a baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286313.jpg', 'caption': 'A man getting ready to hit a baseball, at a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286313.jpg', 'caption': 'A baseball player holding a bat next to home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286313.jpg', 'caption': 'Home base of baseball field with an umpire and catcher squatting down, and a hitter bent legged, holding a bat against shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286313.jpg', 'caption': 'a man that is standing at home plate on a baseball field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549462.jpg', 'caption': 'Someone jumping in the air on their snowboard at the ski slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549462.jpg', 'caption': 'A person on a snowboard doing tricks down a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549462.jpg', 'caption': 'a man is jumping off a snowy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549462.jpg', 'caption': 'a man jumping down part of a hill with a snowboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549462.jpg', 'caption': 'A person on a snowboard is performing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094666.jpg', 'caption': 'A display in a grocery store filled with broccoli and peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094666.jpg', 'caption': 'Assortment of vegetable displayed at outdoor open air market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094666.jpg', 'caption': 'a large basket filled with vegetables for sale', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094666.jpg', 'caption': 'A market with vegetables and produce, including broccoli and red peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094666.jpg', 'caption': 'a number of fruits in plastic crates ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067075.jpg', 'caption': 'close up of a plant with large, gray leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067075.jpg', 'caption': 'A plant with large grey leaves with a green middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067075.jpg', 'caption': 'Green leaves surround the stigma of a plant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067075.jpg', 'caption': 'The flower bud of a cabbage plant is emerging.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067075.jpg', 'caption': 'The center of a plant with lots of leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579201.jpg', 'caption': 'A knife with an apple engaged in it next to an apple computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579201.jpg', 'caption': 'An apple, the fruit, sits in front of an apple computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579201.jpg', 'caption': 'An apple is on the table with an apple computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579201.jpg', 'caption': 'An apple is slit by a bloody knife in front of an Apple device.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579201.jpg', 'caption': 'An apple has a knife in it in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431370.jpg', 'caption': 'A closeup of vegetables that include broccoli and onion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431370.jpg', 'caption': 'A pictture of cooked squash, broccolli, mushrooms, onions and another vegetable.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431370.jpg', 'caption': 'A group of vegetables including broccoli and potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431370.jpg', 'caption': 'A closeup of a salad containing broccoli and mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431370.jpg', 'caption': 'Broccoli, mushrooms, squash and onions on a kabob.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548939.jpg', 'caption': 'A boy standing on a sidewalk by a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548939.jpg', 'caption': 'A skateboarder comes off his board while skating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548939.jpg', 'caption': 'there is a young boy that is standing between some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548939.jpg', 'caption': 'a person with a skate board near a tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548939.jpg', 'caption': 'A man standing next to a skateboard on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307683.jpg', 'caption': 'A blanket that has different types of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307683.jpg', 'caption': 'there are two containers that have different foods in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307683.jpg', 'caption': 'A sandwich in a container and apple on a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307683.jpg', 'caption': 'A boiled egg, bread and an apple all in some containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307683.jpg', 'caption': 'This is a picture of a picnic with an egg, bread, an apple, and more.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474034.jpg', 'caption': 'A woman riding a skateboard down a sidewalk in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474034.jpg', 'caption': 'A young woman skateboarding down a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474034.jpg', 'caption': 'The skateboarder rides alone down the crowded sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474034.jpg', 'caption': 'a person skateboarding down a busy sidewalk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474034.jpg', 'caption': 'A person skateboarding on a sidewalk at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294605.jpg', 'caption': 'Small plate of food with mixed vegetables and meat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294605.jpg', 'caption': 'A dinner plate with chicken, broccoli and corn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294605.jpg', 'caption': 'Goblet along with white plate with piece of meat, broccoli and corn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294605.jpg', 'caption': 'A white plate with a piece of steak next to broccoli and corn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294605.jpg', 'caption': 'A plate of food with some corn, broccoli, and meat on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284681.jpg', 'caption': 'A bowl of steamed broccoli sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284681.jpg', 'caption': 'a large bowl full of broccoli on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284681.jpg', 'caption': 'A white round bowl filled with steamed broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284681.jpg', 'caption': 'A white bowl full of broccoli on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284681.jpg', 'caption': 'Cut green broccoli florets in a white serving bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205911.jpg', 'caption': 'A man skiing alone on a snow capped plains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205911.jpg', 'caption': 'A man kicking up a cloud of snow as he downhill skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205911.jpg', 'caption': 'A skier is cutting through the snow as he makes his way downhill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205911.jpg', 'caption': 'A skier skiing down a mountain in white snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205911.jpg', 'caption': 'A man is wearing sunglasses while skiing down a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365983.jpg', 'caption': 'A person in yellow pants and a blue shirt carries skis up a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365983.jpg', 'caption': 'A skier standing on top of a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365983.jpg', 'caption': 'Someone with skis on his back walking up a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365983.jpg', 'caption': 'A skiier is walking on a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365983.jpg', 'caption': 'Man climbing the side of a mountain ledge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423498.jpg', 'caption': 'two people riding skate boards on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423498.jpg', 'caption': 'Two men roll down the middle of the road on skateboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423498.jpg', 'caption': 'Two men are skateboarding around others walking on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423498.jpg', 'caption': 'Two men with Canada t-shirts on riding their skateboards in a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423498.jpg', 'caption': 'A couple of men riding skateboards down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362103.jpg', 'caption': 'Person on skateboard performs a trick in an empty street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362103.jpg', 'caption': 'The person is riding on their own skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362103.jpg', 'caption': 'a man is doing a trick on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362103.jpg', 'caption': 'A boy is skateboarding and jumping off of the curb. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362103.jpg', 'caption': 'a person skateboarding in an empty parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108243.jpg', 'caption': 'a dried out tree with fruit hanging on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108243.jpg', 'caption': 'A tree is harvesting fruit on its limbs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108243.jpg', 'caption': 'An autumn tree has three pieces of fruit on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108243.jpg', 'caption': 'Apples hanging from a tree that has hardly any leaves on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108243.jpg', 'caption': 'The apples are big and ready to be picked from the tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539079.jpg', 'caption': 'A skier in green pants heading down the slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539079.jpg', 'caption': 'a man wearing bright green pants and black coat skiing ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539079.jpg', 'caption': 'a person turning while skiing down a snowy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539079.jpg', 'caption': 'A man riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539079.jpg', 'caption': 'A person on skis going down a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274835.jpg', 'caption': 'Steak sits on a plate with broccoli and mashed potatoes, next to a glass of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274835.jpg', 'caption': 'A plate with vegetable, mashpotato and steak for dinner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274835.jpg', 'caption': 'A plate filled with a big steak, broccoli, and mashed potato set on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274835.jpg', 'caption': 'a plate of steak, broccoli, and mashed potatoes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274835.jpg', 'caption': 'a steak with mashed potatoes and broccoli next to a water glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364187.jpg', 'caption': 'A large plate is adorned with broccoli and a rather small piece of meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364187.jpg', 'caption': 'A piece of meat on a white plate next to broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364187.jpg', 'caption': 'Broccoli and cooked meat arranged on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364187.jpg', 'caption': 'a plate of food on a table including broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364187.jpg', 'caption': 'Some steak and broccoli served on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530619.jpg', 'caption': 'A man riding a water ski kicking up waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530619.jpg', 'caption': 'A man in red life jacket water skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530619.jpg', 'caption': 'A man water skiing while holding a ski rope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530619.jpg', 'caption': 'A man holding on tight as he skis on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530619.jpg', 'caption': 'A man on a water ski throwing up a wave behind him as he skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452931.jpg', 'caption': 'A cose of a restaurant meal consisting of steak potatoes and broccoli ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452931.jpg', 'caption': 'A dinner plate containing steak with cream sauce, whipped potatoes and squash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452931.jpg', 'caption': 'A plate holds meat covered with gravy, squash, mashed potatoes, and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452931.jpg', 'caption': 'A plate of food containing vegetables and a fritter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452931.jpg', 'caption': 'A plate with chicken fried steak with gravy, mashed potatoes and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251531.jpg', 'caption': 'Many people prefer a rare steak when eating out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251531.jpg', 'caption': 'this is a steak, broccoli and some bread', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251531.jpg', 'caption': 'Someone ordered a medium rare steak with some broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251531.jpg', 'caption': 'A steak dinner with a bowl of steamed broccoli, bread and butter, a bottle of beer and a bottle of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251531.jpg', 'caption': 'A plate on a table with steak, bread, and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223587.jpg', 'caption': 'A plate of chicken and mushrooms next to vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223587.jpg', 'caption': 'a white plate with broccoli chicken and mushrooms', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223587.jpg', 'caption': 'A white plate topped with broccoli and chicken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223587.jpg', 'caption': 'A chicken dish is on a plate smothered in mushrooms next to broccoli florets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223587.jpg', 'caption': 'a plate full of vegetables and some chicken with mushrooms on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493206.jpg', 'caption': 'A white bowl filled with beef and broccoli soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493206.jpg', 'caption': 'This is a vegetable and meat main dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493206.jpg', 'caption': 'A soup in a large bowl features broccoli and pieces of meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493206.jpg', 'caption': 'A soup dish with meat and vegetables in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493206.jpg', 'caption': 'a full bowl of beef and broccoli with a spoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352418.jpg', 'caption': 'a plate with a cooked dish and a spoon sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352418.jpg', 'caption': 'A white plate topped with broccoli and beef.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352418.jpg', 'caption': 'a plate of food that is on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352418.jpg', 'caption': 'This Asian dish features meat and broccoli together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352418.jpg', 'caption': 'The green vegetables offset the dark teriyaki beef in the stir fry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238708.jpg', 'caption': 'A table topped with bowls filled with different vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238708.jpg', 'caption': 'There are three bowls of greens on the counter in this kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238708.jpg', 'caption': 'The table is spread with a variety of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238708.jpg', 'caption': 'Various green vegetables are placed in bowls on the kitchen counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238708.jpg', 'caption': 'A glass bowl of raw broccoli, a ceramic bowl of raw green chili peppers, and steel bowl of raw daikon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036238.jpg', 'caption': 'A pot full of beef and broccoli stew. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036238.jpg', 'caption': 'A broccoli and beef dish with baby corn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036238.jpg', 'caption': 'A pot of food contains meats and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036238.jpg', 'caption': 'Soup with broccoli and meat cooking on a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036238.jpg', 'caption': 'Broccoli and meat in a large pot that is ready for serving. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073668.jpg', 'caption': 'A young person posing for a picture while on skis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073668.jpg', 'caption': 'A boy wearing a red and blue ski outfit gets ready to hit the slopes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073668.jpg', 'caption': 'a young boy on skis smiling at the camera in snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073668.jpg', 'caption': 'A young skier poses for a picture in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073668.jpg', 'caption': 'A young skier in a red jacket goes down hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363358.jpg', 'caption': 'A couple plates of food and a bowl on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363358.jpg', 'caption': 'Three plates of food sit on a checkered tablecloth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363358.jpg', 'caption': 'a plate of broccoli a bowl of soup and a plate of meat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363358.jpg', 'caption': 'A plate of broccoli sitting on a table with checkered tablecloth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363358.jpg', 'caption': 'Several dishes are ready in plates and bowl on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274549.jpg', 'caption': 'The skier in the orange coat is riding on a trail between the trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274549.jpg', 'caption': 'A man who is skiing down a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274549.jpg', 'caption': 'Ski patrol skier going through a snowy and forested area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274549.jpg', 'caption': 'A person in an orange jacket skiing down a trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274549.jpg', 'caption': 'A skier that is traveling through a wooded area on a snow covered trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520508.jpg', 'caption': 'Nordic skier, in full gear, making his way on a wind blown day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520508.jpg', 'caption': 'A person that is skiing down a path surrounded by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520508.jpg', 'caption': 'A person in red jacket skiing down a hill between trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520508.jpg', 'caption': 'a person riding skis on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520508.jpg', 'caption': 'A skier in a red jacket is near a thicket of trees in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297078.jpg', 'caption': 'there is a male skier that is going down hill in bad weather', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297078.jpg', 'caption': 'A man cross-country skiing through a marked course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297078.jpg', 'caption': 'A skier with a red backpack skis down a hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297078.jpg', 'caption': 'A man riding skis down a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297078.jpg', 'caption': 'a person with a backpack skiing by some trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220277.jpg', 'caption': 'An older skateboarder holds a long pole as he skates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220277.jpg', 'caption': 'A man on a skateboard holds a stick in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220277.jpg', 'caption': 'A man holds a long baton as he skateboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220277.jpg', 'caption': 'A man on a skateboard is holding a long wooden pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220277.jpg', 'caption': 'Man on skateboard with long stick in front of slotted building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419503.jpg', 'caption': 'A restaurant employee is serving food at a buffet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419503.jpg', 'caption': 'A man with red cap dishing up food in a deli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419503.jpg', 'caption': 'A buffet styled restaurant without self service but a server.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419503.jpg', 'caption': 'A person standing at a counter with some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419503.jpg', 'caption': 'A man serving food to a woman from behind a glass counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500110.jpg', 'caption': 'A man sitting behind a large pile of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500110.jpg', 'caption': 'A bearded man is peering out from behind a large pile of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500110.jpg', 'caption': 'a man is standing behind a tray of veg tables, including carrots, turnips, cabbage and radishes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500110.jpg', 'caption': 'A man with a beard holds up a tray full of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500110.jpg', 'caption': 'there is a very large assortment of different vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149456.jpg', 'caption': 'A pile of vegetables on a green crate that is sitting on bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149456.jpg', 'caption': 'A bunch of vegetables on top of a bin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149456.jpg', 'caption': 'A wide variety of vegetables resting on a plastic bin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149456.jpg', 'caption': 'A bowl of onions, green beans, and other vegetables,.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149456.jpg', 'caption': 'A plastic bin that has various vegetables in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452676.jpg', 'caption': 'A man riding skis on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452676.jpg', 'caption': 'a person in red is skiing down a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452676.jpg', 'caption': 'a guy coming down the mountain on snow skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452676.jpg', 'caption': 'A person is walking up a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452676.jpg', 'caption': 'A man skis down a very snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223327.jpg', 'caption': 'a couple of people making their way through the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223327.jpg', 'caption': 'a snow skier and a person pushing a baby carriage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223327.jpg', 'caption': 'Nordic skier and adult pushing baby carriage going in opposite directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223327.jpg', 'caption': 'A person skiing by another on a big snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223327.jpg', 'caption': 'Man moves along snow on skis while another pushes a cart', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398153.jpg', 'caption': 'Someone is going thumbs-up to a fresh chocolate cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398153.jpg', 'caption': 'A layered chocolate cake with decoration on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398153.jpg', 'caption': 'Homemade cake with icing and flower on top with a thumbs up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398153.jpg', 'caption': 'a person giving the thumbs up sign besides a tall chocolate frosted cake on a glass dish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398153.jpg', 'caption': 'A large chocolate cake and a hand giving the \"thumbs up\" gesture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558234.jpg', 'caption': 'A woman in a white dress standing over a multi layered cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558234.jpg', 'caption': 'A couple holding a knife and cutting their wedding cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558234.jpg', 'caption': 'A bride and groom getting ready to cut their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558234.jpg', 'caption': 'a woman in white is cutting into a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558234.jpg', 'caption': 'A bride and groom prepare to cut their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247999.jpg', 'caption': 'Person perfecting their flip on water ski board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247999.jpg', 'caption': 'Person doing tricks on water skis on a nice day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247999.jpg', 'caption': 'A person is doing a flip with his surf board in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247999.jpg', 'caption': 'A waterskiing man performing a flip on his waterboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247999.jpg', 'caption': 'A person with a water board doing a flip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030049.jpg', 'caption': 'The wake boarder surfs through the waves on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030049.jpg', 'caption': 'A man is being pulled by a boat on a bird', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030049.jpg', 'caption': 'A person on some jet skis riding on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030049.jpg', 'caption': 'A person on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030049.jpg', 'caption': 'Water skier being pulled behind on large lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217654.jpg', 'caption': 'A man flies high in the air while windsurfing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217654.jpg', 'caption': 'A man riding a kiteboard over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217654.jpg', 'caption': 'Where is surfing but he looks to be attached to something else.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217654.jpg', 'caption': 'A man para glides on the water near land. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217654.jpg', 'caption': 'Someone riding waves on a wave board in the lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404528.jpg', 'caption': 'A woman riding a water ski while being towed by a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404528.jpg', 'caption': 'A woman is on the water on water skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404528.jpg', 'caption': 'Woman waterskiing on one ski near a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404528.jpg', 'caption': 'A woman on a ski being pulled in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404528.jpg', 'caption': 'A woman holds onto a line and skis over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107020.jpg', 'caption': 'half of a birthday cake with an angel decoration on the top of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107020.jpg', 'caption': 'A cake has frosting designs including a winged person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107020.jpg', 'caption': 'a creamy cake for a kid cut with a knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107020.jpg', 'caption': 'A cake with an angel girl on it has been cut. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107020.jpg', 'caption': 'The cake with an angel on the icing is cut diagnolly in half.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390731.jpg', 'caption': 'The child is cutting the birthday cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390731.jpg', 'caption': 'A young kid cutting into a Star Wars cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390731.jpg', 'caption': 'A young boy is cutting a Star Wars theme cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390731.jpg', 'caption': 'A young boy cutting a Star Wars themed cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390731.jpg', 'caption': 'A small boy cutting into his Star Wars themed birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105053.jpg', 'caption': 'a person skiing down part of a hill in front of some rocks and trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105053.jpg', 'caption': 'A man with glasses and a helmet on skiing down the snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105053.jpg', 'caption': 'A man riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105053.jpg', 'caption': 'A skier makes his way down the hill in front of rocks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105053.jpg', 'caption': 'A skilled athlete freestyle skis down a steep incline. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143387.jpg', 'caption': 'The skier in the helmet moves through thick snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143387.jpg', 'caption': 'there is a male skier riding down a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143387.jpg', 'caption': 'A person coming down the mountain on a pair of skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143387.jpg', 'caption': 'A man on skis that is standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143387.jpg', 'caption': 'A man is skiing down a steep ski slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573571.jpg', 'caption': 'a skier, dressed warmly slides down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573571.jpg', 'caption': 'A person in yellow pants skiing down a mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573571.jpg', 'caption': 'a skier wearing bright green snow pants and blue coat skiing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573571.jpg', 'caption': 'A skier in a black and lime green suit skiing downhill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573571.jpg', 'caption': 'A skier skiing downhill on a rocky edge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218889.jpg', 'caption': 'A group of young people wearing ski equipment while standing on a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218889.jpg', 'caption': 'an image of a group of people on a snow mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218889.jpg', 'caption': 'There is a group of skiers standing in a line', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218889.jpg', 'caption': 'A GROUP PHOTO OF PEOPLE ON THE SNOW SIDE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218889.jpg', 'caption': 'a group of people riding skis on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129595.jpg', 'caption': 'A man holding up a cardboard sign next to a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129595.jpg', 'caption': 'a man holds a sign made out of card board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129595.jpg', 'caption': 'A man holds up a sign on cardboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129595.jpg', 'caption': 'A man is sitting on a chair holding a sign up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129595.jpg', 'caption': 'A bearded man holding a sign near a railing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440840.jpg', 'caption': 'A man riding a snowboard down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440840.jpg', 'caption': 'an image of a man on top of a snow mountain on snow board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440840.jpg', 'caption': 'A snowboarder is riding swiftly through snowy hills.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440840.jpg', 'caption': 'a person riding a snow board on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440840.jpg', 'caption': 'Person in white and black snow boarding down a hill toward the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142934.jpg', 'caption': 'A couple of people walking up the side of a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142934.jpg', 'caption': 'A couple of people hiking up a hill with snowboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142934.jpg', 'caption': 'Two people carrying snowboards on a mountain slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142934.jpg', 'caption': 'Snowboarders walk up the mountain with their boards on their backs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142934.jpg', 'caption': 'Two people walking on a snow covered slope holding snowboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209357.jpg', 'caption': 'Three men standing on a mountain holding a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209357.jpg', 'caption': 'A group of guys posing for a picture while holding onto a snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209357.jpg', 'caption': 'A group of three men are on a mountaintop with a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209357.jpg', 'caption': 'Three people in the snow posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209357.jpg', 'caption': 'Three men posing for a picture with a snow board in one of the mans hands ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131800.jpg', 'caption': 'A man taking a large bite from a sausage sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131800.jpg', 'caption': 'Man about to eat a large hotdog covered in condiments', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131800.jpg', 'caption': 'A man taking a bite of a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131800.jpg', 'caption': 'A person that is eating a lot of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131800.jpg', 'caption': 'A close up of a man eating a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057172.jpg', 'caption': 'A man riding down the side of a ski slope on a board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057172.jpg', 'caption': 'A man bends over in the snow in sight of a mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057172.jpg', 'caption': 'A snowboarder is doing a trick in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057172.jpg', 'caption': 'A person jumping with a snowboard holding the edge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057172.jpg', 'caption': 'Person kneeling and acting silly in the snowy mountains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214853.jpg', 'caption': 'A chili cheese dog sitting next to chili cheese fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214853.jpg', 'caption': 'Two papers display two different sloppy food dishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214853.jpg', 'caption': 'A chili dog with the works and a cup of chili fries in paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214853.jpg', 'caption': 'The hotdog and the side of fries are both covered in chili.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214853.jpg', 'caption': 'Prepared chili dog and chili fries on a tray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151299.jpg', 'caption': 'a man flying through the air while riding a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151299.jpg', 'caption': 'a snowboarder wearing a gray and black jacket is doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151299.jpg', 'caption': 'A man is jumping a snowboard off of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151299.jpg', 'caption': 'a snowboarder in a hat jumps his swowbaord', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151299.jpg', 'caption': 'A man flys through the air on a snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497907.jpg', 'caption': 'A person on a snowboard in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497907.jpg', 'caption': 'A man riding a snowboard into the air over a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497907.jpg', 'caption': 'a person in ski gear skiing on the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497907.jpg', 'caption': 'A person with a snowboard is jumping over an obstacle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497907.jpg', 'caption': 'A person stands on a snowboard on a slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436696.jpg', 'caption': 'A man with a skateboard poses near an outdoor stairwell.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436696.jpg', 'caption': 'A man poses while holding a skateboard to the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436696.jpg', 'caption': 'A young man with black cap holding a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436696.jpg', 'caption': 'a man holding a skateboard on a city sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436696.jpg', 'caption': 'Young male skateboarder displaying the design on his board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146272.jpg', 'caption': 'A man riding a snow board on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146272.jpg', 'caption': 'A snowboarder sits in the snow at the top of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146272.jpg', 'caption': 'A person with a snowboard, sitting in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146272.jpg', 'caption': 'A person is sitting in the snow on a snowboard near a ski lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146272.jpg', 'caption': 'A person wearing a snow board sitting in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357808.jpg', 'caption': 'A motion blur of a person riding a skateboard on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357808.jpg', 'caption': 'a kid is getting on his skateboard and riding off', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357808.jpg', 'caption': 'A photo is altered showing a skate boarder skating down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357808.jpg', 'caption': 'A person skateboarding on the road at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357808.jpg', 'caption': 'A bunch of images of a man on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218721.jpg', 'caption': 'A young boy riding a skateboard next to a graffiti covered building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218721.jpg', 'caption': 'A man in a purple shirt doing a trick on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218721.jpg', 'caption': 'A kid jumping off his skateboard next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218721.jpg', 'caption': 'a person jumping a skate board in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218721.jpg', 'caption': 'A young man skateboarding and doing some tricks in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362506.jpg', 'caption': 'A man is doing a trick with a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362506.jpg', 'caption': 'A boy skateboarding and doing a trick where he flips the skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362506.jpg', 'caption': 'A child and a skateboard are captured in stop-motion', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362506.jpg', 'caption': 'A man performing a skateboarding move in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362506.jpg', 'caption': 'A boy wearing red shoes doing tricks on a his skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117014.jpg', 'caption': 'A snowboarder is in the middle of a jump through the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117014.jpg', 'caption': 'View from below of a person on snowboard in air against sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117014.jpg', 'caption': 'A person on a snowboard who is performing a jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117014.jpg', 'caption': 'A person performing a trick on a snowboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117014.jpg', 'caption': 'the person is on a snowboard flying over the mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074349.jpg', 'caption': 'A snowboarder in mid air after a jump ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074349.jpg', 'caption': 'there is a snowboarder that is doing a trick in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074349.jpg', 'caption': 'A person on a snowboard jumping off a small hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074349.jpg', 'caption': 'Someone doing a trick on their snow board at a ski slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074349.jpg', 'caption': 'A snow boarder performs a jump on a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473774.jpg', 'caption': 'A plate with cross cut french fries and a large chicken sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473774.jpg', 'caption': 'A big burger is served with a side of waffle fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473774.jpg', 'caption': 'A huge chicken sandwich waffle fries are ready to be eaten. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473774.jpg', 'caption': 'A chicken sandwich and fries on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473774.jpg', 'caption': 'A white plate topped with a burger and criss cut fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042953.jpg', 'caption': 'A group of people standing on top of a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042953.jpg', 'caption': 'Several people with skis and snowboards boarding a helicopter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042953.jpg', 'caption': 'A helicopter is on a mountain with skiers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042953.jpg', 'caption': 'Ski patrol with helicopter at accident on steep ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042953.jpg', 'caption': 'Many people are out skiing next to a small plane. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190391.jpg', 'caption': 'a hot dog in a bun covered with mustard sitting in a small container', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190391.jpg', 'caption': 'A very tasty looking hot dog with mustard on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190391.jpg', 'caption': 'A closeup shot of a hotdog with a small cup of ketchup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190391.jpg', 'caption': 'A hot dog with mustard and a bun next to a ketchup cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190391.jpg', 'caption': 'A hotdog with mustard and a container of catsup in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283162.jpg', 'caption': 'a sandwich laying on paper and on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283162.jpg', 'caption': 'A roll that is stuffed with types of food sits on the wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283162.jpg', 'caption': 'There is sandwich roll with meat and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283162.jpg', 'caption': 'Some sort of sandwich on a napkin next to a plate and glass cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283162.jpg', 'caption': 'A sandwich filled with meat and lettuce on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208690.jpg', 'caption': 'A small sandwich is sitting on the wrapper on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208690.jpg', 'caption': 'A sandwich on a long bun is sitting on some paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208690.jpg', 'caption': 'A sub sandwich sitting in a white paper wrapper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208690.jpg', 'caption': 'A hot dog with a variety of toppings on a piece of parchment paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208690.jpg', 'caption': 'A sub sandwich that has a lot of toppings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256743.jpg', 'caption': 'A long haired snowboarder poses standing with his board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256743.jpg', 'caption': 'A young man posing with a snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256743.jpg', 'caption': 'a male in a jersey holding a snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256743.jpg', 'caption': 'a young man holds a snow board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256743.jpg', 'caption': 'A man holding a white snow board by some other kids', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554340.jpg', 'caption': 'A half eaten doughnut sitting in the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554340.jpg', 'caption': 'a half of a donut is sitting on a painted yellow stripe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554340.jpg', 'caption': 'A half eaten doughnut in the middle of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554340.jpg', 'caption': \"i don't even see a picture on thie hit\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554340.jpg', 'caption': 'Half a donut lying on the yellow line of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387208.jpg', 'caption': 'A woman eating a chili dog during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387208.jpg', 'caption': 'a woman is holding a hotdog up to her face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387208.jpg', 'caption': 'A woman with glasses eating a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387208.jpg', 'caption': 'A woman eats a hot dog with relish on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387208.jpg', 'caption': 'A girl preparing to eat a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151826.jpg', 'caption': 'A woman in glasses eating a chili dog with umbrellas behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151826.jpg', 'caption': 'A close up of a woman eating a hot dog outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151826.jpg', 'caption': 'A woman taking a bite of a chili hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151826.jpg', 'caption': 'A glasses wearing woman with a hotdog sandwich to her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151826.jpg', 'caption': 'A woman in glasses taking a bite of a chili dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537211.jpg', 'caption': 'A guy eats a sandwich while sitting on a dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537211.jpg', 'caption': 'A man near a pier eating a hot dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537211.jpg', 'caption': 'A young man eating a hot dog next to a waterway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537211.jpg', 'caption': 'A man eats a hotdog as he sits on a dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537211.jpg', 'caption': 'A man sitting on a dock eating a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341246.jpg', 'caption': 'A box filled with six donuts of assorted flavors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341246.jpg', 'caption': 'a person holding a box of doughnuts on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341246.jpg', 'caption': 'A half dozen assorted doughnuts in an open box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341246.jpg', 'caption': 'Six cake donuts, two glazed, two chocolate, two with sprinkles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341246.jpg', 'caption': 'Half a dozen glazed and chocolate donuts in a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301766.jpg', 'caption': 'A man leaping off the side of a cliff while skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301766.jpg', 'caption': 'A skier takes a jump on the ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301766.jpg', 'caption': 'A skier jumping off a rocky and snowing cliff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301766.jpg', 'caption': 'A man does a ski trick off a snowy ledge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301766.jpg', 'caption': 'A skier doing stunts in the air near a cliff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120398.jpg', 'caption': 'A sandwich with a pickle in a container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120398.jpg', 'caption': 'A Chicago style hotdog with the works sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120398.jpg', 'caption': 'A hot dog on top of a bun covered in toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120398.jpg', 'caption': 'A huge sandwich enclosed in a styrofoam container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120398.jpg', 'caption': 'The lunch looks amazing and very colorful ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409627.jpg', 'caption': 'A BOY TAKING A BITE OUT OF A HOT DOG', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409627.jpg', 'caption': 'A blond boy in a crew cut takes a bite out of a hotdog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409627.jpg', 'caption': 'A young man opens his mouth wide to engulf a hot dog on a bun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409627.jpg', 'caption': 'A young man sitting at a table eating a hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409627.jpg', 'caption': 'Young boy consuming food at outdoor seating area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016744.jpg', 'caption': 'A guy on a snow board up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016744.jpg', 'caption': 'A person on a snowboard jumping in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016744.jpg', 'caption': 'A person on a snow board in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016744.jpg', 'caption': 'a man in a helmet jumps a snowboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016744.jpg', 'caption': 'A snowboarder in mid-air with another person watching in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183786.jpg', 'caption': 'A tray of black and white sprinkled doughnuts ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183786.jpg', 'caption': 'Black and white photo of two layers of sprinkled donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183786.jpg', 'caption': 'A tray with eighteen sprinkled vanilla and chocolate doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183786.jpg', 'caption': 'A bunch of different types of donuts on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183786.jpg', 'caption': 'Black and white donuts with sprinkles are stacked on a rack. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139953.jpg', 'caption': 'An arrangement of donuts and other food sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139953.jpg', 'caption': 'A plate of donuts, silverware and glasses are on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139953.jpg', 'caption': 'various plates of food are sitting on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139953.jpg', 'caption': 'A table set with plates, silverware, and glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139953.jpg', 'caption': 'A bowl on a table is filled with fruit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051920.jpg', 'caption': 'A man enjoying a bite of fresh pizza in a pizzeria', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051920.jpg', 'caption': 'A man eating next to a partially eaten pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051920.jpg', 'caption': 'A man eats some of a very large pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051920.jpg', 'caption': 'A man is eating a big pizza which both halves have different toppings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051920.jpg', 'caption': 'a man sitting in front of a partially eaten pizza on a silver tray and eating a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434930.jpg', 'caption': 'A kid eating a doughnut at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434930.jpg', 'caption': 'A small child is enjoying a donut at the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434930.jpg', 'caption': 'A little blonde girl is eating a cupcake with chocolate frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434930.jpg', 'caption': 'The child is eating a chocolate covered donut at the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434930.jpg', 'caption': 'A little girl setting at a table eating a pastry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038323.jpg', 'caption': 'A couple of donuts sitting on top of a tray next to a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038323.jpg', 'caption': 'Two donuts on a tray with some coffee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038323.jpg', 'caption': 'A couple of doughnuts and a coffee cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038323.jpg', 'caption': 'two decorated doughnuts sitting on wrappers next to a cup of coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038323.jpg', 'caption': 'a brown tray donuts and a drink and paper wrappers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204609.jpg', 'caption': 'An amateur snowboarder attempting a small practice jump in his off time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204609.jpg', 'caption': 'A snowboarder jumping a hill on a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204609.jpg', 'caption': 'A snow boarder is in mid air going down a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204609.jpg', 'caption': 'Man doing tricks after jumping on ski slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204609.jpg', 'caption': 'a man that is on a snowboard on a side of a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368049.jpg', 'caption': 'A snow boarder riding down a snow covered summit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368049.jpg', 'caption': 'A person struggling to get through deep snow .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368049.jpg', 'caption': 'A man is struggling to climb up a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368049.jpg', 'caption': 'A person slides down a steep, snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368049.jpg', 'caption': 'A person climbing up a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491062.jpg', 'caption': 'Tow bread items and a red sauce sit on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491062.jpg', 'caption': 'A thin sandwich cut in half and sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491062.jpg', 'caption': 'A plate with grilled sandwich halves and sauce on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491062.jpg', 'caption': 'some food on a plate and some dipping sauce in a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491062.jpg', 'caption': 'Two sandwich slices that are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263073.jpg', 'caption': 'A person on a snow board high up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263073.jpg', 'caption': 'Man in black and white doing a jump on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263073.jpg', 'caption': 'A person jumping high up into the air on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263073.jpg', 'caption': 'A snowboarder is jumping in the air with their board held to the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263073.jpg', 'caption': 'A snowboarder is mid air on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224020.jpg', 'caption': 'A young boy beside a donut with white frosting and sprinkles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224020.jpg', 'caption': 'A kid sitting at a table with a donut with icing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224020.jpg', 'caption': 'A child has a doughnut with sprinkles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224020.jpg', 'caption': 'A young boy who has a doughnut with red sprinkles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224020.jpg', 'caption': 'A boy looks at the package his donut came in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445557.jpg', 'caption': 'A plate of donuts on a white plate rests on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445557.jpg', 'caption': 'A plate of doughnuts sitting on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445557.jpg', 'caption': 'A marble table holding a white plate of donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445557.jpg', 'caption': 'A plate full of donuts sitting on a counter beside a pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445557.jpg', 'caption': 'A plate of donuts sits atop a brown counter-top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122232.jpg', 'caption': 'The bottom half of a tennis player holding a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122232.jpg', 'caption': 'A person stands with a tennis racket with balls on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122232.jpg', 'caption': 'A man in a raincoat on a tennis court with a racket in his hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122232.jpg', 'caption': 'a tennis player with a racket on a court ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122232.jpg', 'caption': 'A person wearing a rain jacket and no pants on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523097.jpg', 'caption': 'a women that is eating some kind of sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523097.jpg', 'caption': 'A nerd holding a piece of food up to her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523097.jpg', 'caption': 'A young woman is eating food with her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523097.jpg', 'caption': 'there is a woman with glasses eating a donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523097.jpg', 'caption': 'a close up of a person eating a doughnut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437099.jpg', 'caption': 'a man with a helmet is touching some food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437099.jpg', 'caption': 'A man in a motorcycle helmet takes a pastry from a glass tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437099.jpg', 'caption': 'women carrying large trays of doughnuts and giving them out on the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437099.jpg', 'caption': 'A policeman getting donut holes off of a tray that someone is holding ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437099.jpg', 'caption': 'A police officer eating a couple of donuts off a huge tray of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330237.jpg', 'caption': 'A display case displays various types of deserts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330237.jpg', 'caption': 'A large selection of pastries and snacks inside of a glass case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330237.jpg', 'caption': 'A bunch of doughnuts that are sitting in a glass case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330237.jpg', 'caption': 'A display case in a bakers filled with lots of sweet treats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330237.jpg', 'caption': 'A store display of doughnuts and other pastries is pictured.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336487.jpg', 'caption': 'A man with a nose ring taking a bite out of a burger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336487.jpg', 'caption': 'A dude with a nose ring taking a bite out of a pastry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336487.jpg', 'caption': 'A man with nose ring enjoying a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336487.jpg', 'caption': 'Man with nose ring biting into something while making an ugly face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336487.jpg', 'caption': 'A man taking a bite of the doughnut. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270544.jpg', 'caption': 'an image of a group of people that are on a boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270544.jpg', 'caption': 'A group of women on a surfboard in a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270544.jpg', 'caption': 'A group of people play in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270544.jpg', 'caption': 'a group of people playing in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270544.jpg', 'caption': 'Teenagers frolick on surfboards and jump off into a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325027.jpg', 'caption': 'A hand is lifting up the top bread of a sub sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325027.jpg', 'caption': 'A sandwich has lettuce, tomato, as well as other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325027.jpg', 'caption': 'There is a bacon, lettuce and tomato sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325027.jpg', 'caption': 'a person that is reaching for a sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325027.jpg', 'caption': 'A sandwich with lettuce and tomatoes on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095249.jpg', 'caption': 'A man opens his mouth wide and holds a piece of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095249.jpg', 'caption': 'A man sitting on the couch while eating something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095249.jpg', 'caption': 'A man prepares to eat a bit of a type of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095249.jpg', 'caption': 'A man in a green hat is eating a doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095249.jpg', 'caption': 'A man wearing a green hat and eating some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560662.jpg', 'caption': 'A man in a blue jersey running towards a basketball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560662.jpg', 'caption': 'A bunch of guys chasing a basketball on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560662.jpg', 'caption': 'an image of a professional college game being played', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560662.jpg', 'caption': 'a basketball player jumping up while playing the game ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000351081.jpg', 'caption': 'A photo of a truck stop fuel station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476894.jpg', 'caption': 'Two men standing in front of a white monster truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476894.jpg', 'caption': 'Two men in suits beside a decorated monster truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476894.jpg', 'caption': 'Two men in tuxedos lean against a large truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476894.jpg', 'caption': 'Two men in formal wear standing next to a monster truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476894.jpg', 'caption': 'Two lean up against a monster truck decorated with streamers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479384.jpg', 'caption': 'A cat walking across a wooden floor next to some chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479384.jpg', 'caption': 'A black and white cat walking across the wooden floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479384.jpg', 'caption': 'A cat, reflected in the mirror behind it, slinks along a slatted wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479384.jpg', 'caption': 'a cat walking on a wooden floor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479384.jpg', 'caption': 'A tabby cat stands on a wooden floor next to a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480720.jpg', 'caption': 'A cat looking at his reflection in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480720.jpg', 'caption': 'A cat that is looking in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480720.jpg', 'caption': 'A cat looking at itself in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480720.jpg', 'caption': 'A cat looking at itself adoringly in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480720.jpg', 'caption': 'A cat stares at itself in a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490702.jpg', 'caption': 'A cat wearing a collar is looking in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490702.jpg', 'caption': 'a cat looking at someone while sitting by a mirror ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490702.jpg', 'caption': 'A cat that is looking forward towards the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490702.jpg', 'caption': 'a black and white cat staring at the mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490702.jpg', 'caption': 'A siamese cat is looking at itself in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045603.jpg', 'caption': 'A brown cat is sitting in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045603.jpg', 'caption': 'A cat looking at itself in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045603.jpg', 'caption': 'Grown cat looking at its own reflection in a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045603.jpg', 'caption': 'A cat stares at its reflection in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045603.jpg', 'caption': 'A cat looking at itself in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452772.jpg', 'caption': 'Two brown cows laying in the grass next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452772.jpg', 'caption': 'Two cows laying on the ground outside, sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452772.jpg', 'caption': 'Two cows sitting in the grass under a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452772.jpg', 'caption': 'A cow laying down in the grass next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452772.jpg', 'caption': 'Two cows laying out together underneath a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093803.jpg', 'caption': 'A large crane truck driving on top of wet mud.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093803.jpg', 'caption': 'A very big construction site with some big vehicles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093803.jpg', 'caption': 'We are looking into the excavation on a building site.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093803.jpg', 'caption': 'Construction site with machinery and trucks near a large hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093803.jpg', 'caption': 'THE DUMP TRUCK AND THE CRANE ARE WORKING ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398884.jpg', 'caption': 'a line of big trucks that are parked in grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398884.jpg', 'caption': 'A small old fashioned truck parked on top of a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398884.jpg', 'caption': 'A row of old trucks on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398884.jpg', 'caption': 'Three vintage trucks sitting on the grass near each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398884.jpg', 'caption': 'An old jalopy truck with a flat bed in a car show.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360064.jpg', 'caption': 'A row of vintage cars in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360064.jpg', 'caption': 'A blue and black truck sitting on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360064.jpg', 'caption': 'A row of old cars parked on grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360064.jpg', 'caption': 'a blue truck parked on a green field next to other vehicles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360064.jpg', 'caption': 'A vintage Ford pickup truck parked on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502798.jpg', 'caption': 'a brown and black ox and a white and black one and grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502798.jpg', 'caption': 'Two steer lie on short grass, facing opposite directions, next to a high fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502798.jpg', 'caption': 'Large horned cows sitting on grass in an enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502798.jpg', 'caption': 'Two cows are sitting next to a tree and a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502798.jpg', 'caption': 'Two cows laying in the grass under a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011169.jpg', 'caption': 'A large cow walks over a fox in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011169.jpg', 'caption': 'A cow running in a field next to a dog lying down. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011169.jpg', 'caption': 'A cow running in a field next to a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011169.jpg', 'caption': 'A dog laying in a field with a cow walking behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011169.jpg', 'caption': 'A bull trampoline a coyote in a field of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310618.jpg', 'caption': 'A cow attempting to get water from a leaking pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310618.jpg', 'caption': 'There is a cow under a tree branch looking up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310618.jpg', 'caption': 'A brown humped cow is drinking from a pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310618.jpg', 'caption': 'A brown cow has its head under a piece of bark. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310618.jpg', 'caption': 'a brown cow reaching for a tree limb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195437.jpg', 'caption': 'Four people are sitting on the dock near boats. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195437.jpg', 'caption': 'a couple of people are sitting on a dock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195437.jpg', 'caption': 'Four people posing on a dock near boats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195437.jpg', 'caption': 'This is a family sitting on a dock between two boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195437.jpg', 'caption': 'Three women, a man, and a dog relax on the dock between boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290839.jpg', 'caption': 'A couple of men standing on a boat next to a small dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290839.jpg', 'caption': 'Two men on a blue boat with dog fishing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290839.jpg', 'caption': 'Two men fishing off of a blue boat with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290839.jpg', 'caption': 'Two standing men fishing in a boat with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290839.jpg', 'caption': 'Men are fishing in small boat with a dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449302.jpg', 'caption': 'A black and white photo of a man sitting by the water holding an umbrella to give him shade. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449302.jpg', 'caption': 'A man with an umbrella sitting near the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449302.jpg', 'caption': 'A man with an umbrella is sitting on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449302.jpg', 'caption': 'A person sitting in a boat on the water, holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449302.jpg', 'caption': 'The silhouette of a man under an umbrella sitting next to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151387.jpg', 'caption': 'A dead fish laying on a platform next to a knife and pliers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151387.jpg', 'caption': 'Fish sitting on a boat with a gutting knife and lure sitting next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151387.jpg', 'caption': 'a fish, lure, knife an pliers on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151387.jpg', 'caption': 'A fish, hooks, pilers and a knife is on a board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151387.jpg', 'caption': 'this is an image of a dead fish with tools ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578383.jpg', 'caption': 'A brown cow standing on top of a dry grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578383.jpg', 'caption': 'a cow sitting on the bank of a water area with birds sitting on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578383.jpg', 'caption': \"A cow with small horns standing near the water's edge.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578383.jpg', 'caption': 'a black and white cow and some white birds and water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578383.jpg', 'caption': 'White and black cow stands over dead grass by a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288076.jpg', 'caption': 'Shaggy cattle with horns graze on grass in a meadow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288076.jpg', 'caption': 'A large bison standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288076.jpg', 'caption': 'Three cows grazing on a field with grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288076.jpg', 'caption': 'A long haired cow in a field with others in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288076.jpg', 'caption': 'Long-haired buffalo are grazing among the open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530941.jpg', 'caption': 'A group of cattle laying on top of a dirt barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530941.jpg', 'caption': 'Two cows laying on the ground in a fenced off area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530941.jpg', 'caption': 'a group of cow resting on the ground in an enclosed fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530941.jpg', 'caption': 'COWS LAYING ON SAND INSIDE A FENCED AREA.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530941.jpg', 'caption': 'I cant tell what kind of animals these are', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354744.jpg', 'caption': 'A boat is washed up on the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354744.jpg', 'caption': 'A boat sits washed up on the shore of a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354744.jpg', 'caption': 'A small white boat on the shore of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354744.jpg', 'caption': 'An abandoned boat sits on the shore of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354744.jpg', 'caption': 'An abandoned boat sitting on the edge of the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262993.jpg', 'caption': 'A goat standing in front of a store next to a metal hook.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262993.jpg', 'caption': 'A big, brown cow sticks out his tongue while a hook hangs in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262993.jpg', 'caption': 'The head of a cow hangs on a meat hook.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262993.jpg', 'caption': 'A cow sticks his tongue out in the barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262993.jpg', 'caption': 'a cow looking out while standing by a barn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476552.jpg', 'caption': 'Two boats with people preparing food on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476552.jpg', 'caption': 'A couple of people in boats with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476552.jpg', 'caption': 'People in small boats deep frying food in a wok.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476552.jpg', 'caption': 'A couple of boats filled with lots of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476552.jpg', 'caption': 'four boats with people carrying lots of bananas and other foods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386637.jpg', 'caption': 'Small black and white dog laying down on top of a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386637.jpg', 'caption': 'black and white photo of a dog laying on a sheet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386637.jpg', 'caption': 'A small black dog laying on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386637.jpg', 'caption': 'A small black and white colored dog laying down while facing the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386637.jpg', 'caption': 'A dog is looking ahead while laying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531144.jpg', 'caption': 'A picture of brothers and sisters in a family.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531144.jpg', 'caption': 'Five children in a black and white photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531144.jpg', 'caption': 'Two children are sitting and three children are standing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531144.jpg', 'caption': 'OLD PHOTO OF FIVE CHILDREN, TWO GIRLS SMILING AND THREE BOYS FROWNING', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531144.jpg', 'caption': 'A black and white picture of boys and girls at a young age. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331875.jpg', 'caption': 'A group of school children pose for a class picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331875.jpg', 'caption': 'A group of kids posing for a group picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331875.jpg', 'caption': 'the people are sitting and standing some are wearing sweaters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331875.jpg', 'caption': 'an old photo of people standing close to one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331875.jpg', 'caption': 'A group children pose together for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228300.jpg', 'caption': 'A group of young men sitting next to each other on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228300.jpg', 'caption': 'Good friends pose for a picture sitting on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228300.jpg', 'caption': 'Group of young men sitting on a stone fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228300.jpg', 'caption': 'Young school boys smiling and posing on a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228300.jpg', 'caption': 'five males and one female sitting on a stone fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111109.jpg', 'caption': 'A boy wearing a white dress shirt and sweater with shorts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111109.jpg', 'caption': 'A young boy standing in a living room next to a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111109.jpg', 'caption': 'A boy posing for a picture with his scooter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111109.jpg', 'caption': 'a small boy in shorts and a tie and a lamp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111109.jpg', 'caption': 'A little boy standing in a living area, in a black and white picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283441.jpg', 'caption': 'A section of a yard being dug up next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283441.jpg', 'caption': 'A dug up are in a yard that had grass in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283441.jpg', 'caption': 'The earth next to a house is upturned.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283441.jpg', 'caption': 'A space of yard dug up in front of a storage unit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283441.jpg', 'caption': 'A section of yard is dug up by a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542388.jpg', 'caption': 'A MAN WEARING A SUIT AND A TIE STARING ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542388.jpg', 'caption': 'A man wearing a grey suit and tie looking at something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542388.jpg', 'caption': 'A man with a tie and a suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542388.jpg', 'caption': 'A man who is wearing a suit and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542388.jpg', 'caption': 'a man in a tie and a suit is indifferent ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214646.jpg', 'caption': 'A man with white shirt and lose tie with messed up hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214646.jpg', 'caption': 'A man in a neck tie and striped shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214646.jpg', 'caption': 'There is a man in a tie looking into the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214646.jpg', 'caption': 'A man with a tie on giving a curious look to the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214646.jpg', 'caption': 'This young man with tousled hair and goatee is sitting in an office in his shirt and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069928.jpg', 'caption': 'A statue of an elephant hanging off the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069928.jpg', 'caption': 'an elephant statue attached to a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069928.jpg', 'caption': 'An elephant sign hangs from the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069928.jpg', 'caption': 'A golden elephant working as signage on a building facade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069928.jpg', 'caption': 'A statue of an elephant hanging over a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436218.jpg', 'caption': 'a man with a suit and tie and glasses and a pie chart', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436218.jpg', 'caption': 'A businessman giving a slide show presentation in a meeting room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436218.jpg', 'caption': 'A man does a hand gesture while standing in front of a power point.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436218.jpg', 'caption': 'Businessman giving a presentation using a pie chart', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436218.jpg', 'caption': 'A white haired man with glasses standing in front of a projector.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457877.jpg', 'caption': 'A group of schoolboys in jackets and ties poses for a picture outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457877.jpg', 'caption': 'a group of people that are posing for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457877.jpg', 'caption': 'a number of children wearing suits and ties siting near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457877.jpg', 'caption': 'A black and white photograph of young schoolboys. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457877.jpg', 'caption': 'Old photograph featuring school age boys all wearing identical uniforms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125873.jpg', 'caption': 'A group photo of boys in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125873.jpg', 'caption': 'An older looking photo shows a group of school age boys. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125873.jpg', 'caption': 'A group of young boys lined up outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125873.jpg', 'caption': 'some boys are wearing green and red vests and ties', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125873.jpg', 'caption': 'A group of young boys standing next to each other in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536743.jpg', 'caption': 'Six little boys are smiling in front of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536743.jpg', 'caption': 'a bunch of kids are lined up against a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536743.jpg', 'caption': 'A group of boys in suits and ties standing against a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536743.jpg', 'caption': 'a group of young boys standing side by side up against a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536743.jpg', 'caption': 'A group of smiling children pose against a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072829.jpg', 'caption': 'A group of children posing for a picture with two adults.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072829.jpg', 'caption': 'A group of children posing for a picture with older men.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072829.jpg', 'caption': 'A large group of people posing for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072829.jpg', 'caption': 'An old back and white photo of a group of people posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072829.jpg', 'caption': 'This picture from yesteryear shows a group well-dressed boys posing with their two mentors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098881.jpg', 'caption': 'Three children taking a photo together in a back yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098881.jpg', 'caption': 'three children and the girl has on a bathing suit and cap', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098881.jpg', 'caption': 'Kids stand and sitting by a wall on a summer day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098881.jpg', 'caption': 'Three kids with one kid in swim suit other in suit and shorts and other in skirt and blouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098881.jpg', 'caption': 'A child in a bathing suit and two other children hugging outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041924.jpg', 'caption': 'Boats floating close together in a calm body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041924.jpg', 'caption': 'A row of ships in the water along side a dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041924.jpg', 'caption': 'There are several ships docked at the port. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041924.jpg', 'caption': 'Multiple boats docked in a marina on a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041924.jpg', 'caption': 'A couple of boats parked on the dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394322.jpg', 'caption': 'A crowd of young children sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394322.jpg', 'caption': 'A bunch of very young children posing for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394322.jpg', 'caption': 'A group of kids are wearing dresses and suits and ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394322.jpg', 'caption': 'A group of kids posing for a class picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394322.jpg', 'caption': 'A large gathering of small children in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096075.jpg', 'caption': 'Lots of boats anchored in a harbor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096075.jpg', 'caption': 'Boats are lined up at dock that is on a coastline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096075.jpg', 'caption': 'a small lake full of bright boats and some houses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096075.jpg', 'caption': 'Several boats are sitting docked in a harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096075.jpg', 'caption': 'A bunch of boats are moored in a harbor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093120.jpg', 'caption': 'Three young boys dressed in formal clothes, two are standing one is sitting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093120.jpg', 'caption': 'a few little boys that are sitting on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093120.jpg', 'caption': 'A group of boys that are standing up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093120.jpg', 'caption': 'Group of finely dressed children paying respect in nice house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093120.jpg', 'caption': 'Three boys how are standing by each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560349.jpg', 'caption': 'Black and white photograph of boys in living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560349.jpg', 'caption': 'A group of boys playing with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560349.jpg', 'caption': 'A group of boys in school uniforms looking at something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560349.jpg', 'caption': 'A group of young boys sitting on top of a couch wearing uniforms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560349.jpg', 'caption': 'A group of similarly dressed small children on a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498856.jpg', 'caption': 'A black and whit photograph of a boy tying a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498856.jpg', 'caption': 'A little boy on a bed has an undone tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498856.jpg', 'caption': 'There is a boy playing with a tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498856.jpg', 'caption': 'A black and white picture of a bow trying to tie a tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498856.jpg', 'caption': 'A boy sitting on a bed tying his tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135281.jpg', 'caption': 'Two people who are walking under the same umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135281.jpg', 'caption': 'Two ladies on a road with an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135281.jpg', 'caption': 'Two people walking down a street in the rain under a umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135281.jpg', 'caption': 'Two people walking down a street under one umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135281.jpg', 'caption': 'There are two women walking under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427820.jpg', 'caption': 'an old photo of a large group of children', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427820.jpg', 'caption': 'A black and white photo of school boys wearing ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427820.jpg', 'caption': 'Group of children standing close together for a picture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427820.jpg', 'caption': 'A very large group of children pose together for an old professional photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427820.jpg', 'caption': 'Vintage black and white picture of a classroom of school boys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399570.jpg', 'caption': 'A man and a woman eating lunch outside while sitting under a large umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399570.jpg', 'caption': 'Picture of boardwalk with tables covered by large umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399570.jpg', 'caption': 'A couple sits under an umbrella oustide a store. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399570.jpg', 'caption': 'two people sit on a patio under an umbrella on the deck of a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399570.jpg', 'caption': 'Two people that are sitting in chairs under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070332.jpg', 'caption': 'A man with an evil smirk on his face wearing a vest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070332.jpg', 'caption': 'a person wearing a vest, collared shirt and tie in front of bookshelves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070332.jpg', 'caption': 'THERE IS A MAN THAT IS TAKING A PHOTO OF HIMSELF ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070332.jpg', 'caption': 'A man with his focus looking up at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070332.jpg', 'caption': 'A man with a goatee is wearing a vest and paisley print tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255592.jpg', 'caption': 'A group of children are sitting together wearing dresses and suits and ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255592.jpg', 'caption': 'A group picture of students with their teacher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255592.jpg', 'caption': 'Many children sitting next to each other in a group.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255592.jpg', 'caption': 'A large group of children pose together in an antique photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255592.jpg', 'caption': 'a large group of children wearing ties and dresses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476767.jpg', 'caption': 'A yellow lab is sleeping on a brown couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476767.jpg', 'caption': 'A brown dog laying on top of a brown couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476767.jpg', 'caption': 'A very cute brown dog laying on a brown couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476767.jpg', 'caption': 'A light brown dog laying on a leather sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476767.jpg', 'caption': 'The light colored dog is sleeping on the couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411043.jpg', 'caption': 'And elephant eating grass at the zoo with other elephants behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411043.jpg', 'caption': 'Elephants in a zoo eating and standing around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411043.jpg', 'caption': 'an image of two elephants at the wildlife park eating ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411043.jpg', 'caption': 'The two elephants are grazing in their pens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411043.jpg', 'caption': 'A couple of elephant standing next to each other on a rocky walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206876.jpg', 'caption': 'A giant elephant laying on top of a dirt ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206876.jpg', 'caption': 'Two small children stand together scrubbing an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206876.jpg', 'caption': 'a black and white photo of children washing an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206876.jpg', 'caption': 'Children helping clean an elephants back with a brush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206876.jpg', 'caption': 'Two children using brooms to help clean an elephant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562347.jpg', 'caption': 'The young couple smiles close beside each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562347.jpg', 'caption': 'A man standing next to a woman with blue eyes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562347.jpg', 'caption': 'A picture of a woman and man wearing a suit and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562347.jpg', 'caption': 'A couple posing for a picture at a formal event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562347.jpg', 'caption': 'A man and a woman formally dressed posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243852.jpg', 'caption': 'A man wearing a white t shirt and a neck tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243852.jpg', 'caption': 'a man that has a shirt and a tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243852.jpg', 'caption': 'a close up of a person wearing a tie ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243852.jpg', 'caption': 'a man in a suit looks into his camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243852.jpg', 'caption': 'A man wearing a suit with a tie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485447.jpg', 'caption': 'A man in a stadium standing next to stacks of chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485447.jpg', 'caption': 'The man is standing near many stacks of chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485447.jpg', 'caption': 'A man stands in an empty auditorium next to stacks of chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485447.jpg', 'caption': 'A man with glass stands in the middle of an empty auditorium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485447.jpg', 'caption': 'a fish eye lens photograph of a man standing in a stadium with stacked chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230995.jpg', 'caption': 'A woman sitting on the ground holding a purple stripped umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230995.jpg', 'caption': 'A woman with an umbrella crouching down to smoke', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230995.jpg', 'caption': 'an image of a woman smoking a cigarette in the rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230995.jpg', 'caption': 'A woman kneels on the ground with an open umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230995.jpg', 'caption': 'A woman with a striped umbrella squatting next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009420.jpg', 'caption': 'A group of men and boys in suits and ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009420.jpg', 'caption': 'A large group photo of many different people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009420.jpg', 'caption': 'OLD BLACK AND WHITE PHOTO OF AN ALL BOYS SCHOOL', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009420.jpg', 'caption': 'About 75 men and boys arrayed for a photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009420.jpg', 'caption': 'This black and white photo shows many men young and old', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352206.jpg', 'caption': 'a bunch of people are taking a photo together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352206.jpg', 'caption': 'A group of young men sitting side by side for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352206.jpg', 'caption': 'A group photo shows a great number of male school boys and men.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352206.jpg', 'caption': 'Black and white photograph of boys and their teachers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352206.jpg', 'caption': 'A black and white photo of students in a school posing for a school photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480311.jpg', 'caption': 'Many children are posing together outside of the building window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480311.jpg', 'caption': 'A group of boys wearing suits and ties are posing in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480311.jpg', 'caption': 'A group of smiling children pose in front of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480311.jpg', 'caption': 'a large group of little kids out in front of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480311.jpg', 'caption': 'A group of male children and adults posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480663.jpg', 'caption': 'A woman smiles while sitting in a leisure area under an sun umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480663.jpg', 'caption': 'A smiling woman perched on a chaise long under an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480663.jpg', 'caption': 'A woman is sitting on a lounge chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480663.jpg', 'caption': 'A woman sitting on a chair under a umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480663.jpg', 'caption': 'A woman sitting on a chair under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152000.jpg', 'caption': 'A round swimming pool has privacy trees around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152000.jpg', 'caption': 'A round swimming pool with a table, chairs and umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152000.jpg', 'caption': 'A round pool in front of a table with a blue umbrella and two chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152000.jpg', 'caption': 'A small in ground pool situated on a terrace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152000.jpg', 'caption': 'A nice circular swimming pool is in a back yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172718.jpg', 'caption': 'A little boy wearing a white shirt and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172718.jpg', 'caption': 'School picture of a young boy with a tie on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172718.jpg', 'caption': 'A young boy in a white shirt and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172718.jpg', 'caption': 'Young body wearing a dress shirt and tie poses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172718.jpg', 'caption': 'A black and white photo of a small child with a tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152252.jpg', 'caption': 'An old creased photo of a group of boys and men', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152252.jpg', 'caption': 'A black and white photograph of boys posing for a school picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152252.jpg', 'caption': 'An old black and white photograph of boys sitting and standing in rows in front of a brick building, all wearing coats and ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152252.jpg', 'caption': \"Vintage black and white class picture probably from boy's school.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152252.jpg', 'caption': 'A bent black and white photo shows a group of children', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354948.jpg', 'caption': 'Boys and men are lined up for a group photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354948.jpg', 'caption': 'A group of school boys in their uniforms posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354948.jpg', 'caption': 'a bunch of kids and adults are sitting together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354948.jpg', 'caption': 'Men and boys are posed for a group photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354948.jpg', 'caption': 'An old black and white photo of people posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203096.jpg', 'caption': 'Young boys sitting enthused at front in class picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203096.jpg', 'caption': 'Two boys sitting on the butts do nothing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203096.jpg', 'caption': 'A black and white photo of two boys, with more little kids behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203096.jpg', 'caption': 'Two boys are seated on the floor wearing sweaters and ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203096.jpg', 'caption': 'Two young boys are seated with their legs crossed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292685.jpg', 'caption': 'a couple of elephants are walking in a line', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292685.jpg', 'caption': 'Several elephants wearing decorations walking in a line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292685.jpg', 'caption': 'Two elephants that are standing up in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292685.jpg', 'caption': 'Several elephants walking in a line for a circus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292685.jpg', 'caption': 'Several elephants dressed for the circus are in line next to people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196798.jpg', 'caption': 'A parade of circus elephants lead by an SUV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196798.jpg', 'caption': 'A herd of elephants take their place in traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196798.jpg', 'caption': 'a herd of circus elephants walking down a road behind a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196798.jpg', 'caption': 'A car is followed by a group of elephants in a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196798.jpg', 'caption': 'A police escort leading the way as several circus elephants travel along the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131942.jpg', 'caption': 'there is a young boy eating a candy and taking a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131942.jpg', 'caption': 'a kid that is in a suite and a black tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131942.jpg', 'caption': 'A boy rolling his tongue for the camera ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131942.jpg', 'caption': 'The small boy is holding something in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131942.jpg', 'caption': 'Cute boy dressed in neck tie and making a silly expression', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275717.jpg', 'caption': 'A person wearing a vest and tie in a yearbook photo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275717.jpg', 'caption': 'A cute young lady with an old style hair cut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275717.jpg', 'caption': 'There is a black and white photo of a girl in school uniform', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275717.jpg', 'caption': 'A young girl wearing a striped tie and a sleeveless sweater.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275717.jpg', 'caption': 'This is a black and white picture of a school girl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359039.jpg', 'caption': 'A group of young children sitting on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359039.jpg', 'caption': 'A group of young children sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359039.jpg', 'caption': 'An bunch of kids posing in rows for a photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359039.jpg', 'caption': 'Vintage black and white school picture of young boys and girls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359039.jpg', 'caption': 'A black and white photo of young boys and girls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059952.jpg', 'caption': 'A man in glasses wearing a tie with aliens', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059952.jpg', 'caption': 'A man in glasses is wearing a tie with extraterrestrials on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059952.jpg', 'caption': 'A man wearing an alien tie takes a picture of himself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059952.jpg', 'caption': 'a man with an alien print tie who is wearing glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059952.jpg', 'caption': 'A man is posing for a self photo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215633.jpg', 'caption': 'A man dressed up and posing for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215633.jpg', 'caption': 'A hipster wearing glasses and a tie in front of a wooden wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215633.jpg', 'caption': 'A blonde haired male posing for a photo in a suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215633.jpg', 'caption': 'This man is wearing glasses in order to see better.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215633.jpg', 'caption': 'A person that is dressed nice taking a selfie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369799.jpg', 'caption': 'A group of kids that are sitting together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369799.jpg', 'caption': 'A group of children who are posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369799.jpg', 'caption': 'A group of children are posing for photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369799.jpg', 'caption': 'An old picture of a bunch of kids on a small section of bleachers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369799.jpg', 'caption': 'a bunch of kids are sitting for a photo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153994.jpg', 'caption': 'A person walking in the rain holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153994.jpg', 'caption': 'A person standing in the rain holding a large umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153994.jpg', 'caption': 'a person with an umbrella some lights and a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153994.jpg', 'caption': 'A person walking in the rain with an umbrella at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153994.jpg', 'caption': 'A person standing outside in the rain holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001682.jpg', 'caption': 'A boat sailing on top of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001682.jpg', 'caption': 'A sailboat is in the distance with a buoy ball nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001682.jpg', 'caption': 'an ocean with a sail boat sitting out in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001682.jpg', 'caption': 'ocean showing a boat sailing on the waters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001682.jpg', 'caption': 'A boat in the distance on a clear lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570952.jpg', 'caption': 'A blurry photo of a cat and a grandfather clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570952.jpg', 'caption': 'A cat and a large clock in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570952.jpg', 'caption': 'A cat is sitting near a clock posing for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570952.jpg', 'caption': 'Even though the picture is fuzzy, the cat and grandfather clock can be seen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570952.jpg', 'caption': 'Cat near grandfather clock in living room staring away.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544638.jpg', 'caption': 'A marina with several boats tied up to the docks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544638.jpg', 'caption': 'A group of boats next to a harbor with buildings in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544638.jpg', 'caption': 'A group of boats inside a harbor with old buildings behind them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544638.jpg', 'caption': 'A dock in a city with many different types of boats that are docked. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544638.jpg', 'caption': 'a bunch of boats are are sailing in a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539413.jpg', 'caption': \"A group of people standing in the rain under some umbrella's.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539413.jpg', 'caption': 'People with umbrellas looking towards the grassy area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539413.jpg', 'caption': 'people walking in the park in the rain\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539413.jpg', 'caption': 'A large group of people standing with some umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539413.jpg', 'caption': 'Some people are standing with umbrellas in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149165.jpg', 'caption': 'A group of men washing a baby elephant in a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149165.jpg', 'caption': 'a couple of en are washing an elephant in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149165.jpg', 'caption': 'Men clean a young elephant in a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149165.jpg', 'caption': \"A group of men washing an elephant's body in a stream.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149165.jpg', 'caption': 'Several people are washing an elephant in a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118579.jpg', 'caption': 'An elephant with a large trunk sitting on top of a ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118579.jpg', 'caption': 'a close up of a large elephant with bushes in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118579.jpg', 'caption': \"A close up view of an elephant's skin, trunk, tusks and eyes. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118579.jpg', 'caption': 'The face of an elephant staring straight ahead..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118579.jpg', 'caption': 'An elephant is standing outside in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309424.jpg', 'caption': 'An office area with two computer monitor and two hard casesset on a rolling chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309424.jpg', 'caption': 'Two briefcases are stacked up on a desk chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309424.jpg', 'caption': 'Two huge cases sitting on a chair in an office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309424.jpg', 'caption': 'Two suitcases that are sitting on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309424.jpg', 'caption': 'A couple of black suitcases are stacked up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229270.jpg', 'caption': 'A man with a scarf is next to a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229270.jpg', 'caption': 'A man near several pieces of luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229270.jpg', 'caption': 'A man standing next to several cases of luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229270.jpg', 'caption': 'A man sitting next to a pile of stacked suitcases', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229270.jpg', 'caption': 'An oriental man stands beside a cart of luggage being pulled by someone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272111.jpg', 'caption': 'a row of umbrellas opened advertising a beer company', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272111.jpg', 'caption': 'A cluster of advertising beach umbrellas open together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272111.jpg', 'caption': 'There are several Corona Extra umbrellas set up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272111.jpg', 'caption': 'The umbrellas labeled with the Corona logo stand side-by-side outdoors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000272111.jpg', 'caption': 'A line of corona beer umbrellas under a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251404.jpg', 'caption': 'A very cute boy smiling and holding luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251404.jpg', 'caption': 'a vintage photo of a kid holding a suit case ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251404.jpg', 'caption': 'A boy holding a suitcase and smiling with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251404.jpg', 'caption': 'A happy boy is waiting outside with his suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251404.jpg', 'caption': 'A boy in a coat holding a suit case and blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115765.jpg', 'caption': 'A group of young women standing under trees in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115765.jpg', 'caption': 'a group of women stand in a park area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115765.jpg', 'caption': 'Two ladies with umbrellas greet a man with a guitar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115765.jpg', 'caption': 'Two woman under umbrellas talking to a man with a guitar in a park area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115765.jpg', 'caption': 'ORIENTAL LADIES DRESSED UP EACH CARRYING AN UMBRELLA', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480179.jpg', 'caption': 'A pile of luggage and trunks sitting under a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480179.jpg', 'caption': 'Different types of luggage trunks stacked up together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480179.jpg', 'caption': 'Pile of dirty old luggage on a city street (possibly an art installation).', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480179.jpg', 'caption': 'A couple of suit cases stacked on top of one another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480179.jpg', 'caption': 'An art display shows multicolored chests of different varieties stacked on top of each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101785.jpg', 'caption': 'Two elephants standing next to each other in a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101785.jpg', 'caption': 'THERE ARE TWO ELEPHANTS STANDING NEXT TO ONE ANTOHER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101785.jpg', 'caption': 'Two elephants standing side by side in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101785.jpg', 'caption': 'The twin elephants are standing together in the tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101785.jpg', 'caption': 'an image of two elephants with sharp tusks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401197.jpg', 'caption': 'Numerous individuals are appreciating life and having an incredible time. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401197.jpg', 'caption': 'Boys are camping in the yard of a home. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401197.jpg', 'caption': 'a group of small boys sitting outside a tent', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401197.jpg', 'caption': 'A woman standing over a group of young boys outside a tent on a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401197.jpg', 'caption': 'The boys are preparing for a tent sleep out in the backyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555582.jpg', 'caption': 'A woman carrying an inside out umbrella past a wall covered in graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555582.jpg', 'caption': 'a black and white image of a woman by a graffiti wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555582.jpg', 'caption': 'A WOMAN WALKING THE STREETS WITH AN UPSIDE DOWN UMBRELLA ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555582.jpg', 'caption': 'Woman, with reversed umbrella, walking down sidewalk by wall with grafitti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555582.jpg', 'caption': 'A woman holding an umbrella, which is bent upwardly, passes along the sidewalk in front of a wall with graffiti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131453.jpg', 'caption': 'A family of elephants walking through tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131453.jpg', 'caption': 'A baby elephant elephant is walking along with grown elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131453.jpg', 'caption': 'A large elephant walking with two smaller elephants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131453.jpg', 'caption': 'three elephants walking in a field and one is a baby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131453.jpg', 'caption': 'Two adults and one baby elephant walling the plains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374649.jpg', 'caption': 'there is a small blue luggage along with other luggages', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374649.jpg', 'caption': 'A piece of light blue luggage sitting on top of a leather bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374649.jpg', 'caption': 'Four luggage bags are stacked close to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374649.jpg', 'caption': 'Multicolored bags and luggage carelessly strewn on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374649.jpg', 'caption': 'Various types of luggage lying on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440830.jpg', 'caption': 'A young woman is grabbing a pile of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440830.jpg', 'caption': 'a young girl with a hat moves her luggage away from a hotel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440830.jpg', 'caption': 'A woman pushes several bags of luggage outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440830.jpg', 'caption': 'Woman holding up a group of suitcases in public. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440830.jpg', 'caption': 'A person with many suitcases on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386035.jpg', 'caption': 'A woman in vintage hat holding a tan suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386035.jpg', 'caption': 'A woman in a black hat and coat looks straight ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386035.jpg', 'caption': 'A person dressed up and sitting behind some old luggage ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386035.jpg', 'caption': 'The woman is posing for a picture on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386035.jpg', 'caption': 'A woman sitting on a road with a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320106.jpg', 'caption': 'A hipster emo woman sitting on luggage in the middle of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320106.jpg', 'caption': 'a girl wearing all black sitting on suitcases on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320106.jpg', 'caption': 'The woman is posing sitting on suitcases for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320106.jpg', 'caption': 'Woman sitting on suitcase in middle of unpaved roadway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320106.jpg', 'caption': 'A picture done by Independent Expression Photography of a girl posing in an empty road sitting on her suit cases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112830.jpg', 'caption': 'A woman standing next to a brown horse and small dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112830.jpg', 'caption': 'Woman walking a horse on one leash and a dog on another', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112830.jpg', 'caption': 'A woman has a horse and a dog both on leashes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112830.jpg', 'caption': 'Man holding a brown horse and a dog on a leash. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112830.jpg', 'caption': 'girl with dog standing next to a horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571823.jpg', 'caption': 'A little girl walking a black dog across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571823.jpg', 'caption': 'Little girl hold the leash of a puppy on a grassy lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571823.jpg', 'caption': 'The little girl wants to go one way, but the pup has other ideas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571823.jpg', 'caption': 'A girl holding a pug dog on a leash by shoes and cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571823.jpg', 'caption': 'a little girl that has a dog on a leash', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139472.jpg', 'caption': 'A man in blue is holding a brown umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139472.jpg', 'caption': 'A view from below of a man holding an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139472.jpg', 'caption': 'A man holding an umbrella over the top of his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139472.jpg', 'caption': 'A man holding an umbrella in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139472.jpg', 'caption': 'A man is holding an open umbrella in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526353.jpg', 'caption': 'Several people are waiting outside an airport with their luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526353.jpg', 'caption': 'A group of people with their luggage wait to board a bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526353.jpg', 'caption': 'A group of people standing in a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526353.jpg', 'caption': 'A group of passengers with luggage stands by a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526353.jpg', 'caption': 'A woman holding her child by the pick-up area of an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443363.jpg', 'caption': 'A man riding a paddle board with two dogs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443363.jpg', 'caption': 'A man is wave boarding with two dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443363.jpg', 'caption': 'Two dogs wearing life jackets riding a paddle board with their human.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443363.jpg', 'caption': 'There is a man paddling a board along with his dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443363.jpg', 'caption': 'A man and two dogs on a green surfboard out on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559470.jpg', 'caption': 'a little boy holding onto a suitcase in an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559470.jpg', 'caption': 'a small boy wearing black and standing next to a red suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559470.jpg', 'caption': 'A little boy with a travel suitcase in an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559470.jpg', 'caption': 'A little boy is at a station holding an upright suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559470.jpg', 'caption': 'a small child holding a luggage bag in an air port', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490178.jpg', 'caption': 'a small child holding on to his luggage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490178.jpg', 'caption': 'a small child holds onto a piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490178.jpg', 'caption': 'A small person handles a suitcase in a terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490178.jpg', 'caption': 'A little boy stands looking away from the camera holding on to a red suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490178.jpg', 'caption': 'A boy with his luggage in an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460294.jpg', 'caption': 'A group of women walking across a parking lot with umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460294.jpg', 'caption': 'Three women walk through a parking lot carrying umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460294.jpg', 'caption': 'Three woman walking on the cement holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460294.jpg', 'caption': 'Women walking down the street holding umbrellas in their hands ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460294.jpg', 'caption': 'Three elderly women talking to each other while holding umbrellas in a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481130.jpg', 'caption': 'A long row of nice looking chairs in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481130.jpg', 'caption': 'Empty lawn chairs and umbrellas on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481130.jpg', 'caption': 'A group of chairs under an umbrella on a snowy day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481130.jpg', 'caption': 'a couple of benches sit under an umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481130.jpg', 'caption': 'Some lounge chairs are arranged on the sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341957.jpg', 'caption': 'A teddy bear is on the pillow and a jacket is on the bed.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000520787.jpg', 'caption': 'Food that is sitting on a plate near other types of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520787.jpg', 'caption': 'two slices of pizza of garlic and meat on a white round plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520787.jpg', 'caption': 'Two slices of pizza on a plate with toppings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520787.jpg', 'caption': 'Two slices of cake sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574095.jpg', 'caption': 'There are two slices of pizza in front of the rest of the pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574095.jpg', 'caption': 'A homemade pizza sliced and on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574095.jpg', 'caption': '2 slices of faccia bread on a plate, next to a pan holding the entire bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574095.jpg', 'caption': 'A pan of homemade pizza with vegetable and cheese toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574095.jpg', 'caption': 'A couple of pieces of pizza sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251920.jpg', 'caption': 'Two cut up pizzas sitting on pizza pans on top of a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251920.jpg', 'caption': 'Three different types of pizza on top of a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251920.jpg', 'caption': 'Two trays of homemade pizza sitting on the stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251920.jpg', 'caption': 'An assortment of pizza on a kitchen stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251920.jpg', 'caption': 'Various slices of leftover homemade pizzas sit on the stove with a partially7 drank glass of red wine. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525646.jpg', 'caption': 'A pizza topped with pepperoni and extra spinach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525646.jpg', 'caption': 'Small sized pizza covered in salad and many other elements.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525646.jpg', 'caption': 'A pizza is loaded up with green vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525646.jpg', 'caption': 'Closeup of a pizza including sauce and various lettuce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525646.jpg', 'caption': 'A pizza pie with lots of green vegetables on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361351.jpg', 'caption': 'Sliced pizza in delivery box with bottle beverage on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361351.jpg', 'caption': 'someone has eaten a slice of this pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361351.jpg', 'caption': 'A pizza is cut in 8 pieces with one piece 3/4 of the way eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361351.jpg', 'caption': 'there is a glass bottle next to a pizza box ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361351.jpg', 'caption': 'a pizza inside of a card board box next to a wine bottle ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425805.jpg', 'caption': 'A pizza and beer sit next to a finished painting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425805.jpg', 'caption': 'a bottle of beer sitting next to a big pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425805.jpg', 'caption': 'Eating beer and drinking pizza while observing a piece of art. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425805.jpg', 'caption': 'A pizza and beer are on a table by a work of art.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425805.jpg', 'caption': 'A painting on an easel in the background of pizza and a drink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169885.jpg', 'caption': 'A couple of young men sitting down sharing a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169885.jpg', 'caption': 'Two men pose for the camera with pizza and beer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169885.jpg', 'caption': 'Two young men are eating pizza with beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169885.jpg', 'caption': 'Two friends having pizza and beer in a cafe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169885.jpg', 'caption': 'Two men sit in a booth with pizza in front of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207886.jpg', 'caption': 'A man prepares to serve a pizza topped with french fries. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207886.jpg', 'caption': 'The giant pizza has mounds of french fries on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207886.jpg', 'caption': 'a pizza covered with french fries on a cutting board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207886.jpg', 'caption': 'A person making a vegetarian pizza from scratch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207886.jpg', 'caption': 'French fries are on top of a bread crust and someone is spooning a sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118739.jpg', 'caption': 'There is a pizza with some slices taken out of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118739.jpg', 'caption': 'A pizza on cardboard with one slice gone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118739.jpg', 'caption': 'A pizza with a slice missing on a white sheet in the sunlight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118739.jpg', 'caption': 'The pizzas are sitting on plates on the white paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118739.jpg', 'caption': 'Large pizza pie with one slice missing on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225565.jpg', 'caption': 'A cheesy pizza sitting on top of an oven pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225565.jpg', 'caption': 'A pizza with half pepperoni and half veggies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225565.jpg', 'caption': 'a close up of a pizza with different toppings ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225565.jpg', 'caption': 'A big and nice pizza with cheese and looks tasty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225565.jpg', 'caption': 'A pizza that is a little over half pepperoni, the other side has other added ingredients.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485236.jpg', 'caption': 'Several slices of pizza are on a baking tray. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485236.jpg', 'caption': 'there are several pieces of food in a pan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485236.jpg', 'caption': 'Several sliced of pizza sitting on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485236.jpg', 'caption': 'Several squared pieces of pizza sitting on a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485236.jpg', 'caption': 'Several small rectangular slices of pizza with cheese and mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383073.jpg', 'caption': 'a large flat pizza that is odd shaped', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383073.jpg', 'caption': 'I long and skinny piece of home made pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383073.jpg', 'caption': 'A piece of food is sitting on the rectangular plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383073.jpg', 'caption': 'A pizza with olives, mushrooms and ham waits to go into the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383073.jpg', 'caption': 'Long pizza bread with lots of toppings out of focus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485288.jpg', 'caption': 'Three white plates topped with pizza on an orange table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485288.jpg', 'caption': 'There are three single sized pizzas on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485288.jpg', 'caption': 'Three personal sized pizzas sit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485288.jpg', 'caption': 'A table that has three plates of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485288.jpg', 'caption': 'Three different personal pizzas are on this table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280560.jpg', 'caption': 'A man standing on a tennis court holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280560.jpg', 'caption': 'A tennis player holds a ball as if to throw it in the air to serve it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280560.jpg', 'caption': 'A person on a court with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280560.jpg', 'caption': 'A man is on the field with his Tennis racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280560.jpg', 'caption': 'A person holding a tennis racket on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271117.jpg', 'caption': 'The desk has a potted plant near a remote, books, and a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271117.jpg', 'caption': 'A wooden table topped with lots of clutter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271117.jpg', 'caption': 'A desk with a phone and a vase of flowers on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271117.jpg', 'caption': 'a desk with a vase and remote control on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271117.jpg', 'caption': 'An organized table with shelf above including a telephone, flowers and alcohol. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288874.jpg', 'caption': 'A mirror reflecting a clock next to a shelf in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288874.jpg', 'caption': 'a mirror reflecting all the objects on the other side of the room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288874.jpg', 'caption': 'The mirror shows dishes on a shelf, pots and pans, and a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288874.jpg', 'caption': 'Kitchen items and a clock reflected in a round mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288874.jpg', 'caption': 'A shelf with dishes and a clock in a mirror reflection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281882.jpg', 'caption': 'A glass table holding a cup of coffee and a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281882.jpg', 'caption': 'A latte and a cell phone sit next to each other on a glass table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281882.jpg', 'caption': 'A cup of coffee and a cell phone on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281882.jpg', 'caption': 'Cell phone rest next to a cup on a saucer on the glass top table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281882.jpg', 'caption': 'The cellphone is left out by the coffee cup. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190898.jpg', 'caption': 'A building with large windows sitting inside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190898.jpg', 'caption': 'Church alter with blue and yellow stained glass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190898.jpg', 'caption': 'a building with a door way and many windows above', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190898.jpg', 'caption': 'Indoor open area with stain glassed window and clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190898.jpg', 'caption': 'This is a picture of church at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233528.jpg', 'caption': 'A desktop computer sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233528.jpg', 'caption': 'a couple of computers are sitting on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233528.jpg', 'caption': 'On a table a computer,a laptop,papers,books,some eatables in a tray and other things are kept.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233528.jpg', 'caption': 'A very big nice looking desk filled with many items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233528.jpg', 'caption': 'a desk with a monitor a keyboard and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001436.jpg', 'caption': 'Young man wearing glasses lounging on a sofa with three white laptop computers on his lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001436.jpg', 'caption': 'A young man lieing down with three apple computers on his chest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001436.jpg', 'caption': 'A man has three laptops stacked on his knees on the couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001436.jpg', 'caption': 'A man relaxes with three laptops on his lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001436.jpg', 'caption': 'A man sits lies on a couch with 3 laptop computers stacked on him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385641.jpg', 'caption': 'a small laptop is sitting on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385641.jpg', 'caption': 'A laptop computer sits on a computer desk next to a mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385641.jpg', 'caption': 'A silver laptop computer on a desk in an office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385641.jpg', 'caption': 'The laptop is sitting on the desk and is turned on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385641.jpg', 'caption': 'This is a desk with a macbook pro with a wood themed background on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506515.jpg', 'caption': 'A man holds up a laptop computer for others to see.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506515.jpg', 'caption': 'a screen showing a man with laptop in his hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506515.jpg', 'caption': 'A man holding a laptop in one of his hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506515.jpg', 'caption': 'A man standing on stage holding a small computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506515.jpg', 'caption': 'A man holding up a laptop computer in his right hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246001.jpg', 'caption': 'A lot of computers that are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246001.jpg', 'caption': 'There are lap tops on tables ready for a class to start.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246001.jpg', 'caption': 'This is a conference room with a lot of laptops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246001.jpg', 'caption': 'As laptops are sitting in position for a seminar a woman checks over one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246001.jpg', 'caption': 'Two tables filled with desktop computers and papers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347390.jpg', 'caption': 'A classroom type setting with rectangular tables that have chairs and laptop computers at each desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347390.jpg', 'caption': 'A woman is looking at the laptop in the classroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347390.jpg', 'caption': 'A dark computer room with one woman inside of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347390.jpg', 'caption': 'A girl is playing on a laptop in a computer lab.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347390.jpg', 'caption': 'A meeting room with tables covered in computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485580.jpg', 'caption': 'Rows of computers sit on a group of desks in a classroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485580.jpg', 'caption': 'Two desk with apple laptop computers littered all over their surfaces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485580.jpg', 'caption': 'Several tables with laptops on them and a projection screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485580.jpg', 'caption': 'A woman in a class room preparing a slide on the projection screen ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485580.jpg', 'caption': 'A classroom with several laptops around the room and text displayed from an overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226412.jpg', 'caption': 'The computer technician is repairing several different laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226412.jpg', 'caption': 'A man working on a row of laptops on a semi circular desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226412.jpg', 'caption': 'A man who is looking at a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226412.jpg', 'caption': 'Technician installing laptops on a curve table in a lecture hall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226412.jpg', 'caption': 'A man working in a room with a bunch of laptops. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441293.jpg', 'caption': 'The technicians are making sure all is operational for the upcoming class.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441293.jpg', 'caption': 'A class room with numerous laptops at desks with chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441293.jpg', 'caption': 'a room full of laptops on the tables while on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441293.jpg', 'caption': 'a conference room with a few people in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441293.jpg', 'caption': 'Five people stand in a room with many laptops on the desks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258734.jpg', 'caption': 'A little boy leaning over a lap top computer on a foot rest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258734.jpg', 'caption': 'A baby is trying to type on the computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258734.jpg', 'caption': 'A boy in recliner playing with a white laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258734.jpg', 'caption': 'A child kneeling on the foot rest of a recliner playing with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258734.jpg', 'caption': 'a child on a recliner chair with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208623.jpg', 'caption': 'A woman sitting in front of a laptop computer at a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208623.jpg', 'caption': 'A man approaches a team of two for advice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208623.jpg', 'caption': 'A man is speaking with a lady who is seated near another man in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208623.jpg', 'caption': 'Three people gather over an open laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208623.jpg', 'caption': 'A group of people gathered around a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493623.jpg', 'caption': 'A pair of high heels sitting near a vase with flowers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493623.jpg', 'caption': \"A person doing a woman's makeup near a vase with flowers and shoes.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493623.jpg', 'caption': 'a woman is standing in a room with flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493623.jpg', 'caption': 'Two people in the background doing make-up with shoes and flowers in teh foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493623.jpg', 'caption': 'Two people in a white room next to stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579666.jpg', 'caption': 'Three people standing next to each other and a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579666.jpg', 'caption': 'Two boys and a man smiling while standing in front of monitors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579666.jpg', 'caption': 'A group of young people standing around a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579666.jpg', 'caption': 'A man and two boys are standing by some computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579666.jpg', 'caption': 'Two boys with a man in a room smiling for the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131203.jpg', 'caption': 'An open laptop computer sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131203.jpg', 'caption': 'This is an image of a laptop computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131203.jpg', 'caption': 'LAP TOP COMPUTER WITH CORDS ALL OVER THE PLACE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131203.jpg', 'caption': 'A laptop computer sitting opened on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131203.jpg', 'caption': 'a close up of a laptop and a mouse ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191069.jpg', 'caption': 'A smart phone being held up in front of a lap top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191069.jpg', 'caption': 'The person is holding his cell phone while on his laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191069.jpg', 'caption': 'A hand holding a cellphone with a laptop in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191069.jpg', 'caption': 'IPhone with screen full of icons in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191069.jpg', 'caption': 'someone holding a cell phone in front of a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213054.jpg', 'caption': 'Close up of pencil cup with pens, pencils, and scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213054.jpg', 'caption': \"Orange scissors and pencils sit in a cup in front of someone's face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213054.jpg', 'caption': 'A child is looking through a pair of scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213054.jpg', 'caption': 'A person behind a cup of office supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213054.jpg', 'caption': 'A person looks through the holes of a pair of scissors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565233.jpg', 'caption': 'Man sitting on his bed while using his laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565233.jpg', 'caption': 'A man is sitting on a bed while using a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565233.jpg', 'caption': 'a man with glasses sitting on a bed using a laptop computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565233.jpg', 'caption': 'a male in a red shirt and a black laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565233.jpg', 'caption': \"A man contemplating something he's looking at on a laptop.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411277.jpg', 'caption': 'A desk with five different computers on a blue table cloth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411277.jpg', 'caption': 'A table topped with laptop computer and a monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411277.jpg', 'caption': 'very many computer monitors in a room not well arranged', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411277.jpg', 'caption': 'Computer monitors, a keyboard, a laptop and other electronic equipment is spread across a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411277.jpg', 'caption': 'a room full of computers and monitors and keyboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179322.jpg', 'caption': 'A person is holding something next to an open microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179322.jpg', 'caption': 'A man is pictured taking a item out of the microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179322.jpg', 'caption': 'A man standing in front of an open microwave door holding a piece of black plastic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179322.jpg', 'caption': 'A frowning man holding a small black piece by an open microwave door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179322.jpg', 'caption': 'A man removes a broken piece from his microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221700.jpg', 'caption': 'A pair of red scissors sitting on a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221700.jpg', 'caption': 'A pair of scissors sitting on a newspaper under an advertisement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221700.jpg', 'caption': 'A pair of red scissors sitting on top of a news paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221700.jpg', 'caption': 'a pair of scissors sitting on a piece of paper ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221700.jpg', 'caption': 'Red handled scissors laying on a arts article in a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008170.jpg', 'caption': 'A refrigerator and a stove occupy a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008170.jpg', 'caption': 'A white stove top oven sitting next to a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008170.jpg', 'caption': 'A kitchen with a stove, microwave and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008170.jpg', 'caption': \"This picture is taken at someone's kitchen area.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008170.jpg', 'caption': 'A kitchen with different appliances inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564940.jpg', 'caption': 'A row of fluffy bears in t-shirts sitting on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564940.jpg', 'caption': 'Several white colored stuffed animals wearing black shirts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564940.jpg', 'caption': 'Stuffed teddy bears wearing black t-shirts sit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564940.jpg', 'caption': 'A group of small teddy bears wearing black t-shirts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564940.jpg', 'caption': 'some teddy bears wearing tshirts sitting together ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285451.jpg', 'caption': 'A young man with a goatee talking on a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285451.jpg', 'caption': 'A man with glasses smiles as he holds a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285451.jpg', 'caption': 'A man with a goatee smiling and talking on the phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285451.jpg', 'caption': 'A man lookin at the camera talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285451.jpg', 'caption': 'Mirror image of a smiling man talking on his cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459884.jpg', 'caption': 'A man walking across a street near a light pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459884.jpg', 'caption': 'People walk on the city street with patches of snow on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459884.jpg', 'caption': 'Several people walk along the snow covered streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459884.jpg', 'caption': 'this is a man using his phone and walking', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459884.jpg', 'caption': 'A man that is standing near a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081812.jpg', 'caption': 'A group of people are eating at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081812.jpg', 'caption': 'a bunch of people that are sitting at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081812.jpg', 'caption': 'some people at a table with food and drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081812.jpg', 'caption': 'A group of people sitting around a dinner table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081812.jpg', 'caption': 'All of the people are having dinner together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247839.jpg', 'caption': 'A group of men and women raising their glasses in a toast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247839.jpg', 'caption': 'A group of people eating at a table raise their glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247839.jpg', 'caption': 'this is a group of people out to eat together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247839.jpg', 'caption': 'A group of people sitting around a table eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247839.jpg', 'caption': 'Tables full of smiling people, eating and drinking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318290.jpg', 'caption': 'An oven and a range on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318290.jpg', 'caption': 'A light blue conventional oven undergoing some repairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318290.jpg', 'caption': 'Closeup of a miniature oven and stove on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318290.jpg', 'caption': 'Two very old vintage pieces of oven equipment sitting outside on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318290.jpg', 'caption': 'An oven and stovetop sitting on a table in the back yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554523.jpg', 'caption': 'a kitchen with a refrigerator and tiled floors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554523.jpg', 'caption': 'A fridge in an empty kitchen with nothing on the shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554523.jpg', 'caption': 'There is a refrigerator sitting in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554523.jpg', 'caption': 'A partial view of a kitchen primarily the refrigerator is showing ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554523.jpg', 'caption': 'A refrigerator sits in the corner of the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149500.jpg', 'caption': 'An old man is trying to use his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149500.jpg', 'caption': 'An elderly man looks at a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149500.jpg', 'caption': 'An old man holding up a cell phone to his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149500.jpg', 'caption': 'An elderly disabled man looks at a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149500.jpg', 'caption': 'An old man looks at a cell phone screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205720.jpg', 'caption': 'A man talking on a cell phone on a boat with a city in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205720.jpg', 'caption': 'A man is on a boat using his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205720.jpg', 'caption': 'a man is standing by the water and talking on the phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205720.jpg', 'caption': 'A man uses a cellphone on a boat near a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205720.jpg', 'caption': 'The young man is making a cel phone call from a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168953.jpg', 'caption': 'Man sitting at a table looking at silver cell phones in a circle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168953.jpg', 'caption': 'Man sitting at table with assortment of cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168953.jpg', 'caption': 'A man sits behind six cell-phones in a star pattern on a white table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168953.jpg', 'caption': 'A man that is sitting at a table with cellphones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168953.jpg', 'caption': 'A man sitting at a table in front of cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173783.jpg', 'caption': 'Cell phones in a circle around kernel corn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173783.jpg', 'caption': 'six cell phones positioned in the shape of a flower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173783.jpg', 'caption': 'a number of cell phones on a table near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173783.jpg', 'caption': 'these cell phones are lying on a table together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173783.jpg', 'caption': 'Six cell phones are arranged in a circle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181591.jpg', 'caption': 'A man in glasses using a telephone in a salon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181591.jpg', 'caption': 'A man sitting at a table talking on a cellphone while another man stands by a mirror behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181591.jpg', 'caption': 'The man is sitting down talking on his cell phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181591.jpg', 'caption': 'A man in white shirt and glasses at a salon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181591.jpg', 'caption': 'A person on a mobile phone with a clock in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384335.jpg', 'caption': 'A cellphone is in front of a purse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384335.jpg', 'caption': 'A cell phone sits beside a small crocheted change purse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384335.jpg', 'caption': 'A Samsung fliphone rests in front of a purse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384335.jpg', 'caption': 'A cellular phone next to a purse sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384335.jpg', 'caption': 'A cell phone laying in front of a woven clutch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547212.jpg', 'caption': 'Guy looking down girls shirt while holding cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547212.jpg', 'caption': 'A man is holding a cell phone next to a girl, who is holding a drink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547212.jpg', 'caption': 'A man holding his cellphone towards a girls drink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547212.jpg', 'caption': 'A man holding a cell phone near a womans chest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547212.jpg', 'caption': 'Three people are gathered together in a group', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549361.jpg', 'caption': 'a man leans against a brick wall while he talks on his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549361.jpg', 'caption': 'A woman standing against the wall, with her cellphone in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549361.jpg', 'caption': 'A boy standing against a wall while on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549361.jpg', 'caption': 'A young man standing against a wall talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549361.jpg', 'caption': 'A person is talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443860.jpg', 'caption': 'A man holding a smart phone in his right hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443860.jpg', 'caption': 'A man sitting in a chair looking at a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443860.jpg', 'caption': 'A man in a blue shirt looking at his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443860.jpg', 'caption': 'A distressed man looking at the phone in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443860.jpg', 'caption': \"A man looks intensely at his Iphone's screen.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579034.jpg', 'caption': 'A cell phone is laying on a crossword page from a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579034.jpg', 'caption': 'A cellphone sitting on top of a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579034.jpg', 'caption': 'a cellular phone sitting on the comics section of a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579034.jpg', 'caption': 'An old cellphone on top of a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579034.jpg', 'caption': 'Closeup of a black and grey cellphone atop a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029521.jpg', 'caption': 'A man sitting at a table with his eyes closed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029521.jpg', 'caption': 'A man sitting at a table with his eyes closed and a woman behind him on a cell phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029521.jpg', 'caption': 'a man with eyes closed and behind him a woman on a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029521.jpg', 'caption': 'A man sleeping in front of a young woman talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029521.jpg', 'caption': 'A man with his eyes closed and a woman on the phone in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030210.jpg', 'caption': 'Several older electronics, including cellular phones and a palm pilot with a broken screen next to each other in white box enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030210.jpg', 'caption': 'Several cell phones, one of them with a cracked display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030210.jpg', 'caption': 'a bunch of old palm pilots and old cell phones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030210.jpg', 'caption': 'a table full of different hand held gadgets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030210.jpg', 'caption': 'A group of retro cell phones and beepers, one of which has a broken screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309933.jpg', 'caption': 'A microwave is sitting idly in the kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309933.jpg', 'caption': 'A shiny silver metal microwave near wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309933.jpg', 'caption': 'There are wooden cabinets that have a microwave attached at the bottom of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309933.jpg', 'caption': 'A microwave sitting next to and underneath kitchen cupboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309933.jpg', 'caption': 'A kitchen scene with focus on a silver microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069668.jpg', 'caption': 'A man cooking some square food in an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069668.jpg', 'caption': 'He tests to see if the cookies are ready to come out of the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069668.jpg', 'caption': 'An employee checking the quality of a product coming out of the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069668.jpg', 'caption': 'A man cooking cookies inside of an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069668.jpg', 'caption': 'A man is in front of an open oven door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004157.jpg', 'caption': 'A wall click with decorations hanging below it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004157.jpg', 'caption': 'Round objects hanging from a wall under a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004157.jpg', 'caption': 'a black and white circle clock mounted on a wall above a shelf holding drinking glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004157.jpg', 'caption': 'A clock on the wall up near the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004157.jpg', 'caption': 'A clock has two decorative balls hanging below it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233376.jpg', 'caption': 'Inside of a kitchen with a refrigerator and counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233376.jpg', 'caption': 'A refrigerator next to a counter with bottles of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233376.jpg', 'caption': 'A tan fridge is sitting in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233376.jpg', 'caption': 'A small kitchen with an old fridge in the corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233376.jpg', 'caption': 'A refrigerator in a basic kitchen with bottles on counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567290.jpg', 'caption': 'A store is filled with chandeliers hanging form the ceiling and various furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567290.jpg', 'caption': 'Chandeliers, clocks, lamps, storage units, and statues clustered together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567290.jpg', 'caption': 'A shop with clocks, sculptures, and other items', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567290.jpg', 'caption': 'Black and white photograph of various furniture on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567290.jpg', 'caption': 'Several lights and clocks are in a shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515176.jpg', 'caption': 'a metal box is sitting on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515176.jpg', 'caption': 'An ice machine is one the floor next to a dishwasher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515176.jpg', 'caption': 'A silver ice dispenser on a tan tiled floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515176.jpg', 'caption': 'A ice machine on the ground in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515176.jpg', 'caption': 'an ice dispenser next to a dishwasher in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292467.jpg', 'caption': 'These are archways with mini lights and a clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292467.jpg', 'caption': 'A large building displays glittered clock decorations in its interior.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292467.jpg', 'caption': 'The clock is suspended in the middle of columns covered in lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292467.jpg', 'caption': 'Two archways are decorated with white lights and a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292467.jpg', 'caption': 'a building that has a clock on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186182.jpg', 'caption': 'Glasses sitting on top of a stainless steel refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186182.jpg', 'caption': 'kitchen cabinets and a refrigerator with glassware and plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186182.jpg', 'caption': 'glasses sitting on top of a fridge and a planter on top of some cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186182.jpg', 'caption': 'A plant is on top of the cabinets in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186182.jpg', 'caption': 'Three wine glasses and a glass bowl are on the top of the refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049676.jpg', 'caption': 'Assortment of kitchen appliances displayed in white cupboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049676.jpg', 'caption': 'a cabinet holds kitchen machines like a food processor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049676.jpg', 'caption': 'A cluttered kitchen cabinet containing a food processor, blender, ice cube tray, and other supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049676.jpg', 'caption': 'A couple of cabinets opened with juicers and blenders in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049676.jpg', 'caption': 'a open cabinet with a chopper inside ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461681.jpg', 'caption': 'A blender full of fruit stands next to an empty blender.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461681.jpg', 'caption': 'One full blender and one empty blender sit on a countertop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461681.jpg', 'caption': 'One of two blenders is full of unblended ingredients.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461681.jpg', 'caption': 'two blenders sitting beside each other on a kitchen counter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461681.jpg', 'caption': 'A counter top with two blenders on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105737.jpg', 'caption': 'A tilted square photo of a book shelve full of books and a teddy bear with a bow tie in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105737.jpg', 'caption': 'there is a stuffed bear sitting on a book shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105737.jpg', 'caption': 'A stuffed teddy bear sitting on top of a book shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105737.jpg', 'caption': 'A teddy bear sitting on a shelf in a library.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105737.jpg', 'caption': 'A stuffed bear and some books in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452881.jpg', 'caption': 'A table topped with a wooden block and an open book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452881.jpg', 'caption': 'Still life color photograph of items on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452881.jpg', 'caption': 'We see a low angle view of a cluttered desk top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452881.jpg', 'caption': 'A crowded desktop is shown in very dim lighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452881.jpg', 'caption': 'A desk holding several items including a clock and an open book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090429.jpg', 'caption': 'A thing is in the outline and it shows up like something \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090429.jpg', 'caption': 'A white vase with flower sitting on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090429.jpg', 'caption': 'A white chair topped with a vase full of flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090429.jpg', 'caption': 'A vase with flowers sitting on wooden chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090429.jpg', 'caption': 'A tin vase filled with apple blossoms sits on a folding chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202231.jpg', 'caption': 'A man holding up holding an object inside of a plastic case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202231.jpg', 'caption': 'A bearded bald man in a grey shirt holding up a hairbrush and smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202231.jpg', 'caption': 'A man holds a cellphone in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202231.jpg', 'caption': 'a man smiling at a photo in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202231.jpg', 'caption': 'A bald man smiles and holds up an item for the picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160108.jpg', 'caption': 'A blue sculpture with a clock on it outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160108.jpg', 'caption': 'a clock in a curved blue and metal decorated tower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160108.jpg', 'caption': 'An artistic blue sculpture with a clock in it stands in front of a two-story building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160108.jpg', 'caption': 'An artsy blue clock stands outside of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160108.jpg', 'caption': 'There is a clock inside of a curvy blue sculpture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160483.jpg', 'caption': 'A white plate sitting on top of a plate filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160483.jpg', 'caption': 'Plate of food consisting of greens potatoes mixed vegetable and meat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160483.jpg', 'caption': 'A round, white plate is filled with several helpings of different types of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160483.jpg', 'caption': 'A plate is piled high with an assortment of different foods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160483.jpg', 'caption': 'a white plate with a good variety of food items on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292804.jpg', 'caption': 'A woman rushes with a handbag through an empty train station with a large clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292804.jpg', 'caption': 'A train terminal is often located in a huge brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292804.jpg', 'caption': 'A woman is walking near the clock in the middle of a transit station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292804.jpg', 'caption': 'A woman walking through a major train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292804.jpg', 'caption': 'a person walks in a big building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241726.jpg', 'caption': 'A clock is standing in the middle of the grass in the middle of the afternoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241726.jpg', 'caption': 'A pole that has a clock on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241726.jpg', 'caption': 'A clock stands along a quiet golf course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241726.jpg', 'caption': 'A clock sitting in the grass near several trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241726.jpg', 'caption': 'A clock put on a post in the middle of a golf course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473632.jpg', 'caption': \"A brown teddy bear sitting on top of a pregnant woman's belly.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473632.jpg', 'caption': 'A pregnant belly with a teddy bear on top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473632.jpg', 'caption': \"A teddy bear sits on top of a pregnant woman's stomach.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473632.jpg', 'caption': 'an image of a pregnant woman with a teddy bear on her stomach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473632.jpg', 'caption': 'Small teddy bear sitting on the stomach of a pregnant woman. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041246.jpg', 'caption': 'A clock that is on the side of a tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041246.jpg', 'caption': 'A tall clock tower reaching into the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041246.jpg', 'caption': 'A picture of a historic clock tower. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041246.jpg', 'caption': 'An old clock tower is photographed against the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041246.jpg', 'caption': 'A picture of a large stone clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148353.jpg', 'caption': 'A couple of people walking over a bridge going over a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148353.jpg', 'caption': 'People are walking across a bridge near a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148353.jpg', 'caption': 'a bridge with two people and a steeple with a clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148353.jpg', 'caption': 'two people walking across a bridge that is high in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148353.jpg', 'caption': 'A clock tower sits behind a high bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321437.jpg', 'caption': 'A clock on a pole sitting next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321437.jpg', 'caption': 'a large post with a clock outside ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321437.jpg', 'caption': 'An analog clock on a pole outside near buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321437.jpg', 'caption': 'A large clock is at the end of a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321437.jpg', 'caption': 'A clock attached to a pole on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293249.jpg', 'caption': 'A glass table with a plate of bar cookies, a potted plant and a vase filled with chocolate eggs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293249.jpg', 'caption': 'a vase with candy and a potted plant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293249.jpg', 'caption': 'A plant in a clay pot and a vase of red potatoes on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293249.jpg', 'caption': 'Foiled wrapped chocolate \"eggs\" in decorative glass, next to a potted plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293249.jpg', 'caption': 'There are a bunch of chocolate eggs in the glass vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108853.jpg', 'caption': 'Flowers in a vase in a dimly lit room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108853.jpg', 'caption': 'The large flowers are in a metal vase on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108853.jpg', 'caption': 'some flowers are siting on a dimly lit table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108853.jpg', 'caption': 'A bouquet of blooming flowers inside a steel vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108853.jpg', 'caption': 'A metal container with flowers in it rests on a tabletop next to a matching bowl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341778.jpg', 'caption': 'A selection of pottery vases in various colors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341778.jpg', 'caption': 'Several vases of different colors on a grey background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341778.jpg', 'caption': 'Several ceramic vases of various colors on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341778.jpg', 'caption': 'Group of pots intended to be used for flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341778.jpg', 'caption': 'A number of brightly colored vases laid out on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064796.jpg', 'caption': 'A decorative container with mini roses is sitting on a pedestal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064796.jpg', 'caption': 'A plant that has been potted and placed on a pedestal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064796.jpg', 'caption': 'A vase holds green leaves and red flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064796.jpg', 'caption': 'A vase that has some red flowers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064796.jpg', 'caption': 'A GREEN VASE SITTING ON THE TOP OF A PLANTER ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322475.jpg', 'caption': 'A large pot with a bunch of white and yellow flowers inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322475.jpg', 'caption': 'a close up of a vase with flowers inside it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322475.jpg', 'caption': 'A vase with an arrangement of wild flowers and branches in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322475.jpg', 'caption': 'a plant is in a vase on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322475.jpg', 'caption': 'An orange vase full of flowers with an orange floor and a brown stripe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156806.jpg', 'caption': 'A vase sitting on a hard wood floor with flowers sticking out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156806.jpg', 'caption': 'A red vase with long pink daisies set on a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156806.jpg', 'caption': 'Flowers in a red container on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156806.jpg', 'caption': 'A plant grows from a nice piece of pottery', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156806.jpg', 'caption': 'A flower vase with pink flower inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421069.jpg', 'caption': 'A pair of scissors and a booklet on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421069.jpg', 'caption': 'A pair of scissors sitting on a piece of news paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421069.jpg', 'caption': 'A red pair of scissors are sitting on top of newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421069.jpg', 'caption': 'A pair of scissors are sitting on top of a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421069.jpg', 'caption': 'A pair of scissors on a paper on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188509.jpg', 'caption': 'Blue scissors cutting up a plastic credit card', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188509.jpg', 'caption': \"A pair of scissors is lying on a table with a clipped card in it's blades.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188509.jpg', 'caption': 'Pair of scissors cutting credit card in half with wood table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188509.jpg', 'caption': 'A pair of scissors cutting a credit card in half.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188509.jpg', 'caption': 'scissors on table cutting credit card into pieces', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500814.jpg', 'caption': 'A little girl that is walking in the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500814.jpg', 'caption': 'A young girl in a pink shirt holding a stuffed animal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500814.jpg', 'caption': 'A little girl in a red shirt and blue dress standing on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500814.jpg', 'caption': 'A little girl is holding a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500814.jpg', 'caption': 'A little girl posing for a picture while holding a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122602.jpg', 'caption': 'A table with scissors and a bottle of podge next to a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122602.jpg', 'caption': 'Paper, glue and scissors are things needed for this project', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122602.jpg', 'caption': 'A paper cutter and other crafting supplies are sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122602.jpg', 'caption': 'A variety of craft supplies set on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122602.jpg', 'caption': 'Design paper sits on a cutting board beside scissors and glue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363844.jpg', 'caption': 'A lot of stuffed animals that are hanging up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363844.jpg', 'caption': 'Stuffed animals and dolls are hanging and stacked everywhere inside a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363844.jpg', 'caption': 'a person standing next a many stuffed animals and dolls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363844.jpg', 'caption': 'People looking at a vast amount of stuffed animals. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363844.jpg', 'caption': 'A shop with stuffed animals of every kind on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135399.jpg', 'caption': 'Bows of food with spoons in them sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135399.jpg', 'caption': 'A person holding a bowl of oats, next to bowls of other condiments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135399.jpg', 'caption': 'A table has a variety of foods to serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135399.jpg', 'caption': 'A table with bowls of grains and fruit and a hand with a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135399.jpg', 'caption': 'A large dining table set up buffet style with many bowls of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265227.jpg', 'caption': 'A white plate topped with heart shaped waffles next to bacon and eggs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265227.jpg', 'caption': 'A hand is on a plate that is on a table that has heart pancakes, egg, and bacon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265227.jpg', 'caption': 'some heart shaped waffles on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265227.jpg', 'caption': ' heart shaped waffles an egg and some bacon with syrup and coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265227.jpg', 'caption': 'A breakfast plate with heart-shaped waffles, bacon and a fried egg. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548882.jpg', 'caption': 'A plate of food and a cup of coffee on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548882.jpg', 'caption': 'A photo of an omelet and toast with coffee on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548882.jpg', 'caption': 'Some bread and egg on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548882.jpg', 'caption': 'A plate of food is shown on a table with coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548882.jpg', 'caption': 'A plate on the table that has eggs and toast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334810.jpg', 'caption': 'Noodle soup with meat slices, in white bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334810.jpg', 'caption': 'We see a bowl of meat and noodles in a broth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334810.jpg', 'caption': 'some plates and silverware with some noodles and meat ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334810.jpg', 'caption': 'This is a white plate filled with spaghetti and beef with beef broth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334810.jpg', 'caption': 'Close up photo of a plate of food with two plates behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409259.jpg', 'caption': 'A plate with eggs, sausage and bacon sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409259.jpg', 'caption': 'A bowl sitting on top of a table filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409259.jpg', 'caption': ' very cooked food on a grey plate on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409259.jpg', 'caption': 'A bowl with an egg on top of crumbled bacon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409259.jpg', 'caption': 'Silver bowl with eggs and bacon next to a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135167.jpg', 'caption': 'Scrambled eggs are accompanying dinner foods on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135167.jpg', 'caption': 'This plate contains beans, scrambled eggs, some sort of weiners, and cherry tomatoes on the vine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135167.jpg', 'caption': 'a breakfast is displayed on a plate on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135167.jpg', 'caption': 'A couple of different types of food on a white dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135167.jpg', 'caption': 'A white plated topped with different types of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110048.jpg', 'caption': 'A plate of food with sauce and chopsticks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110048.jpg', 'caption': 'An asian food dish with chopsticks and a cup of tea sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110048.jpg', 'caption': 'a blue plate filled with ravioli and a kids spoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110048.jpg', 'caption': 'A plate of food and a mug of tea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110048.jpg', 'caption': 'a plate of food near a cup of coffee on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487385.jpg', 'caption': 'Two plates filled with food siting beside a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487385.jpg', 'caption': 'A plate of food and a book on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487385.jpg', 'caption': 'a plate of food with a book next to it, and an eyeglass case in front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487385.jpg', 'caption': 'A meal set out on a counter with buttered bread and an open book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487385.jpg', 'caption': 'Plate with vegetables and open book on stand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508470.jpg', 'caption': 'A white plate topped with rice and sauce covered beef.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508470.jpg', 'caption': 'A plate of beef and rice on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508470.jpg', 'caption': 'A plate full of food that is sitting on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508470.jpg', 'caption': 'A plate full of meat and rice with a drink on a table in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508470.jpg', 'caption': 'A plate on chinese food including rice. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202609.jpg', 'caption': 'A basket filled with food and a cup of salsa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202609.jpg', 'caption': 'Deep fried treats and dip are in a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202609.jpg', 'caption': 'A bowl of food with a small container of salsa on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202609.jpg', 'caption': 'A person at a table with some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202609.jpg', 'caption': 'This is some ones lunch and drinks that they are having for lunch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004386.jpg', 'caption': 'A man sitting on the floor holding a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004386.jpg', 'caption': 'A man eating a meal up against a purple wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004386.jpg', 'caption': 'A man against a purple wall eating a sandwich and a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004386.jpg', 'caption': 'A man in glasses eating a a sandwich on a paper plate with a fork. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004386.jpg', 'caption': 'A man is leaning against the building eating a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502001.jpg', 'caption': 'some people at a table with food and drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502001.jpg', 'caption': 'A group of people seated around long tables look towards the front of the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502001.jpg', 'caption': 'Man people sitting at rectangular tables; a few people taking pictures. ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000560662.jpg', 'caption': 'An action shot of a basketball game with one player leaping in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062230.jpg', 'caption': 'The basketball players are playing in a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062230.jpg', 'caption': 'Two basketball players reach up for the hoop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062230.jpg', 'caption': 'A number of basketball players engaged in competitive play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062230.jpg', 'caption': 'Two basketball players jump to the hoop to block another from scoring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062230.jpg', 'caption': 'A group of basket ball players jumping into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039858.jpg', 'caption': 'A group of men standing next to each other without a shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039858.jpg', 'caption': 'Several shirtless men with towels wrapped around their waist', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039858.jpg', 'caption': 'A row of men stand on sand while wearing different swimming suits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039858.jpg', 'caption': 'A group of shirtless men in a photograph', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039858.jpg', 'caption': 'A group of men in bathing suits are on a poster.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131593.jpg', 'caption': 'A woman wearing a hat bites into a pastry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131593.jpg', 'caption': 'A girl eating a donut out of a bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131593.jpg', 'caption': 'a woman eating a powdered sugar pastry out of a bag ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131593.jpg', 'caption': 'A woman eating a pastry at a coffee shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131593.jpg', 'caption': 'The woman in the hat is taking a bite of a pastry. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139518.jpg', 'caption': 'A vendor covered by a tent near a van.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139518.jpg', 'caption': 'A surfboard advertising offerings as people check them out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139518.jpg', 'caption': 'people that are under a tent with a surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139518.jpg', 'caption': 'a tented area under which people are selling coffee products out of the back of a van', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139518.jpg', 'caption': 'A tent with people waiting underneath it behind a van.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233961.jpg', 'caption': 'A man riding a surfboard on top of a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233961.jpg', 'caption': 'A person is riding a surfboard in a narrow waterway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233961.jpg', 'caption': 'a man in a wet suit is surfing in a canal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233961.jpg', 'caption': 'A man is surfing in a waterway while another watches and a man is down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233961.jpg', 'caption': 'Two men are surfing down a rough stream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227599.jpg', 'caption': 'A group of friends is posing on the beach with their surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227599.jpg', 'caption': 'A couple of people that are holding some surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227599.jpg', 'caption': 'A group of men and women posing next to surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227599.jpg', 'caption': 'A group of men and women standing next to surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227599.jpg', 'caption': 'A group of surfers pose for a photo by their surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227599.jpg', 'caption': 'A group of teenagers are on the beach with surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103161.jpg', 'caption': 'a plate holding a sandwich on a bun next to some short little french fries ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103161.jpg', 'caption': 'a plate with some potatoes and egg sandwich on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103161.jpg', 'caption': 'The plate is full of fried potatoes and a sandwich. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103161.jpg', 'caption': 'Breakfast sandwich with hash browns and ketchup sitting on plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103161.jpg', 'caption': 'The sandwich, other food, and fork sit on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418440.jpg', 'caption': 'A sandwich filled with meat and mustard.sitting on top of a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418440.jpg', 'caption': 'a close up of a sandwich on a plate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418440.jpg', 'caption': 'The sandwich is on wax paper on a tin foil plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418440.jpg', 'caption': 'a sandiwch with some fried onions mixed in with the meat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418440.jpg', 'caption': 'A corned beef sandwich on a bulkie roll', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501858.jpg', 'caption': 'A rectangular pizza with an egg on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501858.jpg', 'caption': 'There is a pizza with cheese and olives on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501858.jpg', 'caption': 'A square shaped pizza with olives on it is over baked. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501858.jpg', 'caption': 'A rectangular pizza with cheese and olives sprinkled over it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501858.jpg', 'caption': 'A pizza that appears to be burned and has olives on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456969.jpg', 'caption': 'a table filled with some laptops and some pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456969.jpg', 'caption': 'A person with a laptop at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456969.jpg', 'caption': 'A woman sitting at a table with a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456969.jpg', 'caption': 'a women that is sitting at a ktichen table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456969.jpg', 'caption': 'A woman sitting next to a table that has laptops and food on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495156.jpg', 'caption': 'A man walking across a river holding a white surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495156.jpg', 'caption': 'a shirtless male holding a white board some water and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495156.jpg', 'caption': 'a shirtless man is walking into a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495156.jpg', 'caption': 'A lone person is wading in the water in the evening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495156.jpg', 'caption': 'A person walking through the water, in the middle a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071385.jpg', 'caption': 'A man is surfboarding right up to the steep shoreline. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071385.jpg', 'caption': 'A man riding a surfboard on a wave next to shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071385.jpg', 'caption': 'Surfer riding a large wave next to a platform with people standing on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071385.jpg', 'caption': 'A man surfing near a beach with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071385.jpg', 'caption': 'a crowd watching a man surf in some wild waves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036420.jpg', 'caption': 'A woman kicks a soccer ball away from two opponents. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036420.jpg', 'caption': 'Three young girls are running after a soccer ball on the soccer field during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036420.jpg', 'caption': 'The soccer players are running after the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036420.jpg', 'caption': 'two girls soccer teams are playing soccer and player from each side fight for the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036420.jpg', 'caption': 'A young women chases the ball as other soccer players chase her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161622.jpg', 'caption': 'A man in white jacket rowing a yellow surfboard on water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161622.jpg', 'caption': 'A man paddling a paddleboard on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161622.jpg', 'caption': 'Man paddle boarding standing up wearing a coat and hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161622.jpg', 'caption': 'A man is standing on a yellow surf board using a paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161622.jpg', 'caption': 'a man standing on a surfboard in the water while holding a paddle ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410885.jpg', 'caption': 'A person on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410885.jpg', 'caption': 'People standing by an inlet from the ocean while others are walking it with surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410885.jpg', 'caption': 'A couple of guys are on their surf boards in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410885.jpg', 'caption': 'People surfing in a body of water while groups of people waiting and looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410885.jpg', 'caption': 'A couple of people wading through a river neat to a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336872.jpg', 'caption': 'A plate with a sandwich on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336872.jpg', 'caption': 'a close up of a sandwich on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336872.jpg', 'caption': 'A plate containing a sandwich and a salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336872.jpg', 'caption': 'Two parts of sandwiches and a spinach salad sit on w white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336872.jpg', 'caption': 'A deli sandwich with a small salad on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000810.jpg', 'caption': 'a sandwich in a plastic food basket on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000810.jpg', 'caption': 'Sandwich and a lollipop in a bright orange serving tray sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000810.jpg', 'caption': 'Two plastic baskets filled with food sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000810.jpg', 'caption': 'On the table are a sandwich and a sucker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000810.jpg', 'caption': 'A sandwich sitting in a red basket cut in half', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451008.jpg', 'caption': 'A man in a wet suit leans over a blue and white surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451008.jpg', 'caption': 'a person kneeling down in front of a surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451008.jpg', 'caption': 'The man kneels on the ground attending to a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451008.jpg', 'caption': 'A man in a full wetsuit and no shoes applying wax to his surfboard o the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451008.jpg', 'caption': 'A man is waxing his surfboard while seated in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541926.jpg', 'caption': 'a hand is holding a sandwich and a paper on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541926.jpg', 'caption': 'That sandwich looks like it has grill marks on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541926.jpg', 'caption': 'A person is holding their sandwich and their receipt is on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541926.jpg', 'caption': \"A photo of someone's sandwich with cheese and bacon.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541926.jpg', 'caption': 'A left hand holding a toasted cheese sandwich over take-out paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008191.jpg', 'caption': 'Young men balance on a sinking surfboard in a calm lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008191.jpg', 'caption': 'Four men in a lake attempting to stand up on a board together, with their hands raised in the air, and one man in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008191.jpg', 'caption': 'Four men are playing in a lake while two women are watching', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008191.jpg', 'caption': 'A group of young men riding a board on water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008191.jpg', 'caption': 'a bunch of people are plying in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347515.jpg', 'caption': 'A person jumping on a surf board on a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347515.jpg', 'caption': 'A surfer flying through the air after leaving a wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347515.jpg', 'caption': 'A man hitting a trick on a surfboard, in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347515.jpg', 'caption': 'A person wiping out on a surfboard on a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347515.jpg', 'caption': 'The man is surfing a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022199.jpg', 'caption': 'two people make a purchase at a bakery', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022199.jpg', 'caption': 'Two men at a bakery counter buying pastries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022199.jpg', 'caption': 'a woman at a counter checks out two customers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022199.jpg', 'caption': 'Men paying for their order at doughnut shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022199.jpg', 'caption': 'There is a woman behind a counter of a donut shop and two men.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469338.jpg', 'caption': 'Many people wait on surfboards in the calm water for a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469338.jpg', 'caption': 'Surfers sitting on their boards in still water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469338.jpg', 'caption': 'A group of people riding surfboards on the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469338.jpg', 'caption': 'A man in black and grey wetsuit on a white surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469338.jpg', 'caption': 'Several people are sitting on their surfboards in still ocean water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163436.jpg', 'caption': 'A surfer is about to catch a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163436.jpg', 'caption': 'A girl in a wet suit riding a surfboard on a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163436.jpg', 'caption': 'a person is riding a surfboard at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163436.jpg', 'caption': 'A man is riding a surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163436.jpg', 'caption': 'A person on a surfboard riding an ocean wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465878.jpg', 'caption': 'a surfer catching a gnarly wave in the swell', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465878.jpg', 'caption': 'A man riding the waves in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465878.jpg', 'caption': 'The picture of a person surfing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465878.jpg', 'caption': 'A surfer takes a ride on a wave near a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465878.jpg', 'caption': 'A person on a surfboard riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560757.jpg', 'caption': 'a person riding a surf board on a small wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560757.jpg', 'caption': \"A surfer riding her board in the ocean's waves.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560757.jpg', 'caption': 'A person riding a surfboard on top of a large foamy wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560757.jpg', 'caption': 'A person in a wet suit surfs among waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560757.jpg', 'caption': 'A person in a wet suit surfing on a large wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062363.jpg', 'caption': 'Two surfers on their boards on a calm day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062363.jpg', 'caption': 'Paddle boarder in middle of placid water while on board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062363.jpg', 'caption': 'A man riding on top of a paddle board in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062363.jpg', 'caption': 'A paddleboarder is rowing while another person lies on their board nearby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062363.jpg', 'caption': 'People on surfboards in the blue sea, a woman lying down and a man paddling with an oar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301305.jpg', 'caption': 'People are sitting around a table with plates and wine glasses while cake is being cut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301305.jpg', 'caption': 'A family sitting at a table having a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301305.jpg', 'caption': 'A group of people with food around the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301305.jpg', 'caption': 'The family is sitting together at the table waiting on desert. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301305.jpg', 'caption': 'people watching a guy cut a cake at a party', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507951.jpg', 'caption': 'A carrot cake is decorated with fresh flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507951.jpg', 'caption': 'A cake with pink flowers is on a table with roses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507951.jpg', 'caption': 'A cake displayed on a plate with red and white flowers and vases of flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507951.jpg', 'caption': 'A white carrot cake decorated with assorted flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507951.jpg', 'caption': 'A cake decorated with real flowers on a cake stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226579.jpg', 'caption': 'A woman holds the arms of a young boy on a soccer field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226579.jpg', 'caption': 'a woman with eye glasses playing with a boy with a hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226579.jpg', 'caption': 'A woman and her son are playing on the soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226579.jpg', 'caption': 'A woman and little boy are walking and holding arms on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226579.jpg', 'caption': 'A parent playing with her young son at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456261.jpg', 'caption': 'A man laying on top of a green bed next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456261.jpg', 'caption': 'A man covered with a blanket is lying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456261.jpg', 'caption': 'The guy is sleeping on his bed is cover by a gray blancket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456261.jpg', 'caption': 'A person sleeping on a bed that is to short for their height.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456261.jpg', 'caption': 'A MAN TOO TALL FOR THE BED PROVIDED', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566529.jpg', 'caption': 'A bearded middle aged man cuddling a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566529.jpg', 'caption': 'A bearded man laying in bed while holding a blue teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566529.jpg', 'caption': 'A bearded man holds a blue teddy bear by his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566529.jpg', 'caption': 'A bearded shirtless man cuddling with a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566529.jpg', 'caption': 'A man is lying down and holding a stuffed blue teddy bear.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468022.jpg', 'caption': 'A woman holding a white tray topped with a large cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468022.jpg', 'caption': 'A half eaten cake on a white tray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468022.jpg', 'caption': 'a person in a sweater holding a cake over a paper plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468022.jpg', 'caption': 'The cake must be delicious because half of it is gone already.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468022.jpg', 'caption': 'A partially eat cake on a tray being held by a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405188.jpg', 'caption': 'A computer is connected to speakers and a hard drive on desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405188.jpg', 'caption': 'A desk with a desktop computer and sound system.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405188.jpg', 'caption': 'A computer displays the \"blue screen of death\" or fatal error often associated with windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405188.jpg', 'caption': 'A desk with speakers, a monitor, a mouse and a keyboard on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405188.jpg', 'caption': 'A desktop computer sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384089.jpg', 'caption': 'A girl in jeans and a top is lying on a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384089.jpg', 'caption': 'A person lays on a bed stretched out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384089.jpg', 'caption': 'A woman on a bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384089.jpg', 'caption': 'A woman laying on her side in a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384089.jpg', 'caption': 'A sexy young woman laying on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473850.jpg', 'caption': 'A female wearing a red shirt lies on a bed, resting ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473850.jpg', 'caption': 'a woman in her underwear laying on a bed alone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473850.jpg', 'caption': 'A person sleeping on a bed in another room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473850.jpg', 'caption': 'A woman laying on a bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473850.jpg', 'caption': 'A woman laying on a bed in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176381.jpg', 'caption': 'A person that is riding a surfboard under a wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176381.jpg', 'caption': 'A person on a surfboard rides a large wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176381.jpg', 'caption': 'A person on a surfboard riding in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176381.jpg', 'caption': 'A man on a surfboard riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176381.jpg', 'caption': 'A surfer riding on top of the waves at the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379488.jpg', 'caption': 'A person on a surf board riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379488.jpg', 'caption': 'A surfer in a wetsuit, surfing in the barrel of a wave that is crashing behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379488.jpg', 'caption': 'A person riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379488.jpg', 'caption': 'A man being swalled by a wave while surfing in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379488.jpg', 'caption': 'A surfer surfing the pipeline in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185335.jpg', 'caption': 'An open laptop computer sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185335.jpg', 'caption': 'A laptop computer screen with a Flickr page loaded, and a television on in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185335.jpg', 'caption': 'A laptop with the browser on a Flickr page. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185335.jpg', 'caption': 'a black laptop and a television set and a cord', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185335.jpg', 'caption': 'The screen of a computer laptop displaying flickr.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312524.jpg', 'caption': 'A tall cake is decorated with flowers and white icing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312524.jpg', 'caption': 'A table with a tall cake and pots of herbs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312524.jpg', 'caption': 'a large cake on a table along with other foods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312524.jpg', 'caption': 'a tall white cake on a plate made from a log', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312524.jpg', 'caption': 'a tall white cake with red flowers on top and some small orange pots', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546029.jpg', 'caption': 'A baby sitting on a bed holding a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546029.jpg', 'caption': 'The baby is on the bed playing with the remote control. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546029.jpg', 'caption': 'A small child playing with a remote control for a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546029.jpg', 'caption': 'A small child sitting on a bed playing with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546029.jpg', 'caption': 'A baby wearing denim overalls sitting on a bed playing with remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237420.jpg', 'caption': 'A group of people are standing on the sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237420.jpg', 'caption': 'A group of people pose for a picture near surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237420.jpg', 'caption': 'Three men and three women posing on a beach in front of surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237420.jpg', 'caption': 'Several people on the beach with their surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237420.jpg', 'caption': 'A group of young people standing next to each other on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341111.jpg', 'caption': 'a man in a little kayak putting an oar in the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341111.jpg', 'caption': 'A man that is on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341111.jpg', 'caption': 'A man sits on a surfboard in shallow ocean water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341111.jpg', 'caption': 'a man with a paddle on a small board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341111.jpg', 'caption': 'A man in the water with a board and a paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371497.jpg', 'caption': 'A man riding a surfboard on a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371497.jpg', 'caption': 'A lighthouse stands on an island in the background as a surfer on an orange board rides the surf while holding a black pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371497.jpg', 'caption': 'A surfer is on the waves with a lighthouse in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371497.jpg', 'caption': 'A man with an oar standing on a surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371497.jpg', 'caption': 'Man paddle surfing in the ocean near a lighthouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375285.jpg', 'caption': 'A group of men standing on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375285.jpg', 'caption': 'The beachgoers are curious about what is in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375285.jpg', 'caption': 'Men with hockey sticks and a surfboard play on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375285.jpg', 'caption': 'A group of paddle boarders watch the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375285.jpg', 'caption': 'These wake boarders are watching the waves from the shore', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484842.jpg', 'caption': 'A whole cake and a piece in a plate by a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484842.jpg', 'caption': 'Someone is enjoying a small slice of pie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484842.jpg', 'caption': 'A person has a piece of cake on her fork. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484842.jpg', 'caption': 'A young women eating a very thin piece of cheesecake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484842.jpg', 'caption': 'Someone who is having a slice of cake at a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277422.jpg', 'caption': 'A man holding a surfboard while wearing a wet suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277422.jpg', 'caption': 'a man is carrying his surf board outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277422.jpg', 'caption': 'A man holding a surfboard and wearing a wet suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277422.jpg', 'caption': 'A man is holding a surfboard on the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277422.jpg', 'caption': 'A man in a wet suit holding a surfboard under his arm. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403078.jpg', 'caption': 'a young man is holding a blue sur fboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403078.jpg', 'caption': 'a male surfer in a wet suit carrying a blue board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403078.jpg', 'caption': 'A couple of people with a surfboard walking outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403078.jpg', 'caption': \"The surfer's is wearing a wetsuit and holding a surfboard. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403078.jpg', 'caption': \"He is so tall that his wet suit doesn't quite fit him.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559380.jpg', 'caption': 'A person is sitting on a bed in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559380.jpg', 'caption': 'A bedroom with a bunch of furniture in it and a woman looking up to the ceiling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559380.jpg', 'caption': 'A girl kneeling on her bed looking up at the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559380.jpg', 'caption': 'The girl sitting on the bed is looking upwards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559380.jpg', 'caption': 'A girl sitting on a bed with her head up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503332.jpg', 'caption': 'A surfer rides the top of a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503332.jpg', 'caption': 'A surfer riding a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503332.jpg', 'caption': 'a man on a surfboard riding the top of a wave ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503332.jpg', 'caption': 'A man on a surfboard is riding a huge wave with his feet out and arms extended.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503332.jpg', 'caption': 'A surfer rides the crest of a wave ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568154.jpg', 'caption': 'A young man holding a surfboard while standing near a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568154.jpg', 'caption': 'A man in a wetsuit standing at the very edge of some water while holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568154.jpg', 'caption': 'A man is standing on a ledge next to a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568154.jpg', 'caption': 'a man that is holding up a surfboard in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568154.jpg', 'caption': 'a surfer in a wet suit holding his surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544334.jpg', 'caption': 'A man on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544334.jpg', 'caption': 'A man riding a paddle board on top of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544334.jpg', 'caption': 'A guy on a surfboard paddles out to sea on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544334.jpg', 'caption': 'a guy using a stick to travel on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544334.jpg', 'caption': 'A man is standing on a surfboard with a stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455633.jpg', 'caption': 'A man holding a surfboard next to a wave filled body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455633.jpg', 'caption': 'A man standing on the side of water with rough waves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455633.jpg', 'caption': 'A person that is about to jump in some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455633.jpg', 'caption': 'A surfer surveys the wave action in a manmade inlet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455633.jpg', 'caption': 'People holding surfboard standing around a wave pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173083.jpg', 'caption': 'A group of wetsuit-clad men standing at a riverbank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173083.jpg', 'caption': 'There are people holding surfboards near the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173083.jpg', 'caption': 'there are three people in wet suits with surf boards at a simulated wave ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173083.jpg', 'caption': 'A couple of men standing with their surfboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173083.jpg', 'caption': 'a number of people with surf boards at a river of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253518.jpg', 'caption': 'Two young men in wetsuits standing on a concrete ledge in front of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253518.jpg', 'caption': 'A man waiting beside a river with a surfboard and wet suit on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253518.jpg', 'caption': 'A couple of people about to dive into cold river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253518.jpg', 'caption': 'Two men who are holding surfboards next to some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253518.jpg', 'caption': 'A couple of men standing along side of a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208377.jpg', 'caption': 'A man on the beach carrying a surfboard with a sail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208377.jpg', 'caption': 'A man walking on a beach while holding a wind sail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208377.jpg', 'caption': 'A man enjoying a day at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208377.jpg', 'caption': 'The man is walking into the ocean with a sailboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208377.jpg', 'caption': 'A windsurfer looking at the ocean on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481035.jpg', 'caption': 'A large white bed with a wooden headboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481035.jpg', 'caption': 'A hotel bed and side tables in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481035.jpg', 'caption': 'A neatly made bed with several pillows in a hotel room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481035.jpg', 'caption': 'A bed with two night stands, two lamps and a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481035.jpg', 'caption': 'A bedroom shown with a large bed that has lamps and night stands built into the headboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105234.jpg', 'caption': 'A man and woman standing in front of a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105234.jpg', 'caption': 'a newly wed couple celebrating with a toast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105234.jpg', 'caption': 'A bride and groom celebrate over a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105234.jpg', 'caption': 'A bride and groom are celebrating with wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105234.jpg', 'caption': 'A man and a woman standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468171.jpg', 'caption': 'there are lots of pillows on the bed. the light is on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468171.jpg', 'caption': 'A bed with three pillows stacked on top of one another and another pillow leaning on that stack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468171.jpg', 'caption': 'Corner of a room with a bed with three stacked pillows, with another pillow and a brochure leaned against stack, and a bedside table lamp illuminated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468171.jpg', 'caption': 'a big bed with very big pillows in white', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468171.jpg', 'caption': 'A stack of pillows on a hotel bed\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318063.jpg', 'caption': 'A young man is riding the giant waves on his board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318063.jpg', 'caption': 'A man who is on a surfboard riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318063.jpg', 'caption': 'a surfer in a red shirt is surfing on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318063.jpg', 'caption': 'This an above angle view of a surfer riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318063.jpg', 'caption': 'A man is surfing a wave on his surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031971.jpg', 'caption': 'A bed in a bedroom topped with a colorful blanket and two pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031971.jpg', 'caption': 'A bed has a multicolored home made quilt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031971.jpg', 'caption': 'A neatly mad bed with orange pillows and colorful quilt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031971.jpg', 'caption': 'There is a quilt and some pillows on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031971.jpg', 'caption': 'A colorful quilt and orange pillows adorn a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485294.jpg', 'caption': \"A boy in pajama's lying on a bed asleep.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485294.jpg', 'caption': 'a baby sleeping on a bed surrounded by pillows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485294.jpg', 'caption': 'a little boy is sleeping in a messy bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485294.jpg', 'caption': 'an all white bed set with a little boy asleep on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485294.jpg', 'caption': 'A small child sleeping on an unmade bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497826.jpg', 'caption': 'a bedroom with a big bed and a lot of windows as well ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497826.jpg', 'caption': 'A bedroom with a back light shining on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497826.jpg', 'caption': 'the bedroom is white and the bed is gray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497826.jpg', 'caption': 'A bedroom decorated in neutral colors and wood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497826.jpg', 'caption': 'A bedroom with white bed covers,a grey pillow and two lamps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203734.jpg', 'caption': 'Two young boys sitting on a park with a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203734.jpg', 'caption': 'Two children sit on the ground at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203734.jpg', 'caption': 'Two young boys in shorts at park with hands raised.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203734.jpg', 'caption': 'Two children sitting in the grass eating food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203734.jpg', 'caption': 'A boy with his hands up sitting next to another boy with pizza and a drink sitting in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139486.jpg', 'caption': 'A white bed sitting on a wooden floor in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139486.jpg', 'caption': 'A bedroom area with a white bed, lights and closet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139486.jpg', 'caption': 'A photograph of an all white bedroom that has a large bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139486.jpg', 'caption': 'this bed room is all white and has a white bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139486.jpg', 'caption': 'An empty room with a neatly made queen bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128570.jpg', 'caption': 'An adorable child wading in water while holding onto a boogie board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128570.jpg', 'caption': 'A young child is laying on his raft by the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128570.jpg', 'caption': 'A toddler is on a small surfboard at the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128570.jpg', 'caption': 'A little boy in some water at the edge of the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128570.jpg', 'caption': 'A toddler is laying down playing in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439770.jpg', 'caption': 'The empty surf board is floating on top of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439770.jpg', 'caption': 'A surfboard without a rider glides on the wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439770.jpg', 'caption': 'A surfboard going through a small wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439770.jpg', 'caption': 'surfers in ocean one fell off there board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439770.jpg', 'caption': 'A person and a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315991.jpg', 'caption': 'A group of people on surfboards doing different things. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315991.jpg', 'caption': 'Several surfers are riding the blue ocean waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315991.jpg', 'caption': 'Several people in the ocean with their surfboards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315991.jpg', 'caption': 'Several paddle surfers are surfing in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315991.jpg', 'caption': 'Five people riding surf boards in the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279331.jpg', 'caption': 'a small dog on a leash with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279331.jpg', 'caption': 'A dog sits on a tennis court next to tennis equipment. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279331.jpg', 'caption': 'A brown dog sitting next to a tennis bag and racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279331.jpg', 'caption': 'a dog tied to a fence surrounded by tennis eguipment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279331.jpg', 'caption': 'A dog sitting next to a tennis racquet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355168.jpg', 'caption': 'A tennis player is taking a swing at a ball near an audience.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355168.jpg', 'caption': 'Four people with a boat docked on the side of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355168.jpg', 'caption': 'A tennis player is reaching into the air to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355168.jpg', 'caption': 'A man swinging a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355168.jpg', 'caption': 'A man in white shirt and shorts playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093730.jpg', 'caption': 'a tennis player on a court wit ha racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093730.jpg', 'caption': 'A figure of a tennis player is waiting for the serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093730.jpg', 'caption': 'A tennis player with a tennis racquet standing on a court with a lot of people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093730.jpg', 'caption': 'The man is trying to play tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093730.jpg', 'caption': 'A man taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008688.jpg', 'caption': 'A wooden frame for a bed sitting next to a mattress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008688.jpg', 'caption': 'A double bed showing the wooden slats with the mattress removed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008688.jpg', 'caption': 'A room with a bed frame and a mattress to the side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008688.jpg', 'caption': 'A platform bed is displayed with the mattress off of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008688.jpg', 'caption': 'A mattress sitting above the mattress frame in a small room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164983.jpg', 'caption': 'A brown and black dog laying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164983.jpg', 'caption': 'A dog is laying down on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164983.jpg', 'caption': 'A dog stretched out on a bed with a cat laying on top of it sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164983.jpg', 'caption': 'A dog sits on top of a bed next to a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164983.jpg', 'caption': 'A person and a fuzzy dog sitting on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125435.jpg', 'caption': 'A pizza sitting on top of a white plate covered in cheese and veggies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125435.jpg', 'caption': 'Unsliced pizza with black olives and sliced red peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125435.jpg', 'caption': 'A pizza has black olives and red bell peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125435.jpg', 'caption': 'A great picture of a delicious pizza with vegetable toppings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125435.jpg', 'caption': 'A pizza with red peppers, olives, onions, and cheese. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121632.jpg', 'caption': 'A pizza is being eaten with a knife and fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121632.jpg', 'caption': 'A plate with pizza sitting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121632.jpg', 'caption': 'a pizza on a plate with some fork and a knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121632.jpg', 'caption': 'a plate of food with a fork and a knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121632.jpg', 'caption': 'A yummy looking pizza with onions on top and a fork and knife to eat it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177990.jpg', 'caption': 'A man is playing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177990.jpg', 'caption': 'A man holding a tennis racket is hitting a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177990.jpg', 'caption': 'Male tennis player hitting the ball and audience in the background at a tennis game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177990.jpg', 'caption': 'A man with a racket walks on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177990.jpg', 'caption': 'A man hitting a tennis ball with his racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526972.jpg', 'caption': 'A pan filled with mini pizzas in an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526972.jpg', 'caption': 'A tray that has several small mini pizzas on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526972.jpg', 'caption': 'A bunch of mini pizzas on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526972.jpg', 'caption': 'Mini pizzas on shelves waiting to be bake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526972.jpg', 'caption': 'Many very small pizzas have been prepared with ham, pineapple, and olives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164453.jpg', 'caption': 'A computer desk with a laptop computer on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164453.jpg', 'caption': 'A plain wooden corner desk has computers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164453.jpg', 'caption': 'A desk with a computer and laptop and a black chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164453.jpg', 'caption': 'A desk with a desktop computer and a laptop computer on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164453.jpg', 'caption': 'A computer monitor and a laptop sit on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411303.jpg', 'caption': 'A lot of people that are sitting around together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411303.jpg', 'caption': 'People use laptops and follow a presentation in a classroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411303.jpg', 'caption': 'A classroom filled with students tying on computers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411303.jpg', 'caption': 'A classroom with eight people sitting at desks behind laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411303.jpg', 'caption': 'A classroom full of adults working on their laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124911.jpg', 'caption': 'A desk holds a couple computers and some speakers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124911.jpg', 'caption': 'The computer desk with speakers on it has a laptop on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124911.jpg', 'caption': 'A corner desk with computers on it and a guitar beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124911.jpg', 'caption': 'There is a laptop computer and a person computer on this desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124911.jpg', 'caption': 'Two computers, with screens on, sit on a table next to speakers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534161.jpg', 'caption': 'A young boy eating a big slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534161.jpg', 'caption': 'A BOY IS EATING A BIG PIECE OF PIZZA ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534161.jpg', 'caption': 'A young boy taking a bite from a slice ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534161.jpg', 'caption': 'A little boy eating a slice of pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534161.jpg', 'caption': 'a child eating a large slice of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060992.jpg', 'caption': 'A man holding a racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060992.jpg', 'caption': 'A man who is diving to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060992.jpg', 'caption': 'A man swings a tennis racket at a ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060992.jpg', 'caption': 'A guy in a red shirt and white shorts playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060992.jpg', 'caption': 'A tennis player hits a tennis ball during a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470350.jpg', 'caption': 'a male in a brown shirt is playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470350.jpg', 'caption': 'A person that is playing in a tennis game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470350.jpg', 'caption': 'The man has a tennis racket in one hand and throws up the ball with the other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470350.jpg', 'caption': 'A tennis player getting ready to serve the ball to his opponent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470350.jpg', 'caption': 'A man throws a ball up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487630.jpg', 'caption': 'A young man hitting a tennis ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487630.jpg', 'caption': 'A young man reaches to hit a tennis ball during a tennis match while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487630.jpg', 'caption': 'A man reaching to hit a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487630.jpg', 'caption': 'A man hitting a tennis ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487630.jpg', 'caption': 'A professional tennis player running to meet the ball at an indoor match', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126229.jpg', 'caption': 'A man is about to take a swing at the Tennis ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126229.jpg', 'caption': 'A man that is jumping in the air with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126229.jpg', 'caption': 'A male tennis player jumping in the air to reach a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126229.jpg', 'caption': 'A tennis player is jumping up to hit a ball at a tennis match. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126229.jpg', 'caption': 'A tennis player about to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067966.jpg', 'caption': 'A small girl smiling and sitting behind a large round pepperoni pizza in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067966.jpg', 'caption': 'A pepperoni pizza is bigger than the child sitting in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067966.jpg', 'caption': 'A little kid is looking at a big pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067966.jpg', 'caption': 'A little girl and a pizza with pepperoni topping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067966.jpg', 'caption': 'A very cute small girl by a very big pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541351.jpg', 'caption': 'A woman on a tennis court with a racket in one hand and a ball in the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541351.jpg', 'caption': 'A woman holds a ball in one hand and a racket in the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541351.jpg', 'caption': 'A female tennis player preparing to serve on court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541351.jpg', 'caption': 'A woman at a tennis court holding a tennis ball and racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541351.jpg', 'caption': 'A female tennis player getting ready to serve the tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355424.jpg', 'caption': 'A pizza with many toppings is on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355424.jpg', 'caption': 'A white plate topped with pizza on a blue table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355424.jpg', 'caption': 'The table has a Hawaiian pizza is sitting on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355424.jpg', 'caption': 'A whole pizza with various toppings on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355424.jpg', 'caption': 'A pizza is topped with ham and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478528.jpg', 'caption': 'An old bedroom filled with very old furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478528.jpg', 'caption': 'a room with a chair and dresser inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478528.jpg', 'caption': 'A view of a living room, with a couch up against the wall near two windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478528.jpg', 'caption': 'A room that has some very colorful carpeting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478528.jpg', 'caption': 'Room with patterned carpet and wallpaper and dark wood furnishings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229207.jpg', 'caption': 'A game of Tennis being played on TV', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229207.jpg', 'caption': 'The men are playing a game of tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229207.jpg', 'caption': 'Two people who are playing tennis against each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229207.jpg', 'caption': 'Two men with racquets on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229207.jpg', 'caption': 'A couple of men standing on a tennis court holding racquets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409784.jpg', 'caption': 'a female tennis player in a blue dress playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409784.jpg', 'caption': 'A tennis player is competing on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409784.jpg', 'caption': 'A female tennis player is holding the racquet, ready to swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409784.jpg', 'caption': 'A woman swinging a racket at a ball on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409784.jpg', 'caption': 'A person on a court with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462845.jpg', 'caption': 'A woman in yellow plays a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462845.jpg', 'caption': 'a woman is playing tennis on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462845.jpg', 'caption': 'A female tennis athlete in yellow dress returns a volley', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462845.jpg', 'caption': 'A woman hitting a tennis ball on the court in a tournament ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462845.jpg', 'caption': 'There is a woman playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412798.jpg', 'caption': 'Tennis player and blue-and-white outfit holding a racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412798.jpg', 'caption': 'A man holding a tennis racket on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412798.jpg', 'caption': 'a tennis player with a racket on a court ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412798.jpg', 'caption': 'a guy in a stance ready for the tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412798.jpg', 'caption': 'A tennis player takes a stance to return a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322937.jpg', 'caption': 'a man is playing tennis on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322937.jpg', 'caption': 'This is a man serving a tennis ball on a blue court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322937.jpg', 'caption': 'The young man is going to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322937.jpg', 'caption': 'The tennis player is getting ready to serve the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322937.jpg', 'caption': 'Man playing tennis about to deliver a strong hit to the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219737.jpg', 'caption': 'A man is playing tennis on a blue court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219737.jpg', 'caption': 'a man getting ready to hit a tennis ball on part of a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219737.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219737.jpg', 'caption': 'A person prepares to hit a tennis ball on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219737.jpg', 'caption': 'a man standing up on a court with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543409.jpg', 'caption': 'A platter with a baked good on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543409.jpg', 'caption': 'A plain piece of bread resting on a wooden plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543409.jpg', 'caption': 'A whole cheese pizza sitting on a wood pan on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543409.jpg', 'caption': 'a close up of a pizza on a wooden surface on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543409.jpg', 'caption': 'A white cracker looking pizza is on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574154.jpg', 'caption': 'A young woman holding a tennis racquet in front of a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574154.jpg', 'caption': 'a lady that is playing tennis with a ball and racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574154.jpg', 'caption': 'A white and red tennis player hitting a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574154.jpg', 'caption': 'A woman is trying to hit the tennis ball while she is playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574154.jpg', 'caption': 'A woman tennis player prepares to hit the tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037158.jpg', 'caption': 'A woman making a weird face playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037158.jpg', 'caption': 'A tennis player makes a face while hitting the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037158.jpg', 'caption': 'A woman standing on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037158.jpg', 'caption': 'A female tennis player in action on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037158.jpg', 'caption': 'A tennis player takes a swing at a ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010123.jpg', 'caption': 'A woman swinging a tennis racket at a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010123.jpg', 'caption': 'A woman hitting a tennis ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010123.jpg', 'caption': 'A girl is hitting a tennis ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010123.jpg', 'caption': 'Professional photograph of a woman playing tennis indoors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010123.jpg', 'caption': 'a girl in black and white returning a tennis serve ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482829.jpg', 'caption': 'A woman swinging a tennis racket at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482829.jpg', 'caption': 'A woman that is holding a racquet hitting a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482829.jpg', 'caption': 'a woman standing in front of a blue sign hitting a tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482829.jpg', 'caption': 'a tennis player swinging a racket at a ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482829.jpg', 'caption': 'A woman is about to hit a tennis shot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004312.jpg', 'caption': 'A man sits in a diner photographing his meal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004312.jpg', 'caption': 'Photographer taking a picture of a meal in a small restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004312.jpg', 'caption': 'A man taking a photo of food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004312.jpg', 'caption': 'A man takes a picture of his food in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004312.jpg', 'caption': 'A man taking a picture of his meal at a diner table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408906.jpg', 'caption': 'Two personal sized pizzas are being prepared on a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408906.jpg', 'caption': 'A prepared pizza sits next to an uncooked pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408906.jpg', 'caption': 'Two pizzas sitting on top of a baking sheet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408906.jpg', 'caption': 'A hand sprinkling toppings on one of two pizzas in a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408906.jpg', 'caption': 'Two unbaked, homemade pizzas on a baking tray.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000502001.jpg', 'caption': 'People seated in a restaurant all turned in one direction with some taking pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502001.jpg', 'caption': 'A group of people sitting around a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150342.jpg', 'caption': 'A person with a hooded jacket is working on a laptop while sitting on a bench in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150342.jpg', 'caption': 'A person sitting on a bench using a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150342.jpg', 'caption': 'A person in a red sweatshirt is at the park on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150342.jpg', 'caption': 'A man in a red jacket has the hood up and is sitting on a bench near a landscaped area with his laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150342.jpg', 'caption': 'A person sits on a bench outdoors next to shrubbery typing on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430791.jpg', 'caption': 'Red ties hanging like nooses in a museum. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430791.jpg', 'caption': 'Red ties hang in an unusual display and cast shadows on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430791.jpg', 'caption': 'A room with red high heels on the floor and red ties dangling from the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430791.jpg', 'caption': 'A person walks by several red ties hanging and a pair of red shoes on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430791.jpg', 'caption': 'A person walking past a bunch of red neck ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301201.jpg', 'caption': 'A collection of books and knick-knacks on shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301201.jpg', 'caption': 'a shelf with books some speakers, whatnots and pictures', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301201.jpg', 'caption': 'A shelf with many books and coffee cups.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301201.jpg', 'caption': 'A trio of shelves hold books, speakers, cards and cups. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301201.jpg', 'caption': 'A lot of books that are inside of a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130909.jpg', 'caption': 'A man in a kitchen instructing a woman on what to do ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130909.jpg', 'caption': 'A man and a woman talking to one another in a kitchen with a lot of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130909.jpg', 'caption': 'a man talking to a woman in a kitchen with a lot of food in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130909.jpg', 'caption': 'A man and woman talking in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130909.jpg', 'caption': 'A man with an apron on and a woman standing in a messy kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208028.jpg', 'caption': 'Hands typing on light colored electronic computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208028.jpg', 'caption': 'a close up of a person typing on a keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208028.jpg', 'caption': 'A person typing on an old keyboard rather quickly', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208028.jpg', 'caption': 'two hands are typing on a white keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208028.jpg', 'caption': 'Black and white photograph of hands on a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063661.jpg', 'caption': 'A kitchen area with counter, sink , stove and windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063661.jpg', 'caption': 'A kitchen with wood floors and one brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063661.jpg', 'caption': 'A kitchen counter sitting in the middle of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063661.jpg', 'caption': 'A modern kitchen including a stove, sink, and utility island. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063661.jpg', 'caption': 'an open concept kitchen with a counter stove and sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059479.jpg', 'caption': 'Lamps are the only lighting in this kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059479.jpg', 'caption': 'a kitchen with a sink windows and a coffee maker', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059479.jpg', 'caption': 'The only lights on in the kitchen are over the sink and all the dishes are clean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059479.jpg', 'caption': 'A picture of a kitchen and a dining area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059479.jpg', 'caption': 'A kitchen with two sinks under a couple of windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369913.jpg', 'caption': 'A woman holding shears in one hand a tile in the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369913.jpg', 'caption': 'a person standing holding a large pair of scissors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369913.jpg', 'caption': 'The woman in the blue shirt is using really big scissors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369913.jpg', 'caption': 'A smiling woman holding a large pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369913.jpg', 'caption': 'a woman in a blue shirt holding a pair of large scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148128.jpg', 'caption': 'A man standing next to a white frisbee flying over a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148128.jpg', 'caption': 'Several people are playing with a toy in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148128.jpg', 'caption': 'A close view of frisbee traveling through the air during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148128.jpg', 'caption': 'A frisbee flying through the air after being thrown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148128.jpg', 'caption': 'The frisbee is hovering in the air as people watch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314880.jpg', 'caption': 'there are many men playing soccer in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314880.jpg', 'caption': 'a group of boys playing in a field next to a forrest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314880.jpg', 'caption': 'Two teams compete at a sport in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314880.jpg', 'caption': 'A group of young men jump in the air playing a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314880.jpg', 'caption': 'A group of Frisbee players are running around a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186368.jpg', 'caption': 'a smiling woman wearing sunglasses in the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186368.jpg', 'caption': 'A woman standing in the snow wearing sun glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186368.jpg', 'caption': 'A portrait of a woman skiing in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186368.jpg', 'caption': 'Someone on skis in the background of the picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186368.jpg', 'caption': 'A lady smiles while skiing at a snowy ski resort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005247.jpg', 'caption': 'A black and white photo of an older man skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005247.jpg', 'caption': 'Two people on the snow for cross country skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005247.jpg', 'caption': 'The old man cross country skis through the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005247.jpg', 'caption': 'A younger man and an older man skiing in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005247.jpg', 'caption': 'Two people on skis going through the woods.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519649.jpg', 'caption': 'A kitchen filled with appliances and lots of cupboard space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519649.jpg', 'caption': 'A kitchen with cabinets, a stove, utensils, a toaster oven, microwave and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519649.jpg', 'caption': 'A side of a kitchen with a white refrigerator and stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519649.jpg', 'caption': 'A kitchen with a refrigerator and a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519649.jpg', 'caption': 'A kitchen is featured with a refrigerator, microwave and stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149184.jpg', 'caption': 'A kitchen with a stove, microwave, telephone, table and chair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149184.jpg', 'caption': 'A kitchen that is mainly made from hardwoods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149184.jpg', 'caption': 'A neat and tidy residential kitchen with white appliances', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149184.jpg', 'caption': 'A kitchen has a large opening over the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149184.jpg', 'caption': 'A large kitchen filled with lots of white appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062443.jpg', 'caption': 'A brick building with an open window next to a few colorful bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062443.jpg', 'caption': \"The stone building has an opened window on it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062443.jpg', 'caption': 'A building with wide open windows and red ivy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062443.jpg', 'caption': 'A view form under a tree of a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062443.jpg', 'caption': 'There is a small window in a stone building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277563.jpg', 'caption': 'A kitchen sink inside of a center island.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277563.jpg', 'caption': 'A white kitchen with stainless steel appliances and granite counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277563.jpg', 'caption': 'A kitchen has a stainless steel sink island.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277563.jpg', 'caption': 'A stove and a sink in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277563.jpg', 'caption': 'An empty kitchen with all stainless steel appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494550.jpg', 'caption': 'A close up view of an orange and other fruit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494550.jpg', 'caption': 'An orange sitting beside an apple and a banana. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494550.jpg', 'caption': 'An orange sits in front of a lemon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494550.jpg', 'caption': 'Close up of two oranges and a small part of a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494550.jpg', 'caption': 'A group of different fruits that are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287335.jpg', 'caption': 'An adult stands near the counter in a kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287335.jpg', 'caption': 'A person is working in the corner of the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287335.jpg', 'caption': 'Woman preparing meal in the kitchen as light comes in', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287335.jpg', 'caption': 'The person is doing something in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287335.jpg', 'caption': 'A person standing in the kitchen by a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347558.jpg', 'caption': 'A renovated kitchen with stainless steel appliances and a huge stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347558.jpg', 'caption': 'This kitchen has white cabinets and a wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347558.jpg', 'caption': 'a kitchen with a stove a refrigerator and a microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347558.jpg', 'caption': 'Theres a kitchen with a stainless steel fridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347558.jpg', 'caption': 'This kitchen is well decorated but not colorful.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014278.jpg', 'caption': 'A blurry image of a busy city street at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014278.jpg', 'caption': 'A black and white photo of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014278.jpg', 'caption': 'A group of people who are crossing the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014278.jpg', 'caption': 'Street view of a large Asian city at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014278.jpg', 'caption': 'Several people walking across a crosswalk in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437947.jpg', 'caption': 'The kitchen is clean and ready to be used', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437947.jpg', 'caption': 'A large kitchen has gray counters and brown cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437947.jpg', 'caption': 'A spacious kitchen with an abundance of wood cabinetry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437947.jpg', 'caption': 'Two ovens are stacked up in the frame work of the kitchen with a microwave next to bottom one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437947.jpg', 'caption': 'A kitchen filled with a center island made out of wood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349199.jpg', 'caption': 'A group of people enjoying a day at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349199.jpg', 'caption': 'Some people are enjoying time on a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349199.jpg', 'caption': 'a group of people sitting on the sand with a lake in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349199.jpg', 'caption': 'Adults and children gather near a dock on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349199.jpg', 'caption': 'Some people are next to a pier on the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377867.jpg', 'caption': 'A cat sits next to a bike that is garnished with flowers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377867.jpg', 'caption': 'A black and white cat sitting in front of a bicycle parked by a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377867.jpg', 'caption': 'A memorial bicycle with a floral arrangement on the handle bars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377867.jpg', 'caption': 'A cat sitting next to a white bicycle on a green lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377867.jpg', 'caption': 'A white bike with flowers on the front by a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298773.jpg', 'caption': 'A toilet with a hammer on it in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298773.jpg', 'caption': 'A bathroom being remodeled, with only the toilet left.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298773.jpg', 'caption': 'The toilet in the bathroom is broken someone needs to fix it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298773.jpg', 'caption': 'A bathroom with the sink and its cabinet knocked out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298773.jpg', 'caption': 'The remodel of a restroom, with a toilet in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135613.jpg', 'caption': 'A nice spacious bathroom with light brown tile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135613.jpg', 'caption': 'A bathroom complete with a bathtub and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135613.jpg', 'caption': 'A bathroom with marble tile, a shower, tub and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135613.jpg', 'caption': 'A spacious bathroom contains a large tub and sink with broad counter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135613.jpg', 'caption': 'there is a sink and shower/bathtub in the room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342817.jpg', 'caption': 'a orange colored cat peering down on some unknown object', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342817.jpg', 'caption': 'A cat laying on top of a counter looking down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342817.jpg', 'caption': 'Brown and white cat laying its head over couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342817.jpg', 'caption': 'A close-up image of a cat looking intently at something outside of the image. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342817.jpg', 'caption': 'a close up of a cat on a couch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027842.jpg', 'caption': 'A dual sink vanity with mirrors above the sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027842.jpg', 'caption': 'A long marble like bath room vanity with a stool, two sink basins with mirrors and lights over them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027842.jpg', 'caption': 'A double sink with mirrors and a stool underneath it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027842.jpg', 'caption': 'There are two sinks in the clean bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027842.jpg', 'caption': 'A bathroom with his and her mirrors and sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141910.jpg', 'caption': 'A white toilet sitting under a window next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141910.jpg', 'caption': 'A bathroom with a sink, counter, cabinets and a window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141910.jpg', 'caption': 'A large bright bathroom with tile flooring in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141910.jpg', 'caption': 'This persons bathroom is very clean with nothing in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141910.jpg', 'caption': 'The bathroom has one window near the bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139291.jpg', 'caption': 'Woman riding her bike down a small side path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139291.jpg', 'caption': 'A woman walking past a bar with a bicycle parked in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139291.jpg', 'caption': 'A woman rides her bicycle down a narrow street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139291.jpg', 'caption': 'The woman rides her bike down a small alleyway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139291.jpg', 'caption': 'Looking out from a bar window a woman can be seen on a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325423.jpg', 'caption': 'A CLEAN AND COLORFUL BATHROOM WITH A LARGE MIRROR', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325423.jpg', 'caption': 'A public bathroom with large vanity, mirror and stalls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325423.jpg', 'caption': 'A corner of a rest room with some sinks and a big mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325423.jpg', 'caption': 'This bathroom has plenty of stalls and a couple of sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325423.jpg', 'caption': 'a bath room with many stalls and two sinks ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404462.jpg', 'caption': 'A black and white photograph of something I cannot quite make out. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404462.jpg', 'caption': 'a black and white photo of a something on display', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404462.jpg', 'caption': 'Black and white photograph of a vase in display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404462.jpg', 'caption': 'A weird box with a strange object inside of it;', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404462.jpg', 'caption': 'An unclear photo of some type of plumbing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456323.jpg', 'caption': 'A bedroom with a bike parked in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456323.jpg', 'caption': 'A bicycle rests against a dresser in a bedroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456323.jpg', 'caption': 'A bike sitting at the end of a bed in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456323.jpg', 'caption': 'A clean bed that is in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456323.jpg', 'caption': 'A bicycle leaning against a white dresser next to a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549386.jpg', 'caption': 'A man standing outside of a building next to bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549386.jpg', 'caption': 'Two people stand outside of a very old building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549386.jpg', 'caption': 'a mirrored door showing the reflection of a couple', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549386.jpg', 'caption': 'a man in a red jacket and a woman mannequin in a red top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549386.jpg', 'caption': 'A room with a ladder, small table and bicycle and two people outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147897.jpg', 'caption': 'A man taking his picture in the mirror with a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147897.jpg', 'caption': 'A man is taking a photo of himself in the mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147897.jpg', 'caption': 'a man in his bathroom taking a picture of himself', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147897.jpg', 'caption': 'Young man with crew cut and dark denim shirt taking selfie in bathroom mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147897.jpg', 'caption': 'A man is taking a picture of himself in a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254491.jpg', 'caption': 'Two bikes are sitting in the sand on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254491.jpg', 'caption': 'A couple of bikes sitting on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254491.jpg', 'caption': 'Two old-fashioned bicycles parked together on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254491.jpg', 'caption': 'A couple of bikes are parked on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254491.jpg', 'caption': 'Two black bikes stand side by side on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439907.jpg', 'caption': 'A bathroom with a shower and a white sink on a wooded counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439907.jpg', 'caption': 'A hotel room bathroom with walk in shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439907.jpg', 'caption': 'A bathroom with yellow lighting, a glass shower, and a black countertop sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439907.jpg', 'caption': 'A bathroom scene showing the shower and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439907.jpg', 'caption': 'A high end bathroom with a shower stall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544597.jpg', 'caption': 'there is a bathroom that has a lot of things on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544597.jpg', 'caption': 'A run down building is shown, with dingy white walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544597.jpg', 'caption': 'An abandoned house slowly falls into neglect and disrepair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544597.jpg', 'caption': 'interior of windows and an old bathtub in one room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544597.jpg', 'caption': 'A long tub lies in an abandoned room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314515.jpg', 'caption': 'A car is carrying several bikes on a bike rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314515.jpg', 'caption': 'A car with bikes on top of it in front of a crowd of people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314515.jpg', 'caption': 'Car with bikes and crowd with umbrellas on wet road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314515.jpg', 'caption': 'A CAR LOADED WITH BICYCLES ON TOP AND PEOPLE STANDING AROUND WITH UMBRELLAS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314515.jpg', 'caption': 'A black and red Pontiac vehicle with a group of bikes on top of it and people standing near by with umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555677.jpg', 'caption': 'A white toilet sitting underneath a picture on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555677.jpg', 'caption': 'A bathroom area with photograph, toilet and white walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555677.jpg', 'caption': 'a painting hanging above the toilet displays a fancy picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555677.jpg', 'caption': 'A picture frame on the wall above a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555677.jpg', 'caption': 'A small framed picture is hanging above the toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415904.jpg', 'caption': 'A car with an argyle racing stripe in the rain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415904.jpg', 'caption': 'A car carrying bikes on a roof rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415904.jpg', 'caption': 'A silver car with an advertisement on the side and bikes on top on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415904.jpg', 'caption': \"A Pro Cycling Team's bikes on a car in a parade in the rain\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415904.jpg', 'caption': 'A silver car driving down a rain soaked street with bikes on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101636.jpg', 'caption': 'There is a car with bicycles on the top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101636.jpg', 'caption': \"The black car has bicycles mounted on it's roof.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101636.jpg', 'caption': 'A car that has some bicycles on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101636.jpg', 'caption': 'A car driving down a road with bikes on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101636.jpg', 'caption': 'A automobile with multiple bicycles on a roof rack. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315173.jpg', 'caption': 'A group of people riding on the back of a tour bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315173.jpg', 'caption': 'A large double decker yellow bus with people all over it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315173.jpg', 'caption': 'A bunch of people standing outside a colorful bus during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315173.jpg', 'caption': 'A double decked bus holding a group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315173.jpg', 'caption': 'Yellow school bus designed to allow people to sit above and on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397514.jpg', 'caption': 'A red and yellow bus next to some bikes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397514.jpg', 'caption': 'Several bikes sit parked in front of a red bus with a yellow flame paint.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397514.jpg', 'caption': 'A custom painted bus with a row of bicycles parked against it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397514.jpg', 'caption': 'A lot of bicycles standing beside one another and a bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397514.jpg', 'caption': 'Many bikes lined up against a large bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443963.jpg', 'caption': 'A very plain and undecorated bathroom with a sink and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443963.jpg', 'caption': 'a bathroom with a black counter around the sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443963.jpg', 'caption': 'A bathroom sink with a black counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443963.jpg', 'caption': 'THIS IS A PHOTO FROM THE DOORWAY LOOKING INTO A SMALL BATHROOM', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443963.jpg', 'caption': 'A small sink in a cabinet lies in a lavatory.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260627.jpg', 'caption': 'A commuter train traveling down train track next to a rural road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260627.jpg', 'caption': 'A train that is moving past a residential neighborhood. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260627.jpg', 'caption': 'A man on the road next to a train on the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260627.jpg', 'caption': 'A train traveling during the day on a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260627.jpg', 'caption': 'A train approaching the rail road track crossing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087561.jpg', 'caption': 'A white toilet sitting next to a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087561.jpg', 'caption': 'A white bathroom with a toilet and a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087561.jpg', 'caption': 'a toilet cabinet drawers and a towel rack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087561.jpg', 'caption': 'A plain white restroom toilet appointment in corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087561.jpg', 'caption': 'The bathroom is very empty and in need of updating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540820.jpg', 'caption': 'Two wash basins side-by-side next to a toilet and a bidet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540820.jpg', 'caption': 'The picture shows a nice bathroom with a double-sink, toilet, and bidet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540820.jpg', 'caption': 'A large and nice white bathroom with lights under the counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540820.jpg', 'caption': 'Neat and upscale appearing bathroom with toilet in far corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540820.jpg', 'caption': 'A model bathroom in an upscale house decorated in light tones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300034.jpg', 'caption': 'A picture of a modern bathroom with a glass door to the toilet and large glass mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300034.jpg', 'caption': 'a tiled bathroom with a toilet and sink inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300034.jpg', 'caption': 'A white bathroom with a white toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300034.jpg', 'caption': 'A bathroom that has a door just for the toilet area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300034.jpg', 'caption': 'A bathroom with a toilet, counter, and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220741.jpg', 'caption': 'A bathroom that has a special shelf for towels. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220741.jpg', 'caption': 'A modern bathroom with rolled towels and wooden side panels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220741.jpg', 'caption': 'This is a photo of a bathroom in someones home. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220741.jpg', 'caption': 'a toilet a mirror towels drawers lights and a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220741.jpg', 'caption': 'A small bathroom has a vanity, toilet and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221307.jpg', 'caption': 'The bathroom has a sink, and see through shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221307.jpg', 'caption': 'A large bathroom with a decent size shower and wooden sink area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221307.jpg', 'caption': 'Modern bathroom with exotic tiling and counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221307.jpg', 'caption': 'This bathroom has a glass shower and a granite counter top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221307.jpg', 'caption': 'A bathroom with a shower and a double sink arrangement being shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380854.jpg', 'caption': 'A bathroom is shown with white decor and brown cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380854.jpg', 'caption': 'This photo shows a bathroom with sink, mirror, toilet and window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380854.jpg', 'caption': 'A toilet, sink, mirror, sanitizer and a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380854.jpg', 'caption': 'Picture of a bathroom with shelf over toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380854.jpg', 'caption': 'A bathroom is mostly decorated in white. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069223.jpg', 'caption': 'this is a bathroom and a tub with tile', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069223.jpg', 'caption': 'The bathroom has a shiny wall and tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069223.jpg', 'caption': 'A woman with a black purse and a bath tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069223.jpg', 'caption': 'a person is standing near a white tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069223.jpg', 'caption': 'A cean lookign bathroom is laid out with tile', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468885.jpg', 'caption': 'A white toilet under a window next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468885.jpg', 'caption': 'Some unfinished looking wood is in a white bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468885.jpg', 'caption': 'A white toilet and a window in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468885.jpg', 'caption': 'A bathroom with toilet, vanity and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468885.jpg', 'caption': 'Corner view of a bathroom with a window above the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246717.jpg', 'caption': 'A lot of traffic are traveling near the green lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246717.jpg', 'caption': 'Cars parked outside if a retail store ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246717.jpg', 'caption': 'A street that has different cars in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246717.jpg', 'caption': 'A white car is driving down a road past some traffic lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246717.jpg', 'caption': 'a street with a lot of cars and some green street lights ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056426.jpg', 'caption': 'A modern sink is on top of a bathroom counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056426.jpg', 'caption': 'A white toilet and sink in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056426.jpg', 'caption': 'A bathroom toilet that is next to a bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056426.jpg', 'caption': 'A bathroom with a wash pan, toilet, and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056426.jpg', 'caption': 'this bathroom has a wooden cabinet and a sink on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448151.jpg', 'caption': 'A birthday boy with car shaped cake and candles on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448151.jpg', 'caption': 'A little boy standing next to a car shaped cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448151.jpg', 'caption': 'A small boy next to a table upon which sits a birthday cake shaped like a racecar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448151.jpg', 'caption': 'A boy sitting next to a race car cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448151.jpg', 'caption': 'A little boy posing with a race car shaped birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404785.jpg', 'caption': 'a bathroom with a sink and a toilet in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404785.jpg', 'caption': 'A bathroom with a sink, toilet, mirror and toilet roll stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404785.jpg', 'caption': 'A white toilet sitting next to a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404785.jpg', 'caption': 'a bathroom vanity missing its doors and a toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404785.jpg', 'caption': 'A small white bathroom with a wooden cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436848.jpg', 'caption': 'A black and white of a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436848.jpg', 'caption': 'A bathroom with a sink, toilet and large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436848.jpg', 'caption': 'This black and white photograph shows a tiled bathroom with a sink and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436848.jpg', 'caption': 'We are looking through the door of a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436848.jpg', 'caption': 'A bathroom that has a tile floor and a tile wall with a white sink and towels hanging off a rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028022.jpg', 'caption': 'A toilet is just inside a bathroom doorway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028022.jpg', 'caption': 'Shot inside a plain bathroom from entrance with toilet nearest door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028022.jpg', 'caption': 'A bathroom that has a small divider from the shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028022.jpg', 'caption': 'a walled of shower is next to a toilet in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028022.jpg', 'caption': 'Open door to white tiled bathroom with toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391656.jpg', 'caption': 'A bathroom features a picture of a woman a toilet and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391656.jpg', 'caption': 'A nice bathroom has a sink on glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391656.jpg', 'caption': 'A bathroom with a sink, toilet, and a bath tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391656.jpg', 'caption': 'A large bathroom with a Marlyn picture behind the toliet .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391656.jpg', 'caption': 'A very pretty rest room with a large basin sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506220.jpg', 'caption': 'A bathroom filled with a bath tub and his and her sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506220.jpg', 'caption': 'A high end bathroom with double sinks and bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506220.jpg', 'caption': 'A bathroom with two sinks and a luxurious tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506220.jpg', 'caption': 'a bathroom with a tub and double sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506220.jpg', 'caption': 'Two sinks stand next to a bathtub in a bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097131.jpg', 'caption': 'A car parked by a parking meter in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097131.jpg', 'caption': 'A car is sitting parked at a curb in front of a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097131.jpg', 'caption': 'A black car on the street next to a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097131.jpg', 'caption': 'A gray car parked in front of two parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097131.jpg', 'caption': 'A black car parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054305.jpg', 'caption': 'A giraffe walks through a line of cars in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054305.jpg', 'caption': 'A huge giraffe walking between some cars on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054305.jpg', 'caption': 'Giraffe walking between cars as taken by a driver', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054305.jpg', 'caption': 'A giraffe stands in the middle of some cars. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054305.jpg', 'caption': 'A giraffe is walking around in daytime traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511583.jpg', 'caption': 'A car is parked on a street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511583.jpg', 'caption': 'Car parked on street next to sidewalk in night scene', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511583.jpg', 'caption': 'A gray Ford Crown Victoria parked on a city street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511583.jpg', 'caption': 'A car parked next to a brick sidewalk on a street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511583.jpg', 'caption': 'a car that is parked next to a fire hydrogen ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245013.jpg', 'caption': 'A large white teddy bear sitting on top of an SUV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245013.jpg', 'caption': 'A christmas bear on top of the roof of a truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245013.jpg', 'caption': 'A stuffed animal is sitting on the top of a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245013.jpg', 'caption': 'A jeep with a giant christmas teddy bear strapped to the stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245013.jpg', 'caption': 'A large teddy bear attached to the roof of an SUV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093314.jpg', 'caption': 'A street scene looking down at cars and motorcycles parked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093314.jpg', 'caption': 'A view of the top of cars parked near a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093314.jpg', 'caption': 'There is something caught here in this photograph. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093314.jpg', 'caption': 'a couple of vehicles are parked by a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093314.jpg', 'caption': 'A van is cordoned off in a parking space along the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161112.jpg', 'caption': 'A black and white photo of a child putting on gloves next to a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161112.jpg', 'caption': 'A boy wearing a coat is putting on gloves near a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161112.jpg', 'caption': 'A little boy wearing gloves standing next to luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161112.jpg', 'caption': 'A boy wearing a winter outfit stands next to some luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161112.jpg', 'caption': 'A young boy dressed in winter clothes is pulling on a glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317410.jpg', 'caption': 'A couple of women standing in the back of a car with an open trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317410.jpg', 'caption': \"Two women putting luggage into a car from the 1950's\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317410.jpg', 'caption': 'Two ladies holding suitcases standing behind a car with the trunk open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317410.jpg', 'caption': 'vintage photo of two women loading the trunk of a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317410.jpg', 'caption': 'Two women are putting luggage into a car trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141709.jpg', 'caption': 'Each of the three bathroom stalls have trash cans beside the toilets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141709.jpg', 'caption': 'a view into the bathroom looking at three toilets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141709.jpg', 'caption': 'A trio of toilets is lined up in a dark public bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141709.jpg', 'caption': 'Three bathroom stalls with toilets in a restroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141709.jpg', 'caption': 'There are three stalls in this public bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412996.jpg', 'caption': 'A bathroom with a bunch of white tiles in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412996.jpg', 'caption': 'a tiled wall sits next to a toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412996.jpg', 'caption': 'A bathroom that has a toilet and toilet paper roll.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412996.jpg', 'caption': 'There is a toilet with the lid up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412996.jpg', 'caption': 'A toilet paper dispenser on a tiled wall next to a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120428.jpg', 'caption': 'A girl with a drink sitting on the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120428.jpg', 'caption': 'A girl is sitting on the toilet in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120428.jpg', 'caption': 'A woman using the restroom without pants on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120428.jpg', 'caption': 'this is an image of a woman on the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120428.jpg', 'caption': 'A lady is sitting on a toilet surrounded by bright pink walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546642.jpg', 'caption': 'A motorcyclist riding down the street with a dog in a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546642.jpg', 'caption': 'A motorcyclist drives down the road with a dog standing in the basket in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546642.jpg', 'caption': 'The white dog with black spots is riding in a basket on the back of the motor bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546642.jpg', 'caption': 'A man riding a motorcycle down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546642.jpg', 'caption': 'A man riding a motorcycle with his dalmatian dog sitting on the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080017.jpg', 'caption': 'A toilet with a blue seat cover with a note that reads \" Please Don\\'t Use Sorry\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080017.jpg', 'caption': 'Toilet with blue rug and blue rug cover saying please do not use. Sorry!', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080017.jpg', 'caption': 'A note is left to advise bathroom visitors not to use the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080017.jpg', 'caption': \"A toilet has a sign that says please don't use.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080017.jpg', 'caption': 'A broken toilet with a polite request not to use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094858.jpg', 'caption': 'Two messy toilet stalls with toilets where one lid is raised. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094858.jpg', 'caption': 'A couple of toilets sitting in bathroom stalls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094858.jpg', 'caption': 'Bathroom stalls with trash on floor in commercial business.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094858.jpg', 'caption': 'a couple of toilets in a public restroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094858.jpg', 'caption': 'A bathroom with two stalls, one toilet has the seat up, the other one has it down. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203345.jpg', 'caption': 'A couple of people standing next to a food cart filled with smoke.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203345.jpg', 'caption': 'a lady buying from a man on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203345.jpg', 'caption': 'A street vendor serves food to a customer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203345.jpg', 'caption': 'People buying food at a food cart on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203345.jpg', 'caption': 'Two people standing next to a street food stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537548.jpg', 'caption': 'A soldier riding a red motorcycle down a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537548.jpg', 'caption': 'The guy wearing camouflage outfit with the orange reflector vest is riding a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537548.jpg', 'caption': 'A safety conscious military dressed motorcyclist in traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537548.jpg', 'caption': 'A motorcyclist wearing an orange vest and driving on the motorcycle down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537548.jpg', 'caption': 'A man is riding a motorcycle on a street in traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521549.jpg', 'caption': 'There is a tall tower connected to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521549.jpg', 'caption': 'A church steeple rising high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521549.jpg', 'caption': 'A black and white photo of a clock on a tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521549.jpg', 'caption': 'Large building with tower and clocks on nice day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521549.jpg', 'caption': 'A tower that is park of a church building and has stained glass windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215408.jpg', 'caption': 'A medieval style tower and clock against blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215408.jpg', 'caption': 'A stone clock tower sits beneath a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215408.jpg', 'caption': 'A clock sits atop a tower claiming the time to be 2:56.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215408.jpg', 'caption': 'A historic clock tower turret still keeps the time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215408.jpg', 'caption': \"A stone clock tower with a wind vane on it's steeple. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133195.jpg', 'caption': 'a very tall building with a city clock on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133195.jpg', 'caption': 'On the tower of the building has a clock displayed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133195.jpg', 'caption': 'A clock tower seen over a pile of rocks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133195.jpg', 'caption': 'A tower that also has a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133195.jpg', 'caption': 'A very tall clock tower on top of a rocky hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414379.jpg', 'caption': 'A street scene of the intersection with people and cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414379.jpg', 'caption': 'A group of bikers riding near a cross walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414379.jpg', 'caption': 'A couple of cops at a busy intersection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414379.jpg', 'caption': 'Police officers parked in the street on motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414379.jpg', 'caption': 'Two police officers on motorcycles stopped at an intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112517.jpg', 'caption': 'A tall building with a clock on it near a cemetery. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112517.jpg', 'caption': 'There are tombstones in the cemetery next to an old church. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112517.jpg', 'caption': 'A large tall tower with a graveyard in front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112517.jpg', 'caption': 'The graveyard is outside of a church with a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112517.jpg', 'caption': 'The church by the cemetery has a clock on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335827.jpg', 'caption': 'A close up of a very large church with a clock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335827.jpg', 'caption': 'A very tall clock tower sticking out of the side of a church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335827.jpg', 'caption': 'A tower that has a clock on the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335827.jpg', 'caption': 'An old church with a clock tower and oval entry door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335827.jpg', 'caption': 'Church tower, beige stone color under partly cloudy skies. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521877.jpg', 'caption': 'The graveyard in front of the church is very spooky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521877.jpg', 'caption': 'a tall tower with a clock in the middle near a cemetery ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521877.jpg', 'caption': 'Eight tall building that is outside by some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521877.jpg', 'caption': 'blurry image of a cemetery with a clock tower in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521877.jpg', 'caption': 'A clock tower sits against a blue sky in a graveyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183176.jpg', 'caption': 'A man on a motorcycle with a woman on back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183176.jpg', 'caption': 'A man is on a motorcycle with a woman riding behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183176.jpg', 'caption': 'Two people on a motorcycle in front of a white house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183176.jpg', 'caption': 'Male and female posing on a parked motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183176.jpg', 'caption': 'A man riding a motorcycle with a woman on the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386584.jpg', 'caption': 'A bathroom with a white toilet next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386584.jpg', 'caption': 'A bathroom with white, yellow, and blue colorings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386584.jpg', 'caption': 'A small bathroom with a shower, toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386584.jpg', 'caption': 'a fully stocked bathroom, cluttered with everything one needs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386584.jpg', 'caption': 'This is a large bathroom with white tiles and a large sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440299.jpg', 'caption': 'A white toilet in a bathroom next to toilet paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440299.jpg', 'caption': 'Close up of a clean white toilet with the top up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440299.jpg', 'caption': 'A toilet with a roll of toilet paper is shown next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440299.jpg', 'caption': 'A small stall with a toilet seat and its open lid. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440299.jpg', 'caption': 'Toilet with lid open in stall and white tiled floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451496.jpg', 'caption': 'A motorcycle near a curb with a building in its mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451496.jpg', 'caption': 'A look down at a nice looking motorcycle with big screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451496.jpg', 'caption': 'A motor bike parked on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451496.jpg', 'caption': 'Chinese characters are reflected on the mirror of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451496.jpg', 'caption': 'A black and white photo of a motorcycle, with writing in the reflection of a the motorcycle..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046571.jpg', 'caption': 'a bike that is parked next to a brick wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046571.jpg', 'caption': 'A motor scooter sits parked in front of a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046571.jpg', 'caption': 'The motorbike is a beautifully designed machine, a work of art on wheels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046571.jpg', 'caption': 'The parked motorcycle is silver with black handle bars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046571.jpg', 'caption': 'A new silver motorbike parked in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307989.jpg', 'caption': 'A couple of kittens standing around metal bowls on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307989.jpg', 'caption': 'two baby kittens at the feeding bowls one is drinking', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307989.jpg', 'caption': 'A kitten drinking water out of a bowl on a tray. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307989.jpg', 'caption': 'Two little kittens drinking water out of the bowls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307989.jpg', 'caption': 'Two kittens drink water from some bowls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486457.jpg', 'caption': 'An office desk with several monitors and birthday balloons', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486457.jpg', 'caption': 'A desk with two monitors, a keyboard, a laptop and balloons on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486457.jpg', 'caption': 'this is a desk with balloons on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486457.jpg', 'caption': 'An office cubicle contains a bouquet of bright helium-filled ballons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486457.jpg', 'caption': 'A desk holds several computers and a few balloons. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101933.jpg', 'caption': 'Two men riding on a motorcycle with a young girl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101933.jpg', 'caption': 'two adults and a child riding a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101933.jpg', 'caption': 'Three people on a scooter on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101933.jpg', 'caption': 'A woman, man, and girl riding on a motorcycle together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101933.jpg', 'caption': 'A black and white picture of a scooter with three people riding on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056443.jpg', 'caption': 'A black and white still life of a branch with flowers in a vase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056443.jpg', 'caption': 'a vase with a flower growing very well', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056443.jpg', 'caption': 'A black and white photo of a steam of flowers inside a vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056443.jpg', 'caption': 'a black and white photo with a vase and flower coming out of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056443.jpg', 'caption': 'A black and white photo of a flowing growing out of a vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233311.jpg', 'caption': 'A bowl of oranges sitting on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233311.jpg', 'caption': 'a sock monkey sitting in front of a bowl of oranges', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233311.jpg', 'caption': 'A monkey stuffed toy sitting on a table in front of a bowl of oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233311.jpg', 'caption': 'A stuffed animal sitting on a table, with oranges behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233311.jpg', 'caption': 'a table with a bowl of oranges on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542509.jpg', 'caption': 'A computer desk with various monitors and speakers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542509.jpg', 'caption': 'A few office desks with three desktop computers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542509.jpg', 'caption': 'an image of a two large monitors in a computer center', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542509.jpg', 'caption': 'a desk with multiple monitors keyboards and laptops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542509.jpg', 'caption': 'A full view of a working office with computers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165818.jpg', 'caption': 'A spiral of bananas sitting inside of a large bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165818.jpg', 'caption': 'Three bananas arranged on a colorful plate on a small table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165818.jpg', 'caption': 'Three bananas lying in an intricately patterned dish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165818.jpg', 'caption': 'three bananas in a bowl on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165818.jpg', 'caption': '3 bananas sit in an ornate bowl on a table next to mail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463555.jpg', 'caption': 'Banana slices and peanut butter on a blue plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463555.jpg', 'caption': 'A number of cut up bananas with peanut butter on a spoon sitting on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463555.jpg', 'caption': 'A sliced banana is displayed on a plate with a spoonful of peanut butter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463555.jpg', 'caption': 'A plate holds a fork with peanut butter and half of a sliced banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463555.jpg', 'caption': 'A plate of bananas and a spoon of peanut butter on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027642.jpg', 'caption': 'a bunch of motorcycles are parked on the street together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027642.jpg', 'caption': 'A road where many motorcyclists with their vehicles are standing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027642.jpg', 'caption': 'Lots of bikers talk among either other near motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027642.jpg', 'caption': 'A group of people are gathered around parked motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027642.jpg', 'caption': 'some parked motorcycles and people and a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092093.jpg', 'caption': 'Hundreds of people gathered around looking at motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092093.jpg', 'caption': 'A group of men standing around a red motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092093.jpg', 'caption': 'Men converse near a number of parked motorcycles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092093.jpg', 'caption': 'A group of men talking in between some motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092093.jpg', 'caption': 'Three men are standing next to a motorcycle, one is wearing a helmet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413822.jpg', 'caption': 'Man in period costume rides vintage motorcycle with German flag on back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413822.jpg', 'caption': 'Some people are standing on the side of the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413822.jpg', 'caption': 'A man riding on the back of a motorcycle down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413822.jpg', 'caption': 'The guy is riding his motorcycle down the road with the people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413822.jpg', 'caption': 'A man in leather straddles an old motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014321.jpg', 'caption': 'A crowd stands around motorcycles parked beside each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014321.jpg', 'caption': 'A group of motorcycles are set up on display', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014321.jpg', 'caption': 'Motorcycles parked on cobble road near group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014321.jpg', 'caption': 'Motorcycles parked on cobblestone area at outdoor event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014321.jpg', 'caption': 'Several motorcycles are parked together as people stand around them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558587.jpg', 'caption': 'a woman riding a little pink motorcycle by a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558587.jpg', 'caption': 'a woman on a pink motorcycle with bull horns', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558587.jpg', 'caption': 'a woman rides a pink motorcycle that has bull horns on the handle bars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558587.jpg', 'caption': 'A woman is riding a pink motorcycle with a scowl on her face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558587.jpg', 'caption': 'A woman is riding a pink motorcycle with cow horns attached to the handlebars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556349.jpg', 'caption': 'Red motorcycle parked outside of large building in the city, ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556349.jpg', 'caption': 'A motorcycle parked on a sidewalk with a man in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556349.jpg', 'caption': 'A red motorcylcle parked outside a building on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556349.jpg', 'caption': 'A motorcycle is pictured outside of a building with a man walking away from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556349.jpg', 'caption': 'A motorcycle on the sidewalk outside of a building. ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000457322.jpg', 'caption': 'A man on a motorcycle outside in a black and white photo ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457322.jpg', 'caption': 'A motorcycle is being riden by a young man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457322.jpg', 'caption': 'A man is posing for a photo while on his motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457322.jpg', 'caption': 'a women that is on a motorcycle out side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457322.jpg', 'caption': 'A man posing for a pic in a black and white photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056070.jpg', 'caption': 'A motorcycle parked next to a yellow thing and tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056070.jpg', 'caption': 'A black and orange motorcycle on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056070.jpg', 'caption': 'A shiny motorcycle is parked on a city sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056070.jpg', 'caption': 'Two motorcycles parked on a bricked sidewalk against a newspaper rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056070.jpg', 'caption': 'A motorcycle parked next to a yellow object on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475923.jpg', 'caption': 'A black and white dog sleeps in front of a blue door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475923.jpg', 'caption': 'A dog is sleeping on the step by a blue door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475923.jpg', 'caption': 'A blue door with a white and black dog in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475923.jpg', 'caption': 'A healthy cat us lying I. The step if a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475923.jpg', 'caption': 'A dog sleeping on the front poor of a building with bright blue doors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086835.jpg', 'caption': 'The large building has many windows and a white door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086835.jpg', 'caption': 'Two benches are located in front of the small garden', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086835.jpg', 'caption': 'Two wooden benches sit in front of a tall brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086835.jpg', 'caption': 'An old brick house with a white door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086835.jpg', 'caption': 'two park benches in front of some hedges out side of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461993.jpg', 'caption': 'a giraffe standing in the doorway of a barn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461993.jpg', 'caption': 'a giraffe in its pen and rocks and a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461993.jpg', 'caption': 'A giraffe standing in a large doorway looking to his right..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461993.jpg', 'caption': 'A giraffe standing in a pen with the doors open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461993.jpg', 'caption': 'Giraffe standing inside an open building with three doors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235595.jpg', 'caption': 'THERE ARE MOTOR BIKES THAT ARE PARKED ON THE STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235595.jpg', 'caption': 'thee motorcycles parked next to one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235595.jpg', 'caption': 'Motorcycles and a car parked on the street in front of stores', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235595.jpg', 'caption': 'Three motor cycles are sitting in the street outside a coffee house as people walk by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235595.jpg', 'caption': 'A row of parked motorcycles sitting in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534733.jpg', 'caption': 'A chair and a couch in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534733.jpg', 'caption': 'White furniture and fireplace with a tv over it decorate this living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534733.jpg', 'caption': 'Interior of a living room with furniture, plant, fireplace and a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534733.jpg', 'caption': 'A TV mounted above a fireplace in a nicely furnished living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534733.jpg', 'caption': 'A TV sitting above a fire place in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520251.jpg', 'caption': 'A living room filled with furniture and a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520251.jpg', 'caption': 'A living room with a TV and couches is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520251.jpg', 'caption': 'Shot of living area that includes chairs, a couch, a coffee table and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520251.jpg', 'caption': 'a living room with a couch a chair and a tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000520251.jpg', 'caption': 'Daylight shining on television and living room furniture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030707.jpg', 'caption': 'a man sitting on the end of a bed in front of a small TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030707.jpg', 'caption': 'A man sitting on the bed watching tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030707.jpg', 'caption': 'There is a man sitting on a bed watching TV', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030707.jpg', 'caption': 'a man sitting in the bed looking at tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030707.jpg', 'caption': 'a person sitting on a bed in a room with two beds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082229.jpg', 'caption': 'A modern flatscreen television sits upon a nostalgic console model.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082229.jpg', 'caption': 'A picture of a TV on top of another TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082229.jpg', 'caption': 'Flat screen television on top of an old tv console', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082229.jpg', 'caption': 'A new flat-screen T.V on top of an older model television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082229.jpg', 'caption': 'A new tv on top of an old tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254104.jpg', 'caption': 'An airplane flies high in the sky while a ship is up close.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254104.jpg', 'caption': 'An aircraft flying over a mast with cables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254104.jpg', 'caption': 'a plane is flying way up in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254104.jpg', 'caption': 'An airplane flies high above the mast of a ship.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254104.jpg', 'caption': 'A plane that is flying high above the power lines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189955.jpg', 'caption': 'A twin engine airplane parked at a small airport with men in yellow vests looking it over.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189955.jpg', 'caption': 'A small airplane being boarded for take-off on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189955.jpg', 'caption': 'A close up of a large, white plane with someone standing beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189955.jpg', 'caption': 'Plane parked on tarmac at small airport with service personnel nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189955.jpg', 'caption': 'A man standing next to an airplane and in front of a propeller. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436456.jpg', 'caption': 'The airplane is on the runway with two young men standing by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436456.jpg', 'caption': 'Two men walking the tarmac of an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436456.jpg', 'caption': 'Two men at on an airport tarmac. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436456.jpg', 'caption': 'Two young men walking down a runway toward an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436456.jpg', 'caption': 'Young men are preparing to board a small passenger plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466347.jpg', 'caption': 'airplanes floating in the lake on a cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466347.jpg', 'caption': 'a airplane that is on top of the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466347.jpg', 'caption': 'a plane glides acoss thesurface of the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466347.jpg', 'caption': 'A plane is riding along the water in the middle of the evening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466347.jpg', 'caption': 'A plane with pontoons landing on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265234.jpg', 'caption': 'a very big boat that is in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265234.jpg', 'caption': 'A seaplane lands in a bay where a cruise ship is docked. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265234.jpg', 'caption': 'A ship is parked next to a big hotel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265234.jpg', 'caption': 'A boat and a sea plane in the same body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265234.jpg', 'caption': 'Large white ship dock next to an airplane on the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455943.jpg', 'caption': 'An airplane high in the sky flying overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455943.jpg', 'caption': 'A commercial aiplane in flight against a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455943.jpg', 'caption': 'A large airplane flying overhead in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455943.jpg', 'caption': 'A plane flying high up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455943.jpg', 'caption': 'A plane is flying through the sky on a fairly clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322791.jpg', 'caption': 'An airplane is doing tricks and emitting smoke.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322791.jpg', 'caption': 'An aerial stunt plane in a climb with smoke coming out of the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322791.jpg', 'caption': 'A biplane performing tricks in the sky with smoke coming from behind. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322791.jpg', 'caption': 'White and yellow propeller stunt plane trailing smoke while climbing steeply.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322791.jpg', 'caption': 'a plane in the air with a trail of smoke', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120592.jpg', 'caption': 'An airplane flying through a smoggy gray sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120592.jpg', 'caption': 'A remote control airplane being flown in a clear sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120592.jpg', 'caption': 'Blue sky with a green plane with lettering on wings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120592.jpg', 'caption': 'A vintage plane that is flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120592.jpg', 'caption': 'An old propeller war plane flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084870.jpg', 'caption': 'A large passenger jet flying through a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084870.jpg', 'caption': 'a large white airplane flying through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084870.jpg', 'caption': 'A Lufthansa airline flight flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084870.jpg', 'caption': 'A black and white close up of a large plane. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084870.jpg', 'caption': 'A commercial passenger plane flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576305.jpg', 'caption': 'A little girl lies on a wooden bench, eating snacks from a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576305.jpg', 'caption': 'A little girl with a snack laughing on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576305.jpg', 'caption': 'A small child is laying on a bench with a small open snack bag on its chest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576305.jpg', 'caption': 'A little girl laying on her side on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576305.jpg', 'caption': 'A small child lies on a bench, holding a plastic snacks bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391674.jpg', 'caption': 'A park bench is beside a stone wall and a flowering bush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391674.jpg', 'caption': 'A blue bench in front of a stone style wall and a bush with red flowers to the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391674.jpg', 'caption': 'A blue bench and a flowering bush, in front of a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391674.jpg', 'caption': 'A blue painted park bench next to a bountiful bush with red flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391674.jpg', 'caption': 'a berry bush sits next to a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206684.jpg', 'caption': 'The man is sitting on the bench close to the asian section.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206684.jpg', 'caption': 'A man is sitting on a bench by a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206684.jpg', 'caption': 'A man sitting on a bench alongside the curb of a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206684.jpg', 'caption': 'A young person sitting on a bench across the street from a big building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206684.jpg', 'caption': 'A man in a religious outfit talking on a phone across from others.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430690.jpg', 'caption': 'A traffic light turns green on the corner of a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430690.jpg', 'caption': 'An intersection of two streets in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430690.jpg', 'caption': 'A green street light in between two buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430690.jpg', 'caption': 'A traffic signal sitting on the corner of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430690.jpg', 'caption': 'A corner of an empty city street with cars parked on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577355.jpg', 'caption': 'three traffic lights hanging off a pole and some buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577355.jpg', 'caption': 'Street traffic light that is on blinking yellow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577355.jpg', 'caption': 'A streetlight in front of a cloudy storm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577355.jpg', 'caption': 'A yellow traffic light with over cast skies in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577355.jpg', 'caption': 'three stop lights hanging high up in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068650.jpg', 'caption': 'A man and a boy standing next to a tall giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068650.jpg', 'caption': 'Man in blue shirt taking picture of giraffe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068650.jpg', 'caption': 'Two men are watching a giraffe while one takes a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068650.jpg', 'caption': 'Two people are observing and taking photographs of a giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068650.jpg', 'caption': 'The women is taking a picture of the tall giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503255.jpg', 'caption': 'The bench at the tree offers a respite and a scenic autumnal view of a grand valley ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503255.jpg', 'caption': 'A bench beneath a tree outlooking a valley in autumn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503255.jpg', 'caption': 'A bench sits next to a tree near a cliff. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503255.jpg', 'caption': 'A wooden bench sitting in a park surrounded by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503255.jpg', 'caption': 'The back of a sign in a park on a fall day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222494.jpg', 'caption': 'A traffic light with a smile green light above a red sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222494.jpg', 'caption': 'A traffic light is displaying a green smiley face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222494.jpg', 'caption': 'Picture of a traffic light with a green smiley light showing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222494.jpg', 'caption': 'A smiley face made out of black tape on a green traffic signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222494.jpg', 'caption': 'Tape on a green like makes it look like it has a happy face. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061897.jpg', 'caption': 'A man riding a bike down a dark city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061897.jpg', 'caption': 'A man riding on a bike in the middle of the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061897.jpg', 'caption': 'A person is biking along a city street near road construction at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061897.jpg', 'caption': 'Bicyclist riding on a city street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061897.jpg', 'caption': 'A man rides a bike past construction workers on a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371330.jpg', 'caption': 'A woman standing on the outside of an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371330.jpg', 'caption': 'A group of people are boarding a small plane. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371330.jpg', 'caption': 'People are loading up their luggage and themselves onto a tiny plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371330.jpg', 'caption': 'a person with red backpack boarding a small plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371330.jpg', 'caption': 'People are standing outside of a plane with luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238700.jpg', 'caption': 'a giraffe and a zebra are standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238700.jpg', 'caption': 'A Giraffe is in the forefront and a Zebra is in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238700.jpg', 'caption': 'A giraffe and zebra cross paths in a habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238700.jpg', 'caption': 'The zebra and the giraffe are walking in opposite directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238700.jpg', 'caption': 'A zebra and a giraffe walking in opposite directions. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357943.jpg', 'caption': 'A LOT OF SHEEP IS IN THE GRASS WITH A SHEEP DOG', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357943.jpg', 'caption': 'A border collie herds three sheep toward a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357943.jpg', 'caption': 'A sheep dog is herding three lambs across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357943.jpg', 'caption': 'A man sitting in front of the pen with a dog herding sheep in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357943.jpg', 'caption': 'A dog chasing a group of three sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134328.jpg', 'caption': 'An airplane flying through a blue sky next to a helicopter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134328.jpg', 'caption': 'a plane is flying high in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134328.jpg', 'caption': 'A far away shot of a propeller driven plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134328.jpg', 'caption': 'An osprey plane flying with a helicopter in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134328.jpg', 'caption': 'A plane that is flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345988.jpg', 'caption': 'An American Airlines passenger jet takes off from an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345988.jpg', 'caption': 'A large commercial airplane taking off into the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345988.jpg', 'caption': 'American Airlines 747 jet very soon after takeoff. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345988.jpg', 'caption': 'A large plane is pointed upward after take off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345988.jpg', 'caption': 'A passenger plane that belongs to American Airlines taking off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518030.jpg', 'caption': 'there is a bench on cornet looking out at the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518030.jpg', 'caption': 'A bench overlooks a harbor with several large ships. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518030.jpg', 'caption': 'A bench overlooking a marina where tall ships are moored', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518030.jpg', 'caption': 'An empty park bench is shown with some ships in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518030.jpg', 'caption': 'A bench sitting on concrete in front of a lake with boats in the lake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249325.jpg', 'caption': 'A man sitting on a bench next to pigeons holding a news paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249325.jpg', 'caption': 'An older gentleman sits on a bench reading the newspaper. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249325.jpg', 'caption': 'A man is reading a newspaper on a park bench surrounded by pigeons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249325.jpg', 'caption': 'An older man sitting on a park bench reading a paper near some pigeons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249325.jpg', 'caption': 'A man sitting on a park bench reading the paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526645.jpg', 'caption': 'A giraffe walking through a tree filled forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526645.jpg', 'caption': 'A large giraffe is walking through the trees in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526645.jpg', 'caption': 'A giraffe walking through some tall tree trunks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526645.jpg', 'caption': 'A giraffe is walking through the forest with tall trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526645.jpg', 'caption': \"Giraffe walking in dense tree'd forest on clear day.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233005.jpg', 'caption': 'A tiger striped cat being petted on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233005.jpg', 'caption': 'A brown tabby cat is laying on a wood bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233005.jpg', 'caption': 'this tabby cat is loving the attention she is getting from this man', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233005.jpg', 'caption': 'Cat on wooden bench clawing bench arm being petted.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233005.jpg', 'caption': 'A cat getting some attention on an outdoor bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385139.jpg', 'caption': 'The black cat is wondering what isw behind the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385139.jpg', 'caption': 'A cat sitting on a bench pawing the side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385139.jpg', 'caption': 'A black cat with white paws scratches and the wooden back rest of a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385139.jpg', 'caption': 'A cat that is sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385139.jpg', 'caption': 'A cat sitting on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080462.jpg', 'caption': 'some lightening is striking off in the distance', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080462.jpg', 'caption': 'An airport filled with lots of airplanes under a lightning filled cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080462.jpg', 'caption': 'An airport up close and a strike of lightning in the distance. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080462.jpg', 'caption': 'A lightning bolt hitting a city. The view is from miles away.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080462.jpg', 'caption': 'lightning striking during a storm in a city ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577866.jpg', 'caption': 'An old black and white picture of a bus and homes in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577866.jpg', 'caption': 'A large truck parked on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577866.jpg', 'caption': 'A black and white photo of a child standing near a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577866.jpg', 'caption': 'A black an white age of a very old bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577866.jpg', 'caption': 'A youth waits for an older bus in a neighborhood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193936.jpg', 'caption': 'a group of people that are taking a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193936.jpg', 'caption': 'A bunch of school boys and their teachers at school', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193936.jpg', 'caption': 'A black and white photo of a young classroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193936.jpg', 'caption': 'A vintage photograph showing young students and their teachers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193936.jpg', 'caption': 'An old class photo of boys and their teachers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306553.jpg', 'caption': 'The two people sit on a bench overlooking the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306553.jpg', 'caption': 'A couple sitting on a park bench facing the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306553.jpg', 'caption': 'Two people in hats sit on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306553.jpg', 'caption': 'Two people in hats sitting on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306553.jpg', 'caption': 'Two hipsters sitting on a wooden bench next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422877.jpg', 'caption': 'People waiting to cross a busy street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422877.jpg', 'caption': 'Two people crossing a traffic filled street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422877.jpg', 'caption': 'The cars are passing by while a pedestrian in blue shirt is waiting to cross the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422877.jpg', 'caption': 'Two people cross the street in a crosswalk on a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422877.jpg', 'caption': 'People walking at night in the brightly lit city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364757.jpg', 'caption': 'Two traffic lights showing red on a pole with a camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364757.jpg', 'caption': 'some red traffic lights a camera and telephone poles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364757.jpg', 'caption': 'A traffic camera between two traffic lights that are red.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364757.jpg', 'caption': 'A long metal arm with two red traffic lights and a traffic camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364757.jpg', 'caption': 'Two stop lights hang next to each other at twilight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235919.jpg', 'caption': 'A very tall old building sitting on the corner of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235919.jpg', 'caption': 'An old building appears to be in a country which is not US.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235919.jpg', 'caption': 'an old building under gray skies at the corner of an intersection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235919.jpg', 'caption': 'A very big pretty building on the corner of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235919.jpg', 'caption': 'many cars driving on a city street with a bus ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103431.jpg', 'caption': 'A black and white photo of four young children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103431.jpg', 'caption': 'A group of young boys sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103431.jpg', 'caption': 'An old photograph of four schoolboys in short pants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103431.jpg', 'caption': 'A black and white picture of some young boys sitting next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103431.jpg', 'caption': 'an old black and white photo of children sitting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002621.jpg', 'caption': 'a street light with the walk symbol on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002621.jpg', 'caption': 'A snow covered street light shows that the walking light is green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002621.jpg', 'caption': 'pedestrian sign on a street corner covered in snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002621.jpg', 'caption': 'A traffic light sitting on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002621.jpg', 'caption': 'A walk light covered in snow on a corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301937.jpg', 'caption': 'A woman rides a horse in the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301937.jpg', 'caption': 'A horse riding down the street on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301937.jpg', 'caption': 'A woman riding a horse on the road in a small town. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301937.jpg', 'caption': 'A woman that is sitting on the back of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301937.jpg', 'caption': 'A woman riding on the back of a horse down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105872.jpg', 'caption': 'An older black and white picture of a cue of people boarding a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105872.jpg', 'caption': 'A black and white photograph of kids waiting in line at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105872.jpg', 'caption': 'A large group of children and adults lined up to board a double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105872.jpg', 'caption': 'A group of people form a line next to a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105872.jpg', 'caption': 'a group of children line up to get on a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127785.jpg', 'caption': 'this is a group of giraffes walking together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127785.jpg', 'caption': 'Several giraffes are walking away at a zoo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127785.jpg', 'caption': 'Group of six giraffes walking away outside under the trees..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127785.jpg', 'caption': 'A group of giraffes running through a grassland area in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127785.jpg', 'caption': 'We are looking at a small herd of giraffes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198486.jpg', 'caption': 'The reflection of a woman in a rear view mirror standing next to a bus taking a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198486.jpg', 'caption': 'A person takes a selfie in a school bus mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198486.jpg', 'caption': 'A person taking a picture in the mirror or a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198486.jpg', 'caption': 'A woman taking a photo in the rear side mirror of a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198486.jpg', 'caption': 'A rearview mirror that shows a vehicle and a person taking a picture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327383.jpg', 'caption': 'An old van has been given a mirrored finish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327383.jpg', 'caption': 'A silver hippy van and a bus for vegans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327383.jpg', 'caption': 'A VAN MADE TO LOOK LIKE A DISCO BALL NEXT TO A TOUR BUS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327383.jpg', 'caption': 'a silver tiled van parked next to a red bus in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327383.jpg', 'caption': 'A small van painted in silver glitter paint parked next to a double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398519.jpg', 'caption': 'a close up of a giraffe behind a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398519.jpg', 'caption': 'A giraffe walking beside a wire fence near a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398519.jpg', 'caption': 'A giraffe is next to a fence in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398519.jpg', 'caption': 'A giraffe walking by a fence with building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398519.jpg', 'caption': 'A giraffe dwarfs a zoo visitor as he walks past the pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239148.jpg', 'caption': 'A herd of goats walking along a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239148.jpg', 'caption': 'There are plenty of sheep walking together outside the ranch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239148.jpg', 'caption': 'A group of sheep walking through a desert type area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239148.jpg', 'caption': 'A group of sheep walking along a dirt path in a dessert area with a house in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239148.jpg', 'caption': 'Some animals are walking down the road on a hot day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086800.jpg', 'caption': 'A woman in a blue dress holding an artistic vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086800.jpg', 'caption': 'A woman is sitting in a chair with a jug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086800.jpg', 'caption': 'A woman in a blue dress that is sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086800.jpg', 'caption': 'Woman sitting on a chair holding a vase on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086800.jpg', 'caption': 'a lady in a chair touching a vase that is on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192192.jpg', 'caption': 'A park with many trees and benches at night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192192.jpg', 'caption': 'very many benches outside the house in the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192192.jpg', 'caption': 'A nighttime picture of a park with empty park benches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192192.jpg', 'caption': 'Two park benches are illuminated by lamp light in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192192.jpg', 'caption': 'a park setting with a lot of park benches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102858.jpg', 'caption': 'A wooden bench sitting near a group of buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102858.jpg', 'caption': 'An empty bench on an empty sidewalk in front of some shops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102858.jpg', 'caption': 'Bench on the sidewalk of a quaint, old town', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102858.jpg', 'caption': 'An old fashioned bench is sitting on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102858.jpg', 'caption': 'A solitary wooden bench on a city walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267840.jpg', 'caption': 'a stop and go light on red out side of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267840.jpg', 'caption': 'A red traffic light located near an office building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267840.jpg', 'caption': 'A stoplight oriented horizontally is mounted on an city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267840.jpg', 'caption': 'A traffic light suspended from a metal pole near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267840.jpg', 'caption': 'A red streetlight with asian writing near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361400.jpg', 'caption': 'A traffic light is showing a green arrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361400.jpg', 'caption': 'A traffic light of some sort on a busy road of some sort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361400.jpg', 'caption': 'a stop and go light displaying a green light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361400.jpg', 'caption': 'A traffic light on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361400.jpg', 'caption': 'A green traffic light sitting next to a traffic filled road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566757.jpg', 'caption': 'People sitting and standing on a bus at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566757.jpg', 'caption': 'A group of people sitting and standing inside of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566757.jpg', 'caption': 'People standing up to ride on a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566757.jpg', 'caption': 'Multiple male commuters traveling in a subway car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566757.jpg', 'caption': 'People standing up on a crowded subway train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107481.jpg', 'caption': 'two giraffes standing next to each other with a fence between them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107481.jpg', 'caption': 'The giraffes are walking together in a zoo habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107481.jpg', 'caption': 'The giraffes are walking together along a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107481.jpg', 'caption': 'Two giraffes that are on opposite sides of a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107481.jpg', 'caption': 'Two giraffes are walking, one on each side of the gate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274655.jpg', 'caption': 'this is a bus with an ad for a casino', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274655.jpg', 'caption': 'a yellow and blue truck is driving down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274655.jpg', 'caption': 'A bus with a Casino Advertisement on it next to a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274655.jpg', 'caption': 'there is a large bus with casino on it going down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274655.jpg', 'caption': 'a gambling bus ,with logos written ,on it ,in a parking space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260232.jpg', 'caption': 'A traffic light on a table with a checkered cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260232.jpg', 'caption': 'A traffic light sits on a table with other vintage items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260232.jpg', 'caption': 'A great picture of some street lights placed on top of a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260232.jpg', 'caption': 'There are several antiques displayed here including a vintage road sign and a set of traffic lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260232.jpg', 'caption': 'An old traffic signal sitting on a table by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224862.jpg', 'caption': 'A white bus sitting on top of a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224862.jpg', 'caption': 'A bus that has bags of luggage on the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224862.jpg', 'caption': 'An old battered bus sitting by itself with junk beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224862.jpg', 'caption': 'An old bus sits in a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224862.jpg', 'caption': 'A very cool looking old style bus in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460059.jpg', 'caption': 'a woman is wearing a yellow jacket and a man in a white shirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460059.jpg', 'caption': 'A man and a woman are sitting on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460059.jpg', 'caption': 'Two adults seated on a wooden bench near a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460059.jpg', 'caption': 'Two people sitting on a wooden bench looking at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460059.jpg', 'caption': 'Man and woman sitting on a bench near a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439516.jpg', 'caption': 'a giraffe leaning over a fence to eat out of a bowl that a woman is holding ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439516.jpg', 'caption': 'A woman holding up a bucket to a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439516.jpg', 'caption': 'A woman feeding a giraffe by a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439516.jpg', 'caption': 'A woman is holding a bowl of food to feed the giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439516.jpg', 'caption': 'A WOMAN HOLDS UP A BOWL AND IS FEEDING A GIRAFFE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577712.jpg', 'caption': 'Three people stand in front of the giraffe zoo section.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577712.jpg', 'caption': \"Three people are standing near a tall giraffe's head.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577712.jpg', 'caption': 'Two men and a woman people interacting with a giraffe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577712.jpg', 'caption': 'A giraffe putting its head near some onlookers at the zoo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577712.jpg', 'caption': 'A group of tourists looking at a giraffe in in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308388.jpg', 'caption': 'Traffic drives down a street on a green light passed tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308388.jpg', 'caption': 'A traffic light above a street next to a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308388.jpg', 'caption': 'Large dome building sitting behind a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308388.jpg', 'caption': 'A picture of a road and a green stop light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308388.jpg', 'caption': 'View of a partially shaded city street with autumn leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390684.jpg', 'caption': 'Cars parallel-parked on a street with a street-light in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390684.jpg', 'caption': 'Several cars driving down a busy street at Markham Ave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390684.jpg', 'caption': 'The cars were parked along the street near the traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390684.jpg', 'caption': 'Cars sitting on a street near a stoplight. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390684.jpg', 'caption': 'A view of parked cars on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555066.jpg', 'caption': 'The green traffic signals are near two parked vehicles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555066.jpg', 'caption': 'A car is parked outside behind a street pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555066.jpg', 'caption': 'All of the lights on the street have turned green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555066.jpg', 'caption': 'A truck driving down a street under yellow traffic lights;', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555066.jpg', 'caption': 'A green traffic light beside cars parked on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062459.jpg', 'caption': 'a red and white fire hydrant is sitting by a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062459.jpg', 'caption': 'A red and white fire hydrant sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062459.jpg', 'caption': 'a fire hydrant sitting next to a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062459.jpg', 'caption': 'A fire hydrant sits on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062459.jpg', 'caption': 'A fire hydrant sitting on the side of the road in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192894.jpg', 'caption': 'A couple of animals that are in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192894.jpg', 'caption': 'Two sheep standing in brambles on a grassy hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192894.jpg', 'caption': 'two animals standing in a field with different plants ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192894.jpg', 'caption': 'Two sheep, one looking at the camera, while the other looks away are in the wilderness. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192894.jpg', 'caption': 'A picture of sheep grazing on a hill side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181742.jpg', 'caption': 'A red fire hydrant sitting on a muddy green hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181742.jpg', 'caption': 'A red fire hydrant surrounded by lush foliage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181742.jpg', 'caption': 'A red fire hydrant surrounded by mud and grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181742.jpg', 'caption': 'A red fire hydrant is placed in the muddy ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181742.jpg', 'caption': 'A red fire hydrant located between heavy vegetation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405675.jpg', 'caption': 'The fire hydrant on the side of the road is painted a bright yellow and orange.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405675.jpg', 'caption': 'A yellow fire-hydrant on a grassy yard of some sort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405675.jpg', 'caption': 'A yellow fire hydrant with a pole sitting near a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405675.jpg', 'caption': 'Yellow and orange painted fire hydrant in front of an unkempt lawn. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405675.jpg', 'caption': 'A yellow fire hydrant on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108129.jpg', 'caption': 'A tree in bloom with pink flowers near a rural area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108129.jpg', 'caption': 'A bright pink tree stands next to a small wooden house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108129.jpg', 'caption': 'A pink flowering tree in a back yard garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108129.jpg', 'caption': 'Beautiful pink floweing tree spread over park bench, landscaping and striped garden shed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108129.jpg', 'caption': 'pink floral tree next to a log cabin looking shed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076595.jpg', 'caption': 'A large blue bus on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076595.jpg', 'caption': 'A transit bus pulling through a shopping area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076595.jpg', 'caption': 'The city bus has pulled over the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076595.jpg', 'caption': ' A bus has stopped on the street beside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076595.jpg', 'caption': 'A commuter bus leaves a stop in a commercial parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186009.jpg', 'caption': 'A brown sheep standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186009.jpg', 'caption': 'A brown sheep in a pasture looking at the camera ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186009.jpg', 'caption': 'a sheep standing in a field in front of a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186009.jpg', 'caption': 'A lamb standing on a hillside with a blue house in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186009.jpg', 'caption': 'a chocolate colored sheep standing in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282808.jpg', 'caption': 'A wooden park bench overlooking a valley full of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282808.jpg', 'caption': 'A wooden bench sitting next to a tree in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282808.jpg', 'caption': 'A bench is in an area to have a view of the colorful trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282808.jpg', 'caption': 'A wooden bench overlooking a scenic autumn view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282808.jpg', 'caption': 'The brown bench is in the woods ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224000.jpg', 'caption': 'A flock of sheep crosses a dusty road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224000.jpg', 'caption': 'A herd of sheep being herded down a dusty road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224000.jpg', 'caption': 'People are riding in small vehicles around a flock of sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224000.jpg', 'caption': 'A herd of sheep crossing a dirt road in front of a red car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224000.jpg', 'caption': 'A herd of sheep cross a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171601.jpg', 'caption': 'a large herd of sheep walking down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171601.jpg', 'caption': 'A large herd of sheep are walking down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171601.jpg', 'caption': 'very many sheep moving together at the path', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171601.jpg', 'caption': 'A large herd of sheep covering a section of a road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171601.jpg', 'caption': 'Sheep blocking a dirt road in the country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303026.jpg', 'caption': 'a woman posing on a wooden bench in the woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303026.jpg', 'caption': 'a young woman is posing on a wooden table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303026.jpg', 'caption': 'A woman in white shirt sitting on a park bench next to bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303026.jpg', 'caption': 'A female on some wood posing in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303026.jpg', 'caption': 'A woman sitting on top of a picnic table posing for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314430.jpg', 'caption': 'A red fire hydrant sitting in a parking lot next to a metal post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314430.jpg', 'caption': 'A street level view of a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314430.jpg', 'caption': 'A red fire hydrant on a brick sidewalk next to a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314430.jpg', 'caption': 'Closeup view of a red Chinese fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314430.jpg', 'caption': 'A red fire hydrant seems to have sprung from a bricked sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240800.jpg', 'caption': 'A fire hydrant in front of a graffitti written brick wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240800.jpg', 'caption': 'A fire hydrant has been painted to look like it has a face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240800.jpg', 'caption': 'A vandalized red fire hydrant in front of a brick wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240800.jpg', 'caption': 'Fire hydrant sitting by a brick wall covered in a mural.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240800.jpg', 'caption': 'The fire hydrant sits in front of the grafitti splattered wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191425.jpg', 'caption': 'A black and white picture of a bird flying over a ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191425.jpg', 'caption': 'A mountain under a cloudy sky near the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191425.jpg', 'caption': 'a large bird flying over a mountain and river at sunset', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191425.jpg', 'caption': 'A black and white image of a bird flying over the lake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191425.jpg', 'caption': 'A body of water in front of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524502.jpg', 'caption': 'A fire hydrant is placed in a wooded area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524502.jpg', 'caption': 'A red teddy bear standing in a forest on dry grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524502.jpg', 'caption': 'Picture of a fire hydrant in front of a large group of trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524502.jpg', 'caption': 'Red fire hydrant next to fence and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524502.jpg', 'caption': 'A red fire hydrant placed by a broken fence and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552761.jpg', 'caption': 'A bright yellow fire hydrant sits among landscaping rocks between the sidewalk and the fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552761.jpg', 'caption': 'A yellow fire hydrant next to a sidewalk on a stone ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552761.jpg', 'caption': 'A lone fire hydrant sitting outside a gate alongside a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552761.jpg', 'caption': 'A yellow fire hydrant surrounded by pebbles near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552761.jpg', 'caption': 'A yellow fire hydrant sitting in the middle of a bed of rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164420.jpg', 'caption': 'a red fire hyrdant next to two red poles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164420.jpg', 'caption': 'A red fire hydrant sitting between two red post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164420.jpg', 'caption': 'a red fire hydrant outside in a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164420.jpg', 'caption': 'A picture of a red fire hydrant in the shade. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000164420.jpg', 'caption': 'A red fire hydrant protected by two tall red metal posts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204994.jpg', 'caption': 'a giraffe is looking over a fence at a man in sunglasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204994.jpg', 'caption': 'a giraffe looking at a guy while eating some leaves ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204994.jpg', 'caption': 'A man feeding a giraffe leaves from a deck area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204994.jpg', 'caption': 'a man stands in front of a giraffe ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204994.jpg', 'caption': 'A man looks into an enclosure with giraffes and rhinos inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130619.jpg', 'caption': 'a giraffe with a man sitting in front of the girraffe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130619.jpg', 'caption': 'A view of a giraffe standing behind a man in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130619.jpg', 'caption': 'Two people sit on a bench beside a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130619.jpg', 'caption': 'a man sitting in a chair next to a giraff', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130619.jpg', 'caption': 'A giraffe that is standing near a person sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328504.jpg', 'caption': 'Pair of giraffes standing next to a wooden pole barrier fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328504.jpg', 'caption': 'two giraffes eating some leaves in front of them ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328504.jpg', 'caption': 'A couple of giraffe standing next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328504.jpg', 'caption': 'A couple of giraffes eating out of a feeding bin in a zoo type facility.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328504.jpg', 'caption': 'two giraffes inside of a cage under a cage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173125.jpg', 'caption': 'A fire hydrant that is spewing water in the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173125.jpg', 'caption': 'Water sprays from a fire hydrant on the sidewalk in front of a brick building in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173125.jpg', 'caption': 'An open fire hydrant in an industrial city area squirts water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173125.jpg', 'caption': 'A city street with a brick road and a fire hydrant that has a hose connected to it and it is spraying water into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173125.jpg', 'caption': 'A fire hydrant on a street is spraying water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551315.jpg', 'caption': 'A crowd of people standing near a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551315.jpg', 'caption': 'a fire hydrant surrounded by a large crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551315.jpg', 'caption': 'People stand on a street near a fire hydrant that is leaking. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551315.jpg', 'caption': 'A leaking fire hydrant with groups of people in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551315.jpg', 'caption': 'A large group of people are gatherer together on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278161.jpg', 'caption': 'this school bus is yellow and black with dark windows ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278161.jpg', 'caption': 'A school bus on the road behind a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278161.jpg', 'caption': 'A large yellow school bus on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278161.jpg', 'caption': 'A large yellow school bus driving down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278161.jpg', 'caption': 'a school bus is stuck in traffic behind a truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244005.jpg', 'caption': 'An older white motorhome pulled over on the side of a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244005.jpg', 'caption': 'A van on the side of a two lane road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244005.jpg', 'caption': 'A bus on the side of a desert road..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244005.jpg', 'caption': 'The van with a trailer on the back is parked by the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244005.jpg', 'caption': 'A white van parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536486.jpg', 'caption': 'A large herd of sheep stands on the edge of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536486.jpg', 'caption': 'Flock of white sheep huddled together in a brown field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536486.jpg', 'caption': 'A large herd of sheep walking across a dry grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536486.jpg', 'caption': 'A herd of sheep in a field behind a barbed-wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536486.jpg', 'caption': 'Sheep are gathered together in a dry, grassy fenced-in area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390068.jpg', 'caption': 'People walk on the side of the street past a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390068.jpg', 'caption': 'Pedestrians, cars and buses pass by a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390068.jpg', 'caption': 'People walking down the street doing different things', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390068.jpg', 'caption': 'A crowd of people walk along a sidewalk near a busy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390068.jpg', 'caption': 'A group of people walk alongside a bus in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263011.jpg', 'caption': 'a group of people getting off a parked bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263011.jpg', 'caption': 'People milling around a row of two story busses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263011.jpg', 'caption': 'A group of people are standing beside parked double decker buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263011.jpg', 'caption': 'A group of people are on the grass by busses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263011.jpg', 'caption': 'Rows of double decker busses in grassy area next to people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122051.jpg', 'caption': 'a couple of buildings that has some cars outside of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122051.jpg', 'caption': 'Old fashioned photo of city street with car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122051.jpg', 'caption': 'A car is driving down the street next to a sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122051.jpg', 'caption': 'A traffic direction sign on a street with few cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122051.jpg', 'caption': 'a car drives down a dirty olf rainy road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390569.jpg', 'caption': 'A road and traffic sign that reads \"motorcycles use caution.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390569.jpg', 'caption': 'an orange warning street sign on a metal tripod base on the side walk next to a partially paved, unfinished, street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390569.jpg', 'caption': 'an image of a cautionary construction sign ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390569.jpg', 'caption': 'A sign reading \"Motorcycles Use Caution\" on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390569.jpg', 'caption': 'The sign on the side of the road is telling motorcycles to use caution. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044860.jpg', 'caption': 'A group of sheep standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044860.jpg', 'caption': 'Three sheep in a a grassy field with more sheep in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044860.jpg', 'caption': 'A flock of sheep are on a green sloping field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044860.jpg', 'caption': 'A group of sheep standing in a rocky field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044860.jpg', 'caption': 'sheep look towards the camera as the stand in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483742.jpg', 'caption': 'A couple of sheep standing on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483742.jpg', 'caption': \"A few sheep eating and grazing in someone's yard. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483742.jpg', 'caption': 'Several sheep in a grassy field by a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483742.jpg', 'caption': 'Some sheep are in the grass next to a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483742.jpg', 'caption': 'Animals standing in the green yard of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473171.jpg', 'caption': 'A picture of the sun setting in the trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473171.jpg', 'caption': 'A STOP sign is sitting in front of the yard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473171.jpg', 'caption': 'A stop sign next to other signs on a residential street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473171.jpg', 'caption': 'The stop sign is across the street from a large house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473171.jpg', 'caption': 'A stop sign on the side of a quiet street across from a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072632.jpg', 'caption': 'Two giraffe standing together and looking towards an area of trees and bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072632.jpg', 'caption': 'a couple of giraffes walk next to some trees ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000072632.jpg', 'caption': 'Two giraffes standing in the grass near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072632.jpg', 'caption': 'Two giraffes side by side in the tall grass look into the shaded tree line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072632.jpg', 'caption': ' a couple of giraffes that are walking in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343213.jpg', 'caption': 'The bikes are parked along the side of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343213.jpg', 'caption': 'A family mart store with several bicycles parked outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343213.jpg', 'caption': 'a building with some bikes on the outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343213.jpg', 'caption': 'A busy corner market with many bicycles parked in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343213.jpg', 'caption': 'A corner store has a row of bicycles outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169166.jpg', 'caption': 'A couple of people walking down a sidewalk with stars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169166.jpg', 'caption': 'A row of stars on the Hollywood walk of fame.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169166.jpg', 'caption': 'a couple walking in the rain using and umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169166.jpg', 'caption': 'The sidewalk with stars names on the sidewalk with shops on one side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169166.jpg', 'caption': 'Two people under an umbrella on a wet sidewalk with stars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150576.jpg', 'caption': 'A baby giraffe is lying down in an enclosed grassy area while a larger giraffe is walking around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150576.jpg', 'caption': 'A pair of giraffes standing around in their enclosure. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150576.jpg', 'caption': 'a giraffe walking in a grassy area inside a fenced area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150576.jpg', 'caption': 'An adult giraffe and a baby giraffe in an enclosed field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150576.jpg', 'caption': 'Two giraffes one standing one sitting on green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495541.jpg', 'caption': 'Three white storks with black legs and beaks wading in some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495541.jpg', 'caption': 'A group of birds with large beaks in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495541.jpg', 'caption': 'Three water birds wading and fishing in shallow water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495541.jpg', 'caption': 'Three long legged white birds walking through the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495541.jpg', 'caption': 'several birds are walking in a line through some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458560.jpg', 'caption': 'A good stands in the grass next to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458560.jpg', 'caption': 'The brown duck has a long, dark neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458560.jpg', 'caption': 'A black, grey and white duck on grass area by water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458560.jpg', 'caption': 'A bird that is standing on grass near water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458560.jpg', 'caption': 'A single goose standing on the bank of a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358707.jpg', 'caption': 'A street sign is posted to watch for senior citizens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358707.jpg', 'caption': 'A yellow street sign warns to watch for senior citizens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358707.jpg', 'caption': 'a close up of a street sign with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358707.jpg', 'caption': 'a black and yellow sign and a red and white sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358707.jpg', 'caption': 'A sign that reads \"WATCH FOR SENIOR CITIZENS\" sits on a pole on a residential street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252133.jpg', 'caption': 'A yellow street sign sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252133.jpg', 'caption': 'Two signs on a curb near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252133.jpg', 'caption': 'A sign warns motorists to watch out for older people walking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252133.jpg', 'caption': 'A parking and traffic sign are on the same pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252133.jpg', 'caption': 'A \"No Parking Sign\" sitson top of a \"Watch For Senior Citizens\" sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309264.jpg', 'caption': 'Many cages of birds are stacked at a pet store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309264.jpg', 'caption': 'Stacked bird cages with a variety of birds in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309264.jpg', 'caption': 'Stacks of cages with small birds in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309264.jpg', 'caption': 'Many cages of birds in this pet store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309264.jpg', 'caption': 'A bunch of cages stacked on top of each other mostly of birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564419.jpg', 'caption': 'The animals are in the cages hanging from the wire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564419.jpg', 'caption': 'A group of bird cages sitting next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564419.jpg', 'caption': 'Birdcages in a row adorn a street with Asian writing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564419.jpg', 'caption': 'Several wooden bird cages hanging from a wire ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564419.jpg', 'caption': 'Five birdcages line the deck in this house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533276.jpg', 'caption': 'A little boy dressed up like he is on a safari.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533276.jpg', 'caption': 'A young boy in a hat and boots playing on a lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533276.jpg', 'caption': 'A person stands on the grass with a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533276.jpg', 'caption': 'The little boy is wearing boots and a hat outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533276.jpg', 'caption': 'A young boy dressed in a pit helmet and tall boots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234433.jpg', 'caption': 'a bicycle and parking sign that is upside down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234433.jpg', 'caption': 'The sign on the pole shows bicycles go in a separate direction. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234433.jpg', 'caption': 'a black and white sign on a wood pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234433.jpg', 'caption': 'A sign is posted upside down on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234433.jpg', 'caption': 'A tree in a building has a white sign on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536201.jpg', 'caption': 'outside and cars park on the street and a sign name Duke Ellington Bld', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536201.jpg', 'caption': 'A large red street sign next to a pedestrian traffic signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536201.jpg', 'caption': 'Several street signs appear on a city street post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536201.jpg', 'caption': 'The street sign says Duke Ellington BLVD W 106 st.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536201.jpg', 'caption': 'An intersection on what appears to be a suburb area of a city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383607.jpg', 'caption': 'A green arrow sign pointing up next to a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383607.jpg', 'caption': 'A stop shown is covered by a pole with another sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383607.jpg', 'caption': 'a stop sign and a green and white arrow sign and some cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383607.jpg', 'caption': 'An arrow points traffic forward, in front of a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383607.jpg', 'caption': 'A stop sign is behind a sign with an arrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353866.jpg', 'caption': 'A man wearing a hat while standing next to a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353866.jpg', 'caption': 'a man is standing in a jacket and hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353866.jpg', 'caption': 'A man wearing a hat and jacket stand in the foreground with boats in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353866.jpg', 'caption': 'a black and white photo of a man wearing a hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353866.jpg', 'caption': 'A man standing in front of canoes in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255649.jpg', 'caption': 'Two black horses standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255649.jpg', 'caption': 'Some women are riding their horses and taking a picture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255649.jpg', 'caption': 'A black-and-white photo of two women sitting on horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255649.jpg', 'caption': 'Two women on horses outside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255649.jpg', 'caption': 'two women are sitting on two horses ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208708.jpg', 'caption': 'A light that is above a white sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208708.jpg', 'caption': 'The lamp post has a no parking sign on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208708.jpg', 'caption': 'A light post with a no parking sign posted on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208708.jpg', 'caption': 'Decorative street light with \"no parking\" sign, next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208708.jpg', 'caption': 'An older style light pole with a no parking sign attached to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074465.jpg', 'caption': 'A cargo train is sitting at a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074465.jpg', 'caption': 'A dirty train is riding on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074465.jpg', 'caption': 'A worn and rusty train moving through a freight yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074465.jpg', 'caption': 'A train traveling through a train yard next to a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074465.jpg', 'caption': 'Long train on one of several tracks near a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196355.jpg', 'caption': 'Two young boys on horses wearing pith helmets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196355.jpg', 'caption': 'Two boys in jackets and hats ride horses together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196355.jpg', 'caption': 'Two young boys with hats sit on their horses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196355.jpg', 'caption': 'Two young boys who are riding on horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196355.jpg', 'caption': 'A couple of people on horses on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494620.jpg', 'caption': 'A man that is sitting on a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494620.jpg', 'caption': 'A person on a horse on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494620.jpg', 'caption': 'A child atop a horse in front of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494620.jpg', 'caption': 'A boy is sitting on a horse in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494620.jpg', 'caption': 'A boy sits on top of a thin, small horse in front of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136285.jpg', 'caption': 'A gentleman and child in a vintage picture with a horse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136285.jpg', 'caption': 'A man holding the reigns of a horse on which a little boy sits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136285.jpg', 'caption': 'A man standing next to a horse with a boy on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136285.jpg', 'caption': 'A vintage photo of a boy sitting on a pony that is held by a man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136285.jpg', 'caption': 'A man standing next to a horse being ridden by a young boy. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176193.jpg', 'caption': 'a red white and black sign against a white background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176193.jpg', 'caption': 'a do not enter sign with a sticker of a man on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176193.jpg', 'caption': 'A street sign hanging on a metal hook from a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176193.jpg', 'caption': 'A red sign with a picture of a black stick figure man on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176193.jpg', 'caption': 'A round red sign that shows a silhouette of a person carrying a large white rectangular object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432647.jpg', 'caption': 'Three street signs located next to a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432647.jpg', 'caption': 'Street signs and direction signs are by a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432647.jpg', 'caption': 'A Hawthorne , Derby, and a \"right lane must turn right\" sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432647.jpg', 'caption': 'The two green street names are above another sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432647.jpg', 'caption': 'A group of street signs is displayed by a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393942.jpg', 'caption': 'A railroad crossing sign next to railroad tracks with someone walking on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393942.jpg', 'caption': 'A person walking down an old railroad track ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393942.jpg', 'caption': 'A person walking along train tracks next to crossing guards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393942.jpg', 'caption': 'A filtered photo of a person standing on train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393942.jpg', 'caption': 'A person walks along rail road tracks in a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056983.jpg', 'caption': 'a woman stares as a bird flys through the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056983.jpg', 'caption': 'a woman with eye glasses in front of a pair of birds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056983.jpg', 'caption': 'Two seagulls flying in a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056983.jpg', 'caption': 'Two birds are flying toward each other by a boat mast, with a woman looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056983.jpg', 'caption': 'Two seagulls flying in the light blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170000.jpg', 'caption': 'A person in a hat is riding a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170000.jpg', 'caption': 'A man with a hat sitting on top of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170000.jpg', 'caption': 'A man wearing a hat riding a horse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170000.jpg', 'caption': 'person on a horse poses for photograph in front of a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170000.jpg', 'caption': 'A man sits on top of a large horse and has his picture taken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289943.jpg', 'caption': 'A white street sign hanging from the side of a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289943.jpg', 'caption': 'A street sign has been erected with two languages.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289943.jpg', 'caption': 'A street sign in multiple languages with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289943.jpg', 'caption': 'A street sign that is in a foreign language.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289943.jpg', 'caption': 'a street sign written in english and arabic ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286021.jpg', 'caption': 'A train engine is sitting at a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286021.jpg', 'caption': 'A large long train on a steel track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286021.jpg', 'caption': 'Locomotive on track with official seal displayed on side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286021.jpg', 'caption': 'A train is traveling down the railroad tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286021.jpg', 'caption': 'A train that is is sitting on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026201.jpg', 'caption': 'A large building with two white towers with a crowd of people next to it..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026201.jpg', 'caption': 'An old black and white photo with street car wires in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026201.jpg', 'caption': 'A SCENE OF A STREET WITH CARRIAGES AND A BIKE BOY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026201.jpg', 'caption': 'An old black and white photo shows a town from a long time ago. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026201.jpg', 'caption': 'A building and a young boy with a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400202.jpg', 'caption': 'A yellow double decker bus on street next to buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400202.jpg', 'caption': 'A trail car going down a street lined with buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400202.jpg', 'caption': 'A city street has a orange double deck bus on it and signs with Asians writing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400202.jpg', 'caption': 'Yellow trolly centered with foreign signs and tall skyscrapers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400202.jpg', 'caption': 'A city street that also has tracks for a trolley. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081264.jpg', 'caption': 'A black and white train passing over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081264.jpg', 'caption': 'an image of a train traveling over a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081264.jpg', 'caption': 'very long train going across a bridge over water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081264.jpg', 'caption': 'A long freight train crossing on a bridge over the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081264.jpg', 'caption': 'A train traveling across a large bridge over water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507550.jpg', 'caption': 'A flock of birds standing on top of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507550.jpg', 'caption': 'Birds on a small island on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507550.jpg', 'caption': 'A close up of several birds feeding in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507550.jpg', 'caption': 'some birds are standing by a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507550.jpg', 'caption': 'Ducks are enjoying the water off of the shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194499.jpg', 'caption': 'A little boy wearing a hat and leather boots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194499.jpg', 'caption': 'Small boy in dress clothing sitting down on a white bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194499.jpg', 'caption': 'An old photograph of a smiling boy in high leather boots and a wool coat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194499.jpg', 'caption': 'A young boy sitting on a white bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194499.jpg', 'caption': 'an image of a boy sitting on a bench posing for a photo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274606.jpg', 'caption': 'A red and black train traveling through a grass covered countryside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274606.jpg', 'caption': 'Train blowing smoke as it comes around the bend of the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274606.jpg', 'caption': 'A steam train runs next to power lines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274606.jpg', 'caption': 'A large long train on a steel track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274606.jpg', 'caption': 'a black and red trains engine is pulling its train cars ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186950.jpg', 'caption': 'A train with many cars is rolling on the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186950.jpg', 'caption': 'A \"steam rail\" train steaming across a track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186950.jpg', 'caption': 'A train is coming downt he track and it is full of steam.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186950.jpg', 'caption': 'a black and red steam rail train riding on a train track ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186950.jpg', 'caption': 'A train riding past trees in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035826.jpg', 'caption': 'A train sitting in front of a tin building and a dry grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035826.jpg', 'caption': 'two train engines sit back to back on a track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035826.jpg', 'caption': 'A train on a track near a field with tall grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035826.jpg', 'caption': 'An old train engine and caboose are parked in the train yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035826.jpg', 'caption': 'An old railroad engine at a railway yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267628.jpg', 'caption': 'A train traveling down tracks near a rural area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267628.jpg', 'caption': 'A red train chugs over tracks under wires. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267628.jpg', 'caption': 'Two red train engines pull the passenger train through the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267628.jpg', 'caption': 'A train that is on a track under some wires.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267628.jpg', 'caption': 'a red and yellow trains engine is pulling its cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165697.jpg', 'caption': 'A yellow and red train traveling down train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165697.jpg', 'caption': 'A TRAIN IS COMING THROUHG ON THE TRACKS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165697.jpg', 'caption': 'A yellow and red train is traveling down the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165697.jpg', 'caption': 'The long train is passing through an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165697.jpg', 'caption': 'A train makes its way down a train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513692.jpg', 'caption': 'One of the blues brothers characters as a statue . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513692.jpg', 'caption': 'a statue of a person wearing a hat and glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513692.jpg', 'caption': 'a picture of a statue of a man with a microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513692.jpg', 'caption': 'A statue of a blues brother holding a microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513692.jpg', 'caption': 'Person in front of restaurant window with hat, glasses, tie and holding a microphone to mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144715.jpg', 'caption': 'Locomotive pulling cars on tracks in outdoor area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144715.jpg', 'caption': 'A train on the tracks with smoke coming out the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144715.jpg', 'caption': 'A train sitting on top of train tracks near forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144715.jpg', 'caption': 'A train travelling on a track passing two white gates while smoke is coming from it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144715.jpg', 'caption': 'An old fashioned steam engine with cars attached.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006180.jpg', 'caption': 'A train traveling through a forest with tall trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006180.jpg', 'caption': 'A paasanger train is coming down the track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006180.jpg', 'caption': 'A long train riding through a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006180.jpg', 'caption': 'A train making its way down the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006180.jpg', 'caption': 'A small train on train tracks next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513765.jpg', 'caption': 'A group of children sit at a craft table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513765.jpg', 'caption': 'Children sitting at a table with paper hats on their heads. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513765.jpg', 'caption': 'Some kids at a birthday party having cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513765.jpg', 'caption': 'A group of kids sitting at a table together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513765.jpg', 'caption': 'A black and white photo of three children around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389206.jpg', 'caption': 'The boy is wearing a party hat, and entertaining the table with his noisemaker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389206.jpg', 'caption': 'A young boy who is wearing a tiny hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389206.jpg', 'caption': 'A young boy wearing a small hag and holding something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389206.jpg', 'caption': 'a kid at a birthday party with something in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389206.jpg', 'caption': 'A young man with a little hat is wearing a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391158.jpg', 'caption': 'A beautiful old steam locomotive in the railhouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391158.jpg', 'caption': 'A steam engine train sits in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391158.jpg', 'caption': 'a large train is pulled into a tunnel of brick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391158.jpg', 'caption': 'A black train parked next to a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391158.jpg', 'caption': 'A large long train on a steel track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511623.jpg', 'caption': 'An antique train with green engine and red passenger cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511623.jpg', 'caption': 'A green and red train with smoke coming from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511623.jpg', 'caption': 'A green and red train traveling down train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511623.jpg', 'caption': 'An old train travelling on a railroad and going away. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511623.jpg', 'caption': 'A train engine bellowing smoke from it riding down a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316672.jpg', 'caption': 'a train on a train track near many trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316672.jpg', 'caption': 'A steam train traveling through a landscaped area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316672.jpg', 'caption': 'A train traveling down tracks next to a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316672.jpg', 'caption': 'A train that is sitting on the tracks with smoke coming out of the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316672.jpg', 'caption': 'A red train travels on a track and pulls several cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199257.jpg', 'caption': 'a green sign on a pole with a street light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199257.jpg', 'caption': 'Street signage directs traffic moving right along Broadway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199257.jpg', 'caption': 'a pole that has a sign on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199257.jpg', 'caption': 'A street with a stoplight on the yellow light. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199257.jpg', 'caption': 'A picture of a traffic sign that says no turn on red arrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547760.jpg', 'caption': 'Two street signs with Chinese lettering on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547760.jpg', 'caption': 'Two street signs, one with the street name in two languages and the other with a cartoon police officer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547760.jpg', 'caption': 'Signs showing different street signs on the corner of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547760.jpg', 'caption': 'Advertisements in an Asian language in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547760.jpg', 'caption': 'Street signs with a cartoon policeman in Shanghai', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287099.jpg', 'caption': 'A street sign is at an intersection by tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287099.jpg', 'caption': 'the back of a stop sign on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287099.jpg', 'caption': 'The stop sign is located in an industrial area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287099.jpg', 'caption': 'A street sign on top of a stop sign along country road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287099.jpg', 'caption': 'Street signs on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087354.jpg', 'caption': 'A set of train tracks with a street sign next to them that reads 34th Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087354.jpg', 'caption': 'Railroad tracks and power lines along 34th Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087354.jpg', 'caption': 'A sign reads 34th street near a train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087354.jpg', 'caption': 'There is a long stretch of empty train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087354.jpg', 'caption': 'The train tracks run through 34th street, according to the sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245051.jpg', 'caption': 'A street sign sitting along side of train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245051.jpg', 'caption': 'A white street sign next to train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245051.jpg', 'caption': 'The street sign is clearly posted for us to see. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245051.jpg', 'caption': 'A sign is shown next to the train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245051.jpg', 'caption': 'a street sign near a rail road crossing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194407.jpg', 'caption': 'A train engine traveling down train tracks through a countryside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194407.jpg', 'caption': 'An old-fashioned train riding on the train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194407.jpg', 'caption': 'A train is riding on the tracks into a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194407.jpg', 'caption': 'Old style train on the tracks in the sun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194407.jpg', 'caption': 'A very small train on a empty train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517967.jpg', 'caption': 'A picture that has a lady with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517967.jpg', 'caption': 'A painting of a woman sitting in a chair with a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517967.jpg', 'caption': 'there is a picture of a woman holding a lap top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517967.jpg', 'caption': 'A picture of a woman in a good frame', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517967.jpg', 'caption': 'The portrait is anachronistic in that a Victorian lady is photographed with a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108353.jpg', 'caption': 'A small bird sitting on a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108353.jpg', 'caption': 'Yellow bird staring off in distance on tree branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108353.jpg', 'caption': 'A small bird standing on a wooden branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108353.jpg', 'caption': 'An angry looking yellow bird on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108353.jpg', 'caption': 'The yellow bird is waiting for its mate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518604.jpg', 'caption': 'A large bird sitting on top of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518604.jpg', 'caption': 'A green, yellow and grey bird perched on top of a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518604.jpg', 'caption': 'A green bird is sitting on top of a branch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518604.jpg', 'caption': 'a bird stands on top of a wooden stick ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518604.jpg', 'caption': 'A portrait of a small bird perched on a tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116951.jpg', 'caption': 'A train driving on the tracks near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116951.jpg', 'caption': 'A steam train carrying a lot of people is going down the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116951.jpg', 'caption': 'An older style steam engine is pulling a short line of passenger cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116951.jpg', 'caption': 'A train traveling through a lush green forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116951.jpg', 'caption': 'A train moves along a quiet country railroad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114235.jpg', 'caption': 'A train with smoke coming into the train depot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114235.jpg', 'caption': 'A train coming down the track blowing steam', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114235.jpg', 'caption': 'A TRAIN EMITTING SMOKE WHILE MOVING IN A FOREST-LIKE PLACE.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114235.jpg', 'caption': 'An old fashioned steam engine chugging on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114235.jpg', 'caption': 'A locomotive train is passing by a switch point. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552752.jpg', 'caption': 'A man hangs off a stationary train indoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552752.jpg', 'caption': 'A man holds onto the side of a train inside a museum.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552752.jpg', 'caption': 'A man holding onto the side of a train in a museum. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552752.jpg', 'caption': 'A man holds on to a train car inside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552752.jpg', 'caption': 'There is a man standing alone side of a train ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268745.jpg', 'caption': 'A woman waiting on the subway to disperse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268745.jpg', 'caption': 'A blue train parked at an indoor station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268745.jpg', 'caption': 'A lady is walking past a train that cannot be boarded.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268745.jpg', 'caption': 'A lady walking pas a train in motion. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268745.jpg', 'caption': 'A lady is walking along side a blue train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448786.jpg', 'caption': 'a train that is on a train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448786.jpg', 'caption': 'This is a plane from the front view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448786.jpg', 'caption': 'a japanese bullet train is in a docking station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448786.jpg', 'caption': 'A modern train on a rail line near a station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448786.jpg', 'caption': 'A white and blue train pulling into the train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101031.jpg', 'caption': 'A city area with various signage and busses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101031.jpg', 'caption': 'a city street with moving cars and buses and lined with advertisement billboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101031.jpg', 'caption': 'Advertising and traffic clutter a busy city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101031.jpg', 'caption': 'Singage and street vehicles in crowded metropolitan area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101031.jpg', 'caption': 'an image of busy street sign scene ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503939.jpg', 'caption': 'A blue and yellow train coming to a stop at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503939.jpg', 'caption': 'A blue and yellow train loading and unloading', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503939.jpg', 'caption': 'a blue yellow and white train at a station and some people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503939.jpg', 'caption': 'A blue and yellow train, is stationary on the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503939.jpg', 'caption': 'A person is waiting for a train at the station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342051.jpg', 'caption': 'a man is standing next to a stop sign outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342051.jpg', 'caption': 'A stop sign and people on the street in front of a double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342051.jpg', 'caption': 'A stop sign and traffic cones are in the middle of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342051.jpg', 'caption': 'A man standing next to a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342051.jpg', 'caption': 'A stop sign with people walking down the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204098.jpg', 'caption': 'An old train moving on a train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204098.jpg', 'caption': 'An old green steam engine in the country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204098.jpg', 'caption': 'An antique coal powered train on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204098.jpg', 'caption': \"A locomotive on tacks with smoke coming out of it's stack.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204098.jpg', 'caption': 'A train riding down train tracks in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379183.jpg', 'caption': 'A green train is rolling down the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379183.jpg', 'caption': 'A steam engine train travels down a country track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379183.jpg', 'caption': 'A train coming steadily down the tracks, with smoke coming out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379183.jpg', 'caption': 'a train makes its way through a grass area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379183.jpg', 'caption': 'A steam train with cars traveling through the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470882.jpg', 'caption': 'A stop sign with words substituted for each of the letters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470882.jpg', 'caption': 'A stop sign is posted on the wooden pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470882.jpg', 'caption': 'a stop sign that is nailed to a big pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470882.jpg', 'caption': 'A stop sign is being used as an acronym. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470882.jpg', 'caption': 'There is a stop sign on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457491.jpg', 'caption': 'A fast train crossing over a small bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457491.jpg', 'caption': 'A train traveling a trussle over a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457491.jpg', 'caption': 'A passenger train going across a bridge over water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457491.jpg', 'caption': 'a train traveling over a river on a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457491.jpg', 'caption': 'A train crossing a bridge over a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178911.jpg', 'caption': 'a public transit train on a train track with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178911.jpg', 'caption': 'A small commuter train pulling into the train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178911.jpg', 'caption': 'A train is stopped next to a station platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178911.jpg', 'caption': 'A commuter train driving past a tall building surrounded by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178911.jpg', 'caption': 'A passanger train pulling to a stop at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076513.jpg', 'caption': 'The train could be going as fast as lightning', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076513.jpg', 'caption': 'A silver and red train traveling down the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076513.jpg', 'caption': 'A train moving down a track in the open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076513.jpg', 'caption': 'A train on a track that runs along a hill side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076513.jpg', 'caption': 'A bullet train is traveling by a hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216972.jpg', 'caption': 'A stop sign is fashioned into a snack store sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216972.jpg', 'caption': 'A stop sign calling out a snack bar beneath a three-masted ship display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216972.jpg', 'caption': 'A DECORATIVE SNACK SHOP THAT LOOKS LIKE A SHIP', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216972.jpg', 'caption': 'some signs for a food place with one looking like a stop sign ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216972.jpg', 'caption': 'A few signs tyring to get people to eat at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279136.jpg', 'caption': 'A stop sign has some graffiti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279136.jpg', 'caption': 'There is a stop sign with spray paint on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279136.jpg', 'caption': \"There is a red and one graffiti'd stop sign.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279136.jpg', 'caption': 'The stop sign has some graffiti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279136.jpg', 'caption': 'A red stop sign that reads \"Clay Rox\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506416.jpg', 'caption': 'A train is travelling on a railroad track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506416.jpg', 'caption': 'A 4-car train is moving along a countryside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506416.jpg', 'caption': 'a train moving on train tracks next to a grass feilds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506416.jpg', 'caption': 'The double train tracks allow trains to come and go.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506416.jpg', 'caption': 'A red train traveling down the tracks past grass and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025747.jpg', 'caption': 'A train is moving along train tracks through the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025747.jpg', 'caption': 'a train travels along a curved forest track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025747.jpg', 'caption': 'An old, short train traveling through a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025747.jpg', 'caption': 'Short traing coming down the tacks in the middle of the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025747.jpg', 'caption': 'a train withe a few rail cars coming down the track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224554.jpg', 'caption': 'A train that is going by some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224554.jpg', 'caption': 'TRAIN WITH WINGS ON FRONT OF IT, TRAVELING DOWN THE TRACKS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224554.jpg', 'caption': 'A train engine with multiple cars attached going down a set of train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224554.jpg', 'caption': 'A train driving down a set of railroad tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224554.jpg', 'caption': 'A train on one of two of the train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290261.jpg', 'caption': 'A train going down the tracks that has just gone under a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290261.jpg', 'caption': 'A set of train tracks with a locomotive train travelling on one set and pulling cars behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290261.jpg', 'caption': 'There is a train traveling down the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290261.jpg', 'caption': 'A red train with several attached train cars passing under an overpass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290261.jpg', 'caption': 'A train that is sitting on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503196.jpg', 'caption': 'A stop sign with road signs sitting on top of it is displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503196.jpg', 'caption': 'Red STOP sign with blue street signs attached to it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503196.jpg', 'caption': 'A stop sign on a pole by some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503196.jpg', 'caption': 'A red stop sign with a Akins Blvd sign above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503196.jpg', 'caption': 'A stop sign with two street signs intersecting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575909.jpg', 'caption': 'The stop sign on the street is vandalized. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575909.jpg', 'caption': 'There is a stop sign with graffiti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575909.jpg', 'caption': 'a red stop sign that is under some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575909.jpg', 'caption': 'A stop sign with the word Hate written on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575909.jpg', 'caption': 'Street sign with a message signed at the bottom of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407570.jpg', 'caption': 'a stop sign sits on a street corner ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407570.jpg', 'caption': 'Somebody replaced the y with a r in an all way stop sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407570.jpg', 'caption': 'A STOP ALL-WAY sign which someone has changed to read \"STOP ALL-WAR\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407570.jpg', 'caption': 'a red stop sign at a street intersection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407570.jpg', 'caption': 'The stop sign on the roads is an all-war stop sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110626.jpg', 'caption': 'A stop sign located at a cross section in a rural area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110626.jpg', 'caption': 'On a country road, a stop sign stands by a white post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110626.jpg', 'caption': 'A stop sign on the corner of a patch of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110626.jpg', 'caption': 'an image of a stop sign that is at the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110626.jpg', 'caption': 'A lonely stop sign on a corner in a remote place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025550.jpg', 'caption': 'People stand in a city street at a rally.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025550.jpg', 'caption': 'A crowd of people on a street with a \"Stop\" sign being held up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025550.jpg', 'caption': 'Large crowd moving together down a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025550.jpg', 'caption': 'A crowd of people marching down a street in front of a red stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025550.jpg', 'caption': 'A sign saying stop is held above a group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263884.jpg', 'caption': 'A large group of trains parked next to each other on railroad tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263884.jpg', 'caption': 'A railroad train yard that is very busy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263884.jpg', 'caption': 'A number of trains entering and exiting a terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263884.jpg', 'caption': 'Many trains are on the busy train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263884.jpg', 'caption': 'A train station with various trains on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414068.jpg', 'caption': 'a train being run on a train track near trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414068.jpg', 'caption': 'A railroad train on the tracks letting off steam', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414068.jpg', 'caption': 'A old coal engine train coming down the railroad track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414068.jpg', 'caption': 'a green and black train engine and its cars on its track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414068.jpg', 'caption': 'A stem engine train traveling through a lush green country side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560675.jpg', 'caption': 'A big train engine with a city skyline behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560675.jpg', 'caption': 'The large train is painted yellow, blue, and grey.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560675.jpg', 'caption': 'A train engine painted blue and yellow is making its way down the track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560675.jpg', 'caption': 'A train moving with a view of a city in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560675.jpg', 'caption': 'A train that is passing by a very large city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327130.jpg', 'caption': 'a train carries people over wooden tracks in a jungle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327130.jpg', 'caption': 'A tourist train with open carriages traveling through a forested area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327130.jpg', 'caption': 'a train that is on a long train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327130.jpg', 'caption': 'A locomotive with three cars filled with people, goes over a wooden bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327130.jpg', 'caption': 'A train traveling over a wooden bridge with people hanging out of the windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403919.jpg', 'caption': 'THIS IS A IMAGE OF A VAN DRIVING DOWN A STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403919.jpg', 'caption': 'A truck labeled as \"horses\" drives down a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403919.jpg', 'caption': 'A truck that says horses on it is on the road near another car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403919.jpg', 'caption': 'A small truck labeled \"Horses\" is driving down the road in the middle of the afternoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403919.jpg', 'caption': 'A black horse truck driving on a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439306.jpg', 'caption': 'A delivery truck is parked while a man is standing in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439306.jpg', 'caption': 'A large moving truck with a giant red and brown throne sitting on the back of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439306.jpg', 'caption': 'The back of a moving truck that has a man standing on a lift with a royalty style chair next to him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439306.jpg', 'caption': 'a man standing next to a chair in the back of a truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439306.jpg', 'caption': 'A man is inside the back of a moving truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451648.jpg', 'caption': 'THERE IS A VAN THAT IS PARKED UNDER A SHED', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451648.jpg', 'caption': 'a truck with a camper attached under an outdoors canopy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451648.jpg', 'caption': 'A small camper truck is parked under a car-port next to a house. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451648.jpg', 'caption': 'A camper on the back of a small truck parked in the driveway of a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451648.jpg', 'caption': 'A white motor home parked under a cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219655.jpg', 'caption': 'a big blue truck sitting on the snow next to some trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219655.jpg', 'caption': 'An old cargo truck parked on a snowy driveway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219655.jpg', 'caption': 'A blue pickup parked in the snow by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219655.jpg', 'caption': 'Old truck sitting in snow near house with trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219655.jpg', 'caption': 'a truck parked on a snow covered street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130966.jpg', 'caption': 'A large black steer walking away with a small stuffed teddy bear in a pile of brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130966.jpg', 'caption': 'A bull walks up to a pile of wood and a teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130966.jpg', 'caption': 'A large black bull with horns standing in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130966.jpg', 'caption': 'An ox and a teddy on a pile of wood with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130966.jpg', 'caption': 'a large bull is standing by some wood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216103.jpg', 'caption': 'A white and gray cat laying underneath an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216103.jpg', 'caption': 'Black and white cat sitting under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216103.jpg', 'caption': 'A cat is nestled under an umbrella on a tile floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216103.jpg', 'caption': 'a cate laying under a black umbrella on the floor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216103.jpg', 'caption': 'A white cat sits under a black open umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552289.jpg', 'caption': 'A black purse and cell phone on a table next to an orange peel and newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552289.jpg', 'caption': 'A cell phone on top of a hand bag laying on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552289.jpg', 'caption': 'a coin purse with a orange peel sitting next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552289.jpg', 'caption': 'A clutch purse and a printed paper with orange peel on top, all atop a wooden surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552289.jpg', 'caption': 'a table that has a few things on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445603.jpg', 'caption': 'An Ox standing in a street while a person rides by on a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445603.jpg', 'caption': 'A large brown cow with horns standing on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445603.jpg', 'caption': 'A bull standing in the street of a city with people riding bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445603.jpg', 'caption': 'A large steer standing in the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445603.jpg', 'caption': 'A man on a bike riding past a large horned animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378823.jpg', 'caption': 'Man herding some skinny cows in a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378823.jpg', 'caption': 'The old man is herding the cows in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378823.jpg', 'caption': 'A man in India herds a number of cows on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378823.jpg', 'caption': 'An older man walking down a street full of cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378823.jpg', 'caption': 'A man walking in the street with a herd of cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463406.jpg', 'caption': 'A truck full of boxes is next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463406.jpg', 'caption': 'The car is travelling beside the truck hauling a load of hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463406.jpg', 'caption': 'a big truck that has a bunch of cardboard on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463406.jpg', 'caption': 'The truck has a large load that its hauling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463406.jpg', 'caption': 'A car that is next to a truck with boxes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018239.jpg', 'caption': 'Several horses are seen milling about this grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018239.jpg', 'caption': 'A few cows grazing grass on a farm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018239.jpg', 'caption': 'cows on the field eating grass besides a factory', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018239.jpg', 'caption': 'Some brown and white horses are separated by stick fences.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018239.jpg', 'caption': 'Some animals grazing in a big grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363887.jpg', 'caption': 'A car that is outside in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363887.jpg', 'caption': 'A old firetruck in a dessert scrap yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363887.jpg', 'caption': 'An old red fire truck parked in rural area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363887.jpg', 'caption': 'An abandoned vintage red convertible fire department truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363887.jpg', 'caption': 'A red rusted ou fire truck parked next to a dry grass covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168031.jpg', 'caption': 'A ca teating green stuff off the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168031.jpg', 'caption': 'A cat eating some grass as another looks on intently.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168031.jpg', 'caption': 'Two grey and white cats in a kitchen area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168031.jpg', 'caption': 'two multi colored cats playing with a leaf on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168031.jpg', 'caption': 'Two young cats eat catnip off of the carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128528.jpg', 'caption': 'A dog wearing a red bag on his shoulder runs in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128528.jpg', 'caption': 'a dog with a pack on his back running through the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128528.jpg', 'caption': 'A dog wearing a doggy life vest is running through the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128528.jpg', 'caption': 'THERE IS A DOG WITH A PACK ON HIS BACK ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128528.jpg', 'caption': 'a dig with a bag on its back runs through the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500723.jpg', 'caption': 'a cat on a chair on the ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500723.jpg', 'caption': 'A cat cleaning itself on an up-side down chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500723.jpg', 'caption': 'A cat licking itself on a broken chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500723.jpg', 'caption': 'The cake is laying down on a chair that toppled over.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500723.jpg', 'caption': 'A cat sitting on top of a broken chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313420.jpg', 'caption': 'A large black bear sitting on to of a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313420.jpg', 'caption': 'THERE IS A STUFF BEAR ON THE WALL.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313420.jpg', 'caption': 'The bear is hanging in the corner of the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313420.jpg', 'caption': 'A large black teddy bear is in the corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313420.jpg', 'caption': 'a black and yellow teddy bear hanging on a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371054.jpg', 'caption': 'A long blue classic truck parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371054.jpg', 'caption': \"An old 1950 's truck is parked in front of a sidewalk.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371054.jpg', 'caption': 'An old pickup truck sits outside among other classic cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371054.jpg', 'caption': 'A pick up truck parked in a lot on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371054.jpg', 'caption': 'a long low truck parked on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153966.jpg', 'caption': 'A cat laying on a blanket in a cage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153966.jpg', 'caption': 'And old cat looks out while inside of a cage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153966.jpg', 'caption': 'a blind cat is sitting in a cage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153966.jpg', 'caption': 'A tiger lay laying on a blanket in a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153966.jpg', 'caption': 'A black and white close up of a car in a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351081.jpg', 'caption': 'This is a gas station with a lot of trucks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351081.jpg', 'caption': 'A truck stop filled with lots of different trucks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351081.jpg', 'caption': 'Service truck parked beside line of tracker trailers under cover. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351081.jpg', 'caption': 'Semis and other commercial trucks lined up at gas pumps.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000412571.jpg', 'caption': 'a round wooden rack with some donuts on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150212.jpg', 'caption': 'A snowboard sitting on a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150212.jpg', 'caption': \"The snow board is propped up on it's end.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150212.jpg', 'caption': 'A snowboard is vertical in the white snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150212.jpg', 'caption': 'A snowboard stuck in the snow standing upright.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150212.jpg', 'caption': 'Looking past a snowboard in the snow to a city beyond', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180662.jpg', 'caption': 'A young child sitting in front of a bowl of dessert holding up two ice cream bars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180662.jpg', 'caption': 'A very cute small kid sitting by a big bowl of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180662.jpg', 'caption': 'A child holding two ice-cream bars in his hands and a large bowl in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180662.jpg', 'caption': 'a little kid that has some kind of food in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180662.jpg', 'caption': 'a young boy holding two chocolate covered popsicles sitting in front of a large dessert bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019957.jpg', 'caption': 'A couple of kids sitting in front of some pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019957.jpg', 'caption': 'Some very cute happy looking kids with some pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019957.jpg', 'caption': 'Someone is handing a child a slice of pizza on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019957.jpg', 'caption': 'a couple of kids are looking at a piece of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019957.jpg', 'caption': 'A couple of kids sitting on the ground with some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504810.jpg', 'caption': 'A plated sandwich and fried potatoes on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504810.jpg', 'caption': 'A large meat sandwich with a side of fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504810.jpg', 'caption': 'a sandwich and french fries on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504810.jpg', 'caption': 'A big sandwich sits on a plate with some french fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504810.jpg', 'caption': 'A sandwich with a side of french fries sits on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255529.jpg', 'caption': 'Some tasty and nice food ready to eat.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255529.jpg', 'caption': 'Many donuts and pastries sit on a tablet with flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255529.jpg', 'caption': 'A table overflowing with many kids of doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255529.jpg', 'caption': 'a bunch of doughnuts are on a table together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255529.jpg', 'caption': 'a table filled with a large supply of assorted donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531433.jpg', 'caption': 'A close-up of a plate of food containing a hamburger and onion rings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531433.jpg', 'caption': 'Fried onions and a beef sandwich on a bun,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531433.jpg', 'caption': 'An order of onion rings on a plate with a hamburger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531433.jpg', 'caption': 'A plate of food that includes a sandwich and onion rings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531433.jpg', 'caption': 'A plate of fried onion rings with a pulled meat sandwich also. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489799.jpg', 'caption': 'Several men on a field playing soccer together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489799.jpg', 'caption': 'a group of boys playing soccer in a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489799.jpg', 'caption': 'young people play soccer on a field of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489799.jpg', 'caption': 'A trio of male soccer players on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489799.jpg', 'caption': 'Young men playing soccer on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396387.jpg', 'caption': 'Large sandwich sitting on white plate with other food on table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396387.jpg', 'caption': 'A grilled ham and cheese is stacked on a plate, accompanied by a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396387.jpg', 'caption': 'A white plate topped with sandwiches next to a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396387.jpg', 'caption': 'A grilled ham and cheese sandwich with egg on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396387.jpg', 'caption': 'A breakfast plate with ham and cheese on toast ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317725.jpg', 'caption': 'Two sugar doughnuts with sprinkles and caramel topping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317725.jpg', 'caption': 'A cup with two sprinkle covered donuts on top of a metal table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317725.jpg', 'caption': 'A small bowl with two dessert balls with sprinkles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317725.jpg', 'caption': 'Two doughnuts with sprinkles sit in a paper cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317725.jpg', 'caption': 'Sprinkled doughnuts sit in a bowl of glaze. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322816.jpg', 'caption': 'a cake with some figures made out of frosting on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322816.jpg', 'caption': 'A cake that has a surfer and palm trees on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322816.jpg', 'caption': 'A cake decorated to look like a sandy beach and the ocean with a toy surfing and toy palm trees on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322816.jpg', 'caption': 'A cake with palm trees, and a person on a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322816.jpg', 'caption': 'A cake that has a figurine surfing on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205101.jpg', 'caption': 'A tray with a cheese and meat sandwich with tater tots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205101.jpg', 'caption': 'The sandwiches, other food, and drinks are on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205101.jpg', 'caption': 'A half sandwich on a plate with tater tots and ketchup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205101.jpg', 'caption': 'A close up of the photographers plate with the half eaten lunch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205101.jpg', 'caption': 'A pub lunch with a sandwich and beer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403710.jpg', 'caption': 'A man standing on beach with a red surfboard under his arm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403710.jpg', 'caption': 'A lone surfer looking out at the waves holding his surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403710.jpg', 'caption': 'a man stands holding a surf board in front of some waves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403710.jpg', 'caption': 'A man holding a surf board looks out into the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403710.jpg', 'caption': 'A surfer stands on the beach watching the waves coming to shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443167.jpg', 'caption': 'people standing on the beach near a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443167.jpg', 'caption': 'People standing on the sand surrounded by towels and surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443167.jpg', 'caption': 'A group of people standing on a sandy beach next to surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443167.jpg', 'caption': 'People are standing around at the beach near surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443167.jpg', 'caption': 'People sitting next to surfboards on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461378.jpg', 'caption': 'A large multi layered cake with candles sticking out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461378.jpg', 'caption': 'A cake is decorated with flowers and flags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461378.jpg', 'caption': 'A party decoration containing flowers, flags, and candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461378.jpg', 'caption': 'A cake decorated with flowers and flags on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461378.jpg', 'caption': 'A layered cake with many decorations on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210342.jpg', 'caption': 'A crowd of people laying on a beach next to surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210342.jpg', 'caption': 'A group of people on the beach in front of a bunch of surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210342.jpg', 'caption': 'a fence with a bunch of surfboards lined up on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210342.jpg', 'caption': 'A group of people on the beach with a row of surfboards in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210342.jpg', 'caption': 'Surfboards lined up behind people on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006417.jpg', 'caption': 'A surfer curls to balance on his board atop the foamy white crest of a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006417.jpg', 'caption': 'A surfer riding the crest of a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006417.jpg', 'caption': 'A person in a wetsuit jumping a wave on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006417.jpg', 'caption': 'A surfer falling off of a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006417.jpg', 'caption': 'a person on a surf board rides on a wave ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366095.jpg', 'caption': 'A group of men carrying surfboards on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366095.jpg', 'caption': 'Three men walk down a beach carrying their surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366095.jpg', 'caption': 'A group of people on the beach with surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366095.jpg', 'caption': 'A group of many people on the beach with surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000366095.jpg', 'caption': 'A group of surfers walking along the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490244.jpg', 'caption': 'a bunch of surfboards are piled up by a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490244.jpg', 'caption': 'a bunch of surf boards standing in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490244.jpg', 'caption': 'surfboards are sitting against the fence at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490244.jpg', 'caption': 'A group of surfboards are stacked up for people to use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490244.jpg', 'caption': 'Guy in sand using his cell phone while multiple surfboards behind him lean up on the hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236866.jpg', 'caption': 'A man walking down a beach with a surfboard in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236866.jpg', 'caption': 'A man with a surfboard is walking by the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236866.jpg', 'caption': 'A man walking along a wet beach near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236866.jpg', 'caption': 'A person walks along the beach carrying an object', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236866.jpg', 'caption': 'Man walking on beach with surfboard near ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259853.jpg', 'caption': 'Well dressed children are enjoying cake at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259853.jpg', 'caption': 'Children sitting at a table eating and drinking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259853.jpg', 'caption': 'Young children in vintage photograph enjoying cake at birthday party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259853.jpg', 'caption': 'young kids sit around the table eating what looks like cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259853.jpg', 'caption': 'Young children sitting around the table eating cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371861.jpg', 'caption': 'Three small piece of fried food on a white plate with writing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371861.jpg', 'caption': 'a cake on a plate on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371861.jpg', 'caption': 'Plate encircled with different old west branding monograms with three pieces of food in the middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371861.jpg', 'caption': 'A white plate with cowboy logos engraved on them with a couple of brownies on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371861.jpg', 'caption': 'There are three pieces of food on the plate printed with cowboy brands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415420.jpg', 'caption': 'A bearded man in glasses is celebrating a birthday. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415420.jpg', 'caption': 'A man looking over a plate of cookies with candles on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415420.jpg', 'caption': 'A group of people are around a birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415420.jpg', 'caption': 'there are many people gathered in the kitchen for a birthday', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415420.jpg', 'caption': 'A man getting ready to blow out candles around a group.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018358.jpg', 'caption': 'a person riding a surf board on a wave ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018358.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018358.jpg', 'caption': 'A man on a surfboard in the crest of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018358.jpg', 'caption': 'A man riding a wave on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018358.jpg', 'caption': 'The man is surfboarding underneath a large wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031699.jpg', 'caption': 'A man kneeling over a white surfboard on the flatbed of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031699.jpg', 'caption': 'A man is touching a surf board in the back of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031699.jpg', 'caption': 'A man working on his surfboard in the back of a pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031699.jpg', 'caption': 'a man with eye glasses doing something to a surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031699.jpg', 'caption': 'A man waxing his surfboard in the back of his truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127068.jpg', 'caption': 'A man holds a surfboard at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127068.jpg', 'caption': 'A man looking at a wooden surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127068.jpg', 'caption': 'Young man peers at his wooden surfboard on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127068.jpg', 'caption': 'A dark haired man holding a wooden surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127068.jpg', 'caption': 'A man examines a surf board that has a label on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145542.jpg', 'caption': 'Two surfers in the water riding the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145542.jpg', 'caption': 'A surfer on top of wave as it breaks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145542.jpg', 'caption': 'A surfer rides a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145542.jpg', 'caption': 'There are two people surfing on a large wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145542.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513189.jpg', 'caption': 'a man is riding on a surfboard at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513189.jpg', 'caption': 'This is a surfer riding a small wave - right to left break.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513189.jpg', 'caption': 'The surfer is riding a wave into shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513189.jpg', 'caption': 'There are two people surfing in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513189.jpg', 'caption': 'Surfer riding a larger wave on the ocean as it starts to break.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006028.jpg', 'caption': 'A group of surfers in wetsuits amid ocean waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006028.jpg', 'caption': 'Many people are waiting for the surf to come in. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006028.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006028.jpg', 'caption': 'People surfing on the ocean in black wetsuits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006028.jpg', 'caption': 'A group of surfers are waiting for a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264279.jpg', 'caption': 'A man riding on top of a surfboard on a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264279.jpg', 'caption': 'A man rides the wave of a surfboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264279.jpg', 'caption': 'a man on a surf board riding a wave in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264279.jpg', 'caption': 'A man is taking it slow on the waves with his board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264279.jpg', 'caption': 'A man on a surfboard riding on the waters waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302252.jpg', 'caption': 'A persons finger is covering the lens while taking a picture of a surfer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302252.jpg', 'caption': 'A surfer in a wetsuit is riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302252.jpg', 'caption': 'In the foreground, two blurry blobs, In most of the shot a large expanse of water holds two wetsuit wearers, seen only from their torsos on up, and a third wetsuit wearer, riding a surfboard on a curl of wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302252.jpg', 'caption': 'a surfer riding a wave, facing away. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302252.jpg', 'caption': 'Surfer in a wet suit surfing on a small wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240287.jpg', 'caption': 'A man with a beard standing on the beach with a surfboard under his right arm and he is looking out into the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240287.jpg', 'caption': 'A man walking near the ocean while holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240287.jpg', 'caption': 'A surfer in a wetsuit with his board on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240287.jpg', 'caption': 'man at the seashore in wetsuit with surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240287.jpg', 'caption': 'A bearded man dressed in black carrying a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059743.jpg', 'caption': 'People holding surfboards while standing in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059743.jpg', 'caption': 'Three surfers are heading into the ocean waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059743.jpg', 'caption': 'Three surfers carry their surfboards out to the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059743.jpg', 'caption': 'Three surfers in wetsuits going in to the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059743.jpg', 'caption': 'Three females walking out onto the ocean with their surfboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279716.jpg', 'caption': 'A bunch of surfers carrying their boards into the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279716.jpg', 'caption': 'surfers walking out in water toward swells to surf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279716.jpg', 'caption': 'Surfers are carrying their boards out into the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279716.jpg', 'caption': 'People walking into the surf carrying surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279716.jpg', 'caption': 'Three people in the water holding surfboards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135424.jpg', 'caption': 'A distant view of a surfer riding the ocean waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135424.jpg', 'caption': 'A woman wearing a wetsuit surfs on a foggy day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135424.jpg', 'caption': 'A lone surfer rides a frothy ocean wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135424.jpg', 'caption': 'A person is surfing a wave in a light fog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135424.jpg', 'caption': 'A picture of a person surfing in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423125.jpg', 'caption': 'A person standing on a surfboard surfing the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423125.jpg', 'caption': 'A female surf boarder coming in from a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423125.jpg', 'caption': 'Surfer upright on a small wave in a cold sea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423125.jpg', 'caption': 'A person riding a wave on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423125.jpg', 'caption': 'A surfer stands on their board as another surfer watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173772.jpg', 'caption': 'Several adults playing soccer in the snow wearing winter clothing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173772.jpg', 'caption': 'A group of kids playing with a ball in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173772.jpg', 'caption': 'Group of people playing soccer in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173772.jpg', 'caption': 'A group of young people playing soccer in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173772.jpg', 'caption': ' A bunch of children wearing winter gear playing ball in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299039.jpg', 'caption': 'A plate with three sandwiches sitting next to shoestring fried potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299039.jpg', 'caption': 'A sandwich on a plate served with chips', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299039.jpg', 'caption': 'A picture of a sandwich with a side of potatos', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299039.jpg', 'caption': 'A plate of food that includes a sandwich and shoe string fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299039.jpg', 'caption': 'a close up of a plate with sandwiches on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042837.jpg', 'caption': 'This is a computer generated image that depicts a surfer riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042837.jpg', 'caption': 'A man catching a large wave with his surfboard.The picture is digital.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042837.jpg', 'caption': 'An avatar surfs a tall wave in a virtual reality world.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042837.jpg', 'caption': 'a drawing of a man riding a surfboard in a big wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042837.jpg', 'caption': 'A guy on a surf board by a very big wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382263.jpg', 'caption': 'A man with a Santa Clause beard kicking a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382263.jpg', 'caption': 'A man is kicking a soccer ball on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382263.jpg', 'caption': 'An older man playing with a soccer ball on a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382263.jpg', 'caption': 'A man is on a field kicking a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382263.jpg', 'caption': 'A man plays with a soccer ball in front of empty bleachers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341132.jpg', 'caption': 'A woman standing over a table next to two other people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341132.jpg', 'caption': 'People standing and sitting around while a woman blows out the candles on her cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341132.jpg', 'caption': 'A GROUP OF PEOPLE AT A TABLE WITH A CAKE IN THE MIDDLE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341132.jpg', 'caption': 'A woman blowing out the candles on her birthday cake at the kitchen table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341132.jpg', 'caption': 'A woman blowing out the candles on a cake on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356028.jpg', 'caption': 'A black and white photo of a dormitory with several beds in rows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356028.jpg', 'caption': 'Antique black and white photograph of a room full of beds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356028.jpg', 'caption': 'A monochrome picture of a dorm with multiple beds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356028.jpg', 'caption': 'a dormitory consisting of many beds lined up along the wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356028.jpg', 'caption': 'there is a large room with many beds in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066685.jpg', 'caption': 'Two surfboards on a beach in an urban setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066685.jpg', 'caption': 'A group of people sit on the beach behind two surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066685.jpg', 'caption': 'A beach with two surf boards sitting on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066685.jpg', 'caption': 'Two surf boards laying in the sand on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066685.jpg', 'caption': 'Two surfboards that are sitting in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531335.jpg', 'caption': 'A woman tucking a child into their bed at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531335.jpg', 'caption': 'A woman tucks a child into their bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531335.jpg', 'caption': 'A mom tucking her child into bed with his favorite stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531335.jpg', 'caption': 'Woman tucking in young child in old photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531335.jpg', 'caption': 'A woman tucks a small boy into bed for the night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242379.jpg', 'caption': 'A strawberry cheesecake on a green plate that is on top of a pink and white cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242379.jpg', 'caption': 'A round plate that has a white and red pie type dessert on it and a light green pitcher behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242379.jpg', 'caption': 'The cheese cake is prepared mixed with strawberries. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242379.jpg', 'caption': 'A cheesecake is sitting on a plate near a teapot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242379.jpg', 'caption': 'A small plate with a cake next to a coffee pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522813.jpg', 'caption': 'Three dimensional rendering of a cat and bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522813.jpg', 'caption': 'A cat standing in a bedroom that is all windows, except for one small wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522813.jpg', 'caption': 'a large neatly made bed with a cat on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522813.jpg', 'caption': 'A bed is on the floor on wooden slats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522813.jpg', 'caption': 'Image of a cat standing next to a chair which is in a room with a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241068.jpg', 'caption': 'A couple of small beds in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241068.jpg', 'caption': 'an old black and white photo of multiple beds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241068.jpg', 'caption': 'Black and white photograph of three beds and two nightstands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241068.jpg', 'caption': 'This room has three beds and two night stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241068.jpg', 'caption': 'Two bed-like structures in some room and one of them with a blanket on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173081.jpg', 'caption': 'Multiple beds stand on hardwood floors in a simple room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173081.jpg', 'caption': 'Four empty beds are shown made up inside a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173081.jpg', 'caption': 'there are four small beds all in the same room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173081.jpg', 'caption': 'Several neatly made beds in an empty room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173081.jpg', 'caption': 'A room with four beds placed in various positions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484627.jpg', 'caption': 'A room filled with single beds and tow large walls of windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484627.jpg', 'caption': 'A room full of windows and small beds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484627.jpg', 'caption': 'A large white room with many beds and windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484627.jpg', 'caption': 'AN OLD PHOTO OF A HOSPITAL WITH BEDS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484627.jpg', 'caption': 'An old photo of empty beds at a hospital ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546188.jpg', 'caption': 'A surfer in a black wetsuit rides a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546188.jpg', 'caption': 'Surfer wearing a wet suit riding on top of a wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546188.jpg', 'caption': 'A surfboard rider rides a small sized wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546188.jpg', 'caption': 'a man surfing a tide in the ocean water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546188.jpg', 'caption': 'A woman rides a wave on her surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079495.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079495.jpg', 'caption': 'a man that is on a surfboard on some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079495.jpg', 'caption': 'a surfer surfs through waves while holding his hand in the water of the wave curling over him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079495.jpg', 'caption': 'Man on surfboard riding wave in open ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079495.jpg', 'caption': 'a man is surfing through a giant wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401901.jpg', 'caption': 'A pair of children kick a ball together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401901.jpg', 'caption': 'Black and white photograph of two boys playing soccer in bricked off area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401901.jpg', 'caption': 'An early picture of two young boys playing soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401901.jpg', 'caption': 'A black and white picture of two boys playing kickball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401901.jpg', 'caption': 'A couple of young boys kicking around a basket ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543347.jpg', 'caption': 'A young man reaches for a basketball on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543347.jpg', 'caption': 'A man about to kick a soccer ball in a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543347.jpg', 'caption': 'A man playing with a ball on a basketball court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543347.jpg', 'caption': 'A young man playing a ball game on a cement basketball court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543347.jpg', 'caption': 'A man on an outdoor basketball court going to get a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046433.jpg', 'caption': 'Two boys in beds with a bookcase in between them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046433.jpg', 'caption': 'Two children in a black and white photo sitting up in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046433.jpg', 'caption': 'two boys in their beds with a bookcase between them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046433.jpg', 'caption': 'Two young boys use a book shelf as an arm rest while in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046433.jpg', 'caption': 'Two boys are sitting upright in bed near a nightstand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374576.jpg', 'caption': 'A room with a bed and some windows in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374576.jpg', 'caption': 'The sun is shining through a bedroom window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374576.jpg', 'caption': 'A set of beds sitting inside of a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374576.jpg', 'caption': 'A rustic trundle bead in a wooden cabin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374576.jpg', 'caption': 'a large bed in a windowed wood cabin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004916.jpg', 'caption': 'Two small young girls hold hands as they look into a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004916.jpg', 'caption': 'A black and white photograph of two girls looking at a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004916.jpg', 'caption': 'Two girls come to say good morning to their grandma.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004916.jpg', 'caption': 'A girl is standing next to a boy and looking ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004916.jpg', 'caption': 'Black and white photograph of two children holding hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097592.jpg', 'caption': 'some kids in a bedroom with a lot of beds in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097592.jpg', 'caption': 'a vintage photo of some kids playing on a bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097592.jpg', 'caption': 'Children look on in a small room with many beds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097592.jpg', 'caption': 'Children in a room with many beds ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097592.jpg', 'caption': 'a room with a bunch of beds in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367905.jpg', 'caption': 'A man in black shirt falling off of a surfboard in ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367905.jpg', 'caption': 'A surfer wiping out as a wave closes its curl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367905.jpg', 'caption': 'a man wipes out as he is consumed by a wave ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367905.jpg', 'caption': 'A person is crashing into the waves as they roll. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367905.jpg', 'caption': 'A wave pushes a surfer off his surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316995.jpg', 'caption': 'A man walking down a beach holding a surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316995.jpg', 'caption': 'A man walking on the sand carrying a surf board under his arm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316995.jpg', 'caption': 'a person holding a surf board on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316995.jpg', 'caption': 'A life guard walking with his surf board on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316995.jpg', 'caption': 'A guy walking the beach carrying a surfboard that says \"surf rescue\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330920.jpg', 'caption': 'a person is walking with a surfboard along the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330920.jpg', 'caption': 'Man walking through shallow water holding a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330920.jpg', 'caption': 'A person carrying a surfboard out of the water to the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330920.jpg', 'caption': 'A surf boarder walks out of the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330920.jpg', 'caption': 'A woman in a wetsuit is carrying her surfboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029793.jpg', 'caption': 'Two young people laying in two beds in a bedroom under blankets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029793.jpg', 'caption': 'Two women in bed in an early hospital.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029793.jpg', 'caption': 'A PHOTO OF TWO CHILDREN IN A HOSPITAL BED ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029793.jpg', 'caption': 'Two ladies are lying in their beds while the window is open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029793.jpg', 'caption': 'An old scene of two kids in an old hospital.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118366.jpg', 'caption': 'A person that is laying down on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118366.jpg', 'caption': 'The person is in the water underneath a wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118366.jpg', 'caption': 'a person surfing on very strong waves in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118366.jpg', 'caption': 'An animal swimming through a rolling blue wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118366.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119226.jpg', 'caption': 'A person is holding a surf board in their hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119226.jpg', 'caption': 'a person holding a surfboard while running on the beach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119226.jpg', 'caption': 'A surfer wearing a wetsuit running down the beach with his board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119226.jpg', 'caption': 'A person on a beach with a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119226.jpg', 'caption': 'a man jogging on a rocky beach with his surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506943.jpg', 'caption': 'A bed with the covers turned down, a tall wooden headboard, and a bedside table with a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506943.jpg', 'caption': 'A bed in a room with the sheets pulled back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506943.jpg', 'caption': 'A bed with a pillow and blanket on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506943.jpg', 'caption': 'The room is illuminated by a lamp with a square shade. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506943.jpg', 'caption': 'a bright lamp sitting next to a big bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133876.jpg', 'caption': 'A lady is in the hospital and sitting in a chair smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133876.jpg', 'caption': 'a lady sitting in a chair in the hospital', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133876.jpg', 'caption': 'Woman with an I.V. in her arm reclining in a hospital room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133876.jpg', 'caption': 'A smiling woman reclining in a hospital bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133876.jpg', 'caption': 'A smiling woman sitting up in a hospital bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083110.jpg', 'caption': 'A man sitting in a hospital bed hooked up to an IV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083110.jpg', 'caption': 'A man in white gown sitting on the edge of a hospital bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083110.jpg', 'caption': 'A man hooked up to medical machinery looks at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083110.jpg', 'caption': 'A man sitting in a hospital bed, connected to wires.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083110.jpg', 'caption': 'there is a man with a hospital robe on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476939.jpg', 'caption': 'two medical professionals inside of an hospital. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476939.jpg', 'caption': 'There are two people in a hospital room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476939.jpg', 'caption': 'Two professionals in scrubs are looking at a file.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476939.jpg', 'caption': 'A man and a women wearing scrubs standing in a hospital room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476939.jpg', 'caption': 'A woman standing next to a man in a hospital room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031281.jpg', 'caption': 'A surfer carries his surfboard beneath a tall cliff', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031281.jpg', 'caption': 'A man carrying a surfboard is walking among the high rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031281.jpg', 'caption': 'man with surfboard standing next to giant rock face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031281.jpg', 'caption': 'a person is holding a surfboard near a cliff base', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031281.jpg', 'caption': 'a man holding a surfboard and walking next to a cliff', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261587.jpg', 'caption': 'a girl on a board riding along a boat in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261587.jpg', 'caption': 'a person riding s surf board and holding a parachute ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261587.jpg', 'caption': 'A woman that is standing on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261587.jpg', 'caption': 'A person who is on the lake water skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000261587.jpg', 'caption': 'water skier in the lake trying to avoid rock ahead', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537905.jpg', 'caption': 'A man water skiing behind a boat on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537905.jpg', 'caption': 'Someone riding a surf board while being towed behind a boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537905.jpg', 'caption': 'A man hangs onto a boat with a wake board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537905.jpg', 'caption': 'A person is being pulled on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537905.jpg', 'caption': 'a person riding a surf board holding a tether ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494273.jpg', 'caption': 'A boy sitting in a chair with a stuffed animal in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494273.jpg', 'caption': 'A young child sitting in a chair with a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494273.jpg', 'caption': 'A black and white photo shows a child with a large stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494273.jpg', 'caption': 'An old black and white photo of a boy in a chair holding a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494273.jpg', 'caption': 'Small boy sitting in chair holds a stuffed toy almost same size as him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357870.jpg', 'caption': 'An empty desk chair next to a laptop computer sitting on a white desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357870.jpg', 'caption': 'A small desk with a laptop on it, next to a brown chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357870.jpg', 'caption': 'An usused laptop sits upon a clean desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357870.jpg', 'caption': 'A simple computer disk and chair with a laptop and mouse on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357870.jpg', 'caption': 'A desk holds a laptop, mouse, modem, and a lamp and there is a brown chair in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436636.jpg', 'caption': 'A group of surfers in the water trying to catch a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436636.jpg', 'caption': 'A group of people in the ocean on their surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436636.jpg', 'caption': 'Six people are in the ocean and most of them are on surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436636.jpg', 'caption': 'A group of people riding on different styles of boards on the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436636.jpg', 'caption': 'A group of people are just beginning to learn how to surf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287828.jpg', 'caption': 'A young woman in a bikini in the ocean with her surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287828.jpg', 'caption': 'several people with their surf boards surfing on the ocean ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287828.jpg', 'caption': 'A woman surfing at the beach during a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287828.jpg', 'caption': 'Woman walking across the beach with her surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287828.jpg', 'caption': 'A woman wading through shallow water with a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314689.jpg', 'caption': 'A group of young children sitting on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314689.jpg', 'caption': 'Four small children all on the same bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314689.jpg', 'caption': 'a few little kids that are on a big bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314689.jpg', 'caption': 'A group of four children sitting on a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314689.jpg', 'caption': \"Four small children playing on their parent's bed.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387567.jpg', 'caption': 'an image of a person slicing pizza with a knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387567.jpg', 'caption': 'Someone cutting a piece of thin crust cheese pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387567.jpg', 'caption': 'Two hands cutting some food on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387567.jpg', 'caption': 'Person using a butter knife to cut a cheese quesadilla.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387567.jpg', 'caption': 'a person cuts some food with a butter knife ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015386.jpg', 'caption': 'A large bed sitting next to a small Christmas Tree surrounded by pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015386.jpg', 'caption': 'There is a small stuffed doll laying on the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015386.jpg', 'caption': 'A bed with four square wooden posts with balls on top and a striped Christmas stocking lying on it, with a decorated Christmas tree beside the bed, a corner wall single shelf, and four framed photos on wall in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015386.jpg', 'caption': 'a bed room with a bed a christmas tree and pictures on a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015386.jpg', 'caption': 'The Christmas tree in the bedroom is next to a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250345.jpg', 'caption': 'a pizza with a variety of toppings in a box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250345.jpg', 'caption': 'A picture of a pizza that was delivered.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250345.jpg', 'caption': 'There is a small pizza with toppings on it in a box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250345.jpg', 'caption': 'a close up of a pizza on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250345.jpg', 'caption': 'A box of pizza with peppers, onions and sausage on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395514.jpg', 'caption': 'Black and white photo of a family with a dog and females holding tennis rackets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395514.jpg', 'caption': 'a photo of a male and a female children and a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395514.jpg', 'caption': 'a family with some rackets posing for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395514.jpg', 'caption': 'A family who takes tennis very seriously pose with their rackets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395514.jpg', 'caption': 'a group of people and a dog standing in front of a camera with two tennis rackets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437119.jpg', 'caption': 'a small dog is laying on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437119.jpg', 'caption': 'A small dog is lying down on the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437119.jpg', 'caption': 'a dog that is siting on a blanket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437119.jpg', 'caption': 'A brown and black dog laying on a bed with grey sheets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437119.jpg', 'caption': 'Small Yorkie dog laying on a large bed next to a computer with headphones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106356.jpg', 'caption': 'A dog sitting up straight on a bed looking stoic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106356.jpg', 'caption': 'A dog is sitting on a pillow next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106356.jpg', 'caption': 'A dog that is sitting on top of a big pillow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106356.jpg', 'caption': 'A dog sitting between two pillows on a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106356.jpg', 'caption': 'A dog sitting on a bed between two white pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497330.jpg', 'caption': 'A woman sits in a chair holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497330.jpg', 'caption': 'a women that is sitting down with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497330.jpg', 'caption': 'A woman in a tennis outfit poses with her racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497330.jpg', 'caption': 'Woman sitting in a chair while holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497330.jpg', 'caption': 'A woman is posing with a tennis racket for an advertisement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541965.jpg', 'caption': 'A plate of partially-eaten pizza is seen on a restaurant table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541965.jpg', 'caption': 'A pizza sitting on a table near a pitcher of soda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541965.jpg', 'caption': 'A restaurant table with partially eaten pizza and soda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541965.jpg', 'caption': 'The pizza is next to a pitcher of soda in a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541965.jpg', 'caption': 'A pan on a table with lots of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314690.jpg', 'caption': 'A person with their feet up taking a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314690.jpg', 'caption': 'A photo stitch of a room with a sofa, laptop and television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314690.jpg', 'caption': 'A person watches tv in a room with a couch and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314690.jpg', 'caption': 'A person with their feet placed on a coffee table sitting in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314690.jpg', 'caption': 'A living room with a TV and laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295956.jpg', 'caption': 'Two women are playing a game of tennis on a green court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295956.jpg', 'caption': 'Two women playing tennis on the tennis court ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295956.jpg', 'caption': 'Two girls play a game of tennis on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295956.jpg', 'caption': 'Two people playing a game of tennis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295956.jpg', 'caption': 'two people on a tennis court playing a game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345029.jpg', 'caption': 'a female tennis player in a black top playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345029.jpg', 'caption': 'A woman standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345029.jpg', 'caption': 'A female tennis player preparing to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345029.jpg', 'caption': 'a woman is holding a tennis racket on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345029.jpg', 'caption': 'a woman getting ready to reach for a tennis ball on the ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178690.jpg', 'caption': 'A pink upholstered chair is in front of the television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178690.jpg', 'caption': 'A small living room has very little furniture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178690.jpg', 'caption': 'a lounge chair in front of a television set', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178690.jpg', 'caption': 'An easy chair next to a bookshelf and in front of a small tv in cramped quarters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178690.jpg', 'caption': 'A big comfortable chair in front of a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099937.jpg', 'caption': 'Computer desk with two desktops and a television with large mess of wires behind', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099937.jpg', 'caption': 'A messy desk with three screens and cables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099937.jpg', 'caption': 'A desk and entertainment area with multiple monitors, speakers, and consoles has many cords.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099937.jpg', 'caption': 'A television, computer monitors, keyboard, mouse and video devices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099937.jpg', 'caption': 'The three laptop computers are sitting together on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158846.jpg', 'caption': 'A man serving the ball to the opponent in a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158846.jpg', 'caption': 'A man on a tennis court holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158846.jpg', 'caption': 'A crowd watching a professional tennis player serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158846.jpg', 'caption': 'A male tennis player aiming for the ball.\\n ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158846.jpg', 'caption': 'A man in athletic wear preparing to compete.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399968.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399968.jpg', 'caption': 'The man is playing a game of tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399968.jpg', 'caption': 'A Tennis player getting ready to hit the Tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399968.jpg', 'caption': 'A man with a tennis racquet in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399968.jpg', 'caption': 'A man swings his racket on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017449.jpg', 'caption': 'A tennis player in an orange shirt and black shorts holds black tennis racket on a tennis court surrounded by onlookers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017449.jpg', 'caption': 'A man playing tennis while people watch from the stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017449.jpg', 'caption': 'A tennis player holding a tennis racket at tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017449.jpg', 'caption': 'A person stands on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017449.jpg', 'caption': 'A man holding a tennis racquet in his hand standing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158498.jpg', 'caption': 'A tablet sitting on top of a computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158498.jpg', 'caption': 'a keyboard attached to a cell phone on a tray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158498.jpg', 'caption': 'The desk has two drinks and a small computer on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158498.jpg', 'caption': 'An electronic device connected to a computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158498.jpg', 'caption': 'A desk with a mini computer, keyboard, a bottle and a glass of orange juice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550117.jpg', 'caption': 'An older woman sitting at a table in front of a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550117.jpg', 'caption': 'An elderly woman looks to the side as she sits in front of a cheese pizza in a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550117.jpg', 'caption': 'A woman sitting near a table with a large pizza in front of her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550117.jpg', 'caption': 'A woman sits at a table with a pizza in front of her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550117.jpg', 'caption': 'A woman looks away from a pizza at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256221.jpg', 'caption': 'A man wearing a yellow shirt hitting a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256221.jpg', 'caption': 'a person on a tennis court with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256221.jpg', 'caption': 'A tennis player runs in order to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256221.jpg', 'caption': 'Professional tennis player running for the ball during a match', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256221.jpg', 'caption': 'Professional tennis player moving to intercept a ball heading his way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281101.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281101.jpg', 'caption': 'a tennis player finishing a swing in front of an audience\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281101.jpg', 'caption': 'a male in a bright shirt and shorts with a white hat on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281101.jpg', 'caption': 'A tennis player uses his muscles to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281101.jpg', 'caption': 'A man swings a tennis racket as people watch from the stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257443.jpg', 'caption': 'A tennis player is jumping up to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257443.jpg', 'caption': 'A man jumping in the air to hit a tennis ball with his racquet, with onlookers behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257443.jpg', 'caption': 'A tennis player playing tennis on the tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257443.jpg', 'caption': 'A male tennis player jumping and swinging a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257443.jpg', 'caption': 'He jumps up in the air to meet the tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341067.jpg', 'caption': 'there is a male tennis player on the court in a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341067.jpg', 'caption': 'Tennis player getting ready to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341067.jpg', 'caption': 'A tennis player is on the court with his racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341067.jpg', 'caption': 'A man that is standing on a tennis court with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341067.jpg', 'caption': 'a young man is playing a game of tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562994.jpg', 'caption': 'A young man swinging a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562994.jpg', 'caption': 'A man taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562994.jpg', 'caption': 'a male tennis player getting ready to return a serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562994.jpg', 'caption': 'A tennis player on his toes as he returns a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562994.jpg', 'caption': 'A man playing tennis on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346774.jpg', 'caption': 'A woman sitting at a table with a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346774.jpg', 'caption': 'A woman sitting at a table in front of a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346774.jpg', 'caption': 'A table with a plate full of pizza on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346774.jpg', 'caption': 'A young lady with a plate of French fries looks at a pizza with mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346774.jpg', 'caption': 'A woman is at a dining table with a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414529.jpg', 'caption': 'A man is playing tennis with a racket on the tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414529.jpg', 'caption': 'A man in a tennis court holding a tennis racket getting ready to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414529.jpg', 'caption': 'A man on a tennis court in the middle of playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414529.jpg', 'caption': 'a tennis player getting ready to swing a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414529.jpg', 'caption': 'A man with a racket goes to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400317.jpg', 'caption': 'The tennis player perferms in front of a crowd ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400317.jpg', 'caption': 'A man swinging his racket while playing tennis in front of a crowd. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400317.jpg', 'caption': 'TENNIS PLAYER ON COURT GETTING READY TO RETURN THE BALL', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400317.jpg', 'caption': 'A man playing tennis and holding back his racket to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400317.jpg', 'caption': 'A tennis player is getting ready for a shot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466090.jpg', 'caption': 'a female tennis player in a black dress and fans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466090.jpg', 'caption': 'A tennis player in a black suit waving.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466090.jpg', 'caption': 'A woman tennis player is waving at the fans while she holds her tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466090.jpg', 'caption': 'A beautiful young lady holding a tennis racquet on top of a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466090.jpg', 'caption': 'a couple of people that are on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029563.jpg', 'caption': 'A tennis player at a match prepares to return the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029563.jpg', 'caption': 'a tennis player swinging a racket at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029563.jpg', 'caption': 'The strong, athletic tennis player wearing the backwards hat skillfully returns volley, flexing his sinewy, hardened muscles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029563.jpg', 'caption': 'A tennis player swings his racket in front of a large crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029563.jpg', 'caption': 'Tennis player swinging at tennis ball coming towards him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004592.jpg', 'caption': 'a woman with a hat swinging a tennis racquet', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000004592.jpg', 'caption': 'A tennis player leaps in the air as fans observe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004592.jpg', 'caption': 'A tennis player jumping and swinging a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004592.jpg', 'caption': 'The woman is playing tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004592.jpg', 'caption': 'Fans watch as a female tennis player hits a ball during a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579073.jpg', 'caption': 'A man next to a large wall holding a paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579073.jpg', 'caption': 'A young man wearing a pink shirt walking past a very tall wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579073.jpg', 'caption': 'A man is walking away from a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579073.jpg', 'caption': 'A man stands next to a concrete wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579073.jpg', 'caption': 'A man in a soccer jersey walking with a paddle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544794.jpg', 'caption': 'The piece of pizza is ready to be eaten. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544794.jpg', 'caption': 'A slice of pizza with toppings on a plate on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544794.jpg', 'caption': 'A slice of pizza is on a small plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544794.jpg', 'caption': 'A slice of pizza on a plate sitting on a tablecloth covered table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544794.jpg', 'caption': \"A large piece of pizza on a plate that's on a table.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039697.jpg', 'caption': 'A pizza is shown in a box uncovered and cooked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039697.jpg', 'caption': 'A pizza that is cut up is in a box. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039697.jpg', 'caption': 'The pizza with chicken on it looks delicious.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039697.jpg', 'caption': 'A good looking pizza is still in the box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039697.jpg', 'caption': 'Pizza with chicken is overbaked and is in a pizza box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089367.jpg', 'caption': 'A child holding a knife admires a pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089367.jpg', 'caption': 'A young boy is making a silly face while staring at a whole pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089367.jpg', 'caption': 'a little kid freaked out by a big pizza in front of him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089367.jpg', 'caption': 'a young kid sits in front of a pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089367.jpg', 'caption': 'A child looking confused at a pizza on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039630.jpg', 'caption': 'A tennis player in white wearing a white cap holds a red tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039630.jpg', 'caption': 'A professional tennis player holds his racket looking exhausted.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039630.jpg', 'caption': 'a close up of a tennis player holding a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039630.jpg', 'caption': 'Tennis player looking at racket during match play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039630.jpg', 'caption': 'A man with a racket on a tennis court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417668.jpg', 'caption': 'A sub sandwich on a plate with sides.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417668.jpg', 'caption': 'A steak sandwich served with some side entrees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417668.jpg', 'caption': 'A roast beef sandwich with vegetables and sauce on the side sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417668.jpg', 'caption': 'A meat sandwich on a plate with a bowl of dipping sauce on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417668.jpg', 'caption': 'Sandwich on a plate with sauce on side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499755.jpg', 'caption': 'A woman is playing tennis on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499755.jpg', 'caption': 'A tennis player in mid-serve with a backhand swing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499755.jpg', 'caption': 'There is no picture here to describe with a caption.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499755.jpg', 'caption': 'A woman stands in a tennis court, racket in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499755.jpg', 'caption': 'A tennis player is getting ready to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233915.jpg', 'caption': 'a woman is getting ready to strike a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233915.jpg', 'caption': 'A woman holding a tennis racket reaching up to catch the ball with her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233915.jpg', 'caption': 'A woman in a pink dress is about to serve a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233915.jpg', 'caption': 'A woman that is standing on a tennis court with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233915.jpg', 'caption': 'A woman throwing a tennis ball in the air and a racket it her other hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131557.jpg', 'caption': 'A pizza sitting on top of a plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131557.jpg', 'caption': 'A pizza with mushrooms is sitting on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131557.jpg', 'caption': 'a pizza with mushrooms is on a blue yellow and white table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131557.jpg', 'caption': 'A pizza with toppings on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131557.jpg', 'caption': 'A pizza pie with several toppings being served.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131557.jpg', 'caption': 'A close up of a pizza pie on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393864.jpg', 'caption': 'A plate topped with a piece of food sitting net to a paper plate with a knife on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393864.jpg', 'caption': 'A half-eaten pita is sitting on a plate among other dishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393864.jpg', 'caption': 'half of a piece of pizza on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393864.jpg', 'caption': 'A plate sitting on the table with half eaten flatbread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393864.jpg', 'caption': 'This is a scrambled egg omelet on a white plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240731.jpg', 'caption': 'A small pizza sitting on a decorative plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240731.jpg', 'caption': 'A homemade pizza cut in half on a colorful plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240731.jpg', 'caption': 'A large pizza is sitting on a table over a cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240731.jpg', 'caption': 'A white table holding a plate with a pizza on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240731.jpg', 'caption': 'a pizza with several topping cut in half ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286285.jpg', 'caption': 'a desk with container full pens, remotes and other nic nacks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286285.jpg', 'caption': 'A cute pink punk office organizer with a remote in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286285.jpg', 'caption': 'A remote on a table surface in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286285.jpg', 'caption': 'a unique caddy holding various nail supplies', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286285.jpg', 'caption': 'A remote control holder and accessory holder sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308645.jpg', 'caption': 'Person holding up food on a stick of good to a dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308645.jpg', 'caption': 'A person sitting in front a dog holding something in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308645.jpg', 'caption': 'A person with a toothbrush trying to brush a dogs teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308645.jpg', 'caption': 'A man sitting down while brushing his dogs teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308645.jpg', 'caption': 'Someone tries to attach a ribbon to the dog collar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026547.jpg', 'caption': 'Toothbrush sticking up out of water in sink drain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026547.jpg', 'caption': 'An altered photograph of a plastic toothbrush in a smoky ring', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026547.jpg', 'caption': 'A pink and green swirl tooth brush standing upright in a drain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026547.jpg', 'caption': 'An abstract picture of a toothbrush going into a black hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026547.jpg', 'caption': 'a toothbrush submerged in a sink clogged with hair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581338.jpg', 'caption': 'a closeup of a toothbrush on the table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581338.jpg', 'caption': 'A black toothbrush with white bristles sits on a wooden tabletop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581338.jpg', 'caption': 'A black tooth brush sitting on top of a wooden surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581338.jpg', 'caption': 'A black handled toothbrush with new bristles on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581338.jpg', 'caption': 'A black toothbrush with white bristles laying on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461753.jpg', 'caption': 'Group of children holding up toothbrushes posing for picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461753.jpg', 'caption': 'a group of young children holding up toothbrushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461753.jpg', 'caption': 'A group of children show their toothbrushes and toothpaste.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461753.jpg', 'caption': 'A group of kids with some popsicles standing in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461753.jpg', 'caption': 'The children are showing their appreciation for the gifts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246576.jpg', 'caption': 'A young man brushing his teeth in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246576.jpg', 'caption': 'A man is standing while brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246576.jpg', 'caption': 'a man that is brushing his teeth and posing to take a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246576.jpg', 'caption': 'A man making faces while brushing his teeth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246576.jpg', 'caption': 'A boy with messy hair bent over brushing his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557130.jpg', 'caption': 'A group of people trying out the new Nintendo Wii U.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557130.jpg', 'caption': 'A group of young men interacting with their cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557130.jpg', 'caption': 'a group of people standing near each other playing with small devices', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557130.jpg', 'caption': 'The boys stand next to each other using the devices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557130.jpg', 'caption': 'A group of young men holding video game controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037945.jpg', 'caption': 'A young boy holding a toothbrush in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037945.jpg', 'caption': 'A little boy holds a green, blue and yellow toothbrush in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037945.jpg', 'caption': 'A little boy holds a toothbrush in the bath.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037945.jpg', 'caption': 'A small child brushes his teeth in the bath tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037945.jpg', 'caption': 'An up close picture of a child brushing their teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263382.jpg', 'caption': 'A lamp with a red wall with a large clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263382.jpg', 'caption': 'A living area with a clock, lamp and a stone facade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263382.jpg', 'caption': 'Lamp turned un lights up room next to a wall clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263382.jpg', 'caption': 'This lamp is standing near a wall that is painted red.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263382.jpg', 'caption': 'A floor lamp turned on in a dark room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573882.jpg', 'caption': 'A woman with headphones is playing the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573882.jpg', 'caption': 'A woman standing with a remote in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573882.jpg', 'caption': \"Let's dress in all white and play Wii in public!\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573882.jpg', 'caption': 'A woman is standing in front of a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573882.jpg', 'caption': 'The people are playing games behind the fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472364.jpg', 'caption': 'A woman playing a game with some remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472364.jpg', 'caption': 'A person playing a boxing game on a Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472364.jpg', 'caption': 'A woman standing in front of a TV next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472364.jpg', 'caption': 'A woman stands in front of a TV and plays a boxing video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472364.jpg', 'caption': 'A woman is standing in front of a television set with a remote in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334416.jpg', 'caption': 'A child standing in a room with various paintings and a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334416.jpg', 'caption': 'a person standing in a bed room with a bed and a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334416.jpg', 'caption': 'A child plays at a table in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334416.jpg', 'caption': 'a little girl standing by a table in a living room ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334416.jpg', 'caption': 'There is a person that is standing in the living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453824.jpg', 'caption': 'This room is decorated in a simple yet elegant style.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453824.jpg', 'caption': 'A television and some furniture in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453824.jpg', 'caption': 'A typical living room with all the furnishings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453824.jpg', 'caption': 'A living room filled with furniture and a flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453824.jpg', 'caption': 'A central theme of this living room is not easily detected.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151704.jpg', 'caption': 'A man with a beard in a vest plays Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151704.jpg', 'caption': 'a person standing in a room playing nintendo wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151704.jpg', 'caption': 'A man with a beard is playing wii with a pink controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151704.jpg', 'caption': 'A man and boy are standing in the middle of the living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151704.jpg', 'caption': 'A bearded man stands indoors holding a pink wii mote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177496.jpg', 'caption': 'A living room filled with furniture and a wall mounted paintings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177496.jpg', 'caption': 'A couch and chair are in a room with a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177496.jpg', 'caption': 'a red and black suitcase a table a couch and a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177496.jpg', 'caption': 'A suitcase is sitting in a hotel room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177496.jpg', 'caption': 'A suitcase sitting in a living room of a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241301.jpg', 'caption': 'Two men standing up and playing the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241301.jpg', 'caption': 'two males are playing a video game and chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241301.jpg', 'caption': 'A couple of men holding Wii game controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241301.jpg', 'caption': 'Two people playing motion-controlled video games in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241301.jpg', 'caption': 'Two young people holding Wii controllers playing a game in the living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407149.jpg', 'caption': 'A living room scene is shown with a couch and table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407149.jpg', 'caption': 'A living room containing modern art, glass coffee table, a couch, and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407149.jpg', 'caption': 'a living room with a leather couch and a telelvision', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407149.jpg', 'caption': 'a living room with leather couch, zebra print cushions and a glass coffee table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407149.jpg', 'caption': 'A living room with white walls and modern furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504046.jpg', 'caption': 'A young woman is holding a video game steering wheel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504046.jpg', 'caption': 'Young person using white steering game control wheel in room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504046.jpg', 'caption': 'A women who is holding a steering wheel, possibly for a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504046.jpg', 'caption': 'A young woman sits playing with a video game remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504046.jpg', 'caption': 'A woman in black shirt holding a white steering wheel game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268350.jpg', 'caption': 'Girl walking through a living room with a huge leather sectional.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268350.jpg', 'caption': 'a living room with couches a table and a lamp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268350.jpg', 'caption': 'A living room with a large couch and a coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268350.jpg', 'caption': 'A living room filled with lots of furniture and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268350.jpg', 'caption': 'Woman standing behind large white leather couch in modern living area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188460.jpg', 'caption': 'A young man sitting with a laptop computer on his lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188460.jpg', 'caption': 'a man playing a video game as his friend looks at a laptop screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188460.jpg', 'caption': 'A guy on a laptop and a guy holding a Wii remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188460.jpg', 'caption': 'A guy is playing Wii with his friend.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188460.jpg', 'caption': 'A man is playing a video game while his friend is on his laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212553.jpg', 'caption': 'A large living room with a kitchen in the background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212553.jpg', 'caption': 'A view of a living, dining and kitchen area of an apartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212553.jpg', 'caption': 'View of a decorated living room, dining area opening to kitchen area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212553.jpg', 'caption': 'Some Tan furniture in a large home livingroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212553.jpg', 'caption': 'a large living room with a couch, table and chairs and a dining room table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446881.jpg', 'caption': 'Living room arrangement centered around TV and a look into the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446881.jpg', 'caption': 'a living room with a big TV and furniture ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446881.jpg', 'caption': 'A room with a large television and other furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446881.jpg', 'caption': 'a living room with a couch chairs a table and a tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446881.jpg', 'caption': 'A flat screen TV in a living room in front of a brown couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121611.jpg', 'caption': 'A living area with table, chairs and a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121611.jpg', 'caption': 'A living room with a long beige cough, a large ottoman, an easy chair and a dining room set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121611.jpg', 'caption': 'A spacious living room with a couch and foot rests.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121611.jpg', 'caption': 'A kitchen and dining room table and chairs sitting next to a living room with a chair and couch in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121611.jpg', 'caption': 'a living room with a couch a table and chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543364.jpg', 'caption': 'There is a table in the middle of the room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543364.jpg', 'caption': 'A room with a couch, table, lamp and a chaise.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543364.jpg', 'caption': 'A living room with couch, chaise, track lighting, and a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543364.jpg', 'caption': 'A room with large windows, a couch and a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543364.jpg', 'caption': 'A living room with lots of furniture and a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187064.jpg', 'caption': 'A table that has a candle on it in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187064.jpg', 'caption': 'The view of a small living room from up high.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187064.jpg', 'caption': 'a room with a chair coffee table stereo potted plant by a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187064.jpg', 'caption': 'a living room is littered with cozy equipment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187064.jpg', 'caption': 'A clean living room is seen in this picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293852.jpg', 'caption': 'A living room with wooden walls and furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293852.jpg', 'caption': 'There is a man outside the living room doorway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293852.jpg', 'caption': 'A living area with chair, coffee table and tall cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293852.jpg', 'caption': 'The inside of a cabin with the door open and someone outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293852.jpg', 'caption': 'A man is picking something up from outside of his cabin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040602.jpg', 'caption': 'A couple of women playing a game on the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040602.jpg', 'caption': 'Two professional women playing with a Nintendo Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040602.jpg', 'caption': 'Two women in a public place playing on a Wii system.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040602.jpg', 'caption': 'The two woman are playing a video game in the club together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040602.jpg', 'caption': 'Two women playing a video game in a booth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253438.jpg', 'caption': 'A living room filled with furniture and a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253438.jpg', 'caption': 'A living room and kitchen with a fireplace, dining area and alcohol rack in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253438.jpg', 'caption': 'The glass table is set with the dishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253438.jpg', 'caption': 'This depicts a modern, white dining and living area in a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253438.jpg', 'caption': 'An elegant well furnished living and dining room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265648.jpg', 'caption': 'Modern looking living room with white flooring and furnishings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265648.jpg', 'caption': 'A large open living room has many seating options.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265648.jpg', 'caption': 'A big room with a large sectional and a table and kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265648.jpg', 'caption': 'a living room and a kitchen new to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265648.jpg', 'caption': 'A living room, dining room, and kitchen flow gradually into each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089930.jpg', 'caption': 'A Wii remote is in s hand with a thumb on a button', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089930.jpg', 'caption': 'A person holding a small remote in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089930.jpg', 'caption': 'Left hand holding electronic video game controller unit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089930.jpg', 'caption': 'someones hand holding a wii game controller with lights lit up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089930.jpg', 'caption': 'A person is holding a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358658.jpg', 'caption': 'the fully furnished basement looks clean and orderly', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358658.jpg', 'caption': 'this living room has a day bed and a white couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358658.jpg', 'caption': 'A living room with a red/brown area rug, two couches and a large flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358658.jpg', 'caption': 'A empty living room that has couches and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358658.jpg', 'caption': 'A den with couches and a large screen television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546444.jpg', 'caption': 'There are some people relaxing and watching TV', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546444.jpg', 'caption': 'There are some people playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546444.jpg', 'caption': 'In a room two boys are watching television while lying on bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546444.jpg', 'caption': 'Several men comfortably watching television in living area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546444.jpg', 'caption': 'Three guys are sitting in the living room playing the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033835.jpg', 'caption': 'A beautiful woman standing next to a man holding a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033835.jpg', 'caption': 'Two adults playing a video game while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033835.jpg', 'caption': 'A couple of people that are playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033835.jpg', 'caption': 'People happily playing Wii in an office setting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033835.jpg', 'caption': 'four people and two of them are playing avideo game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444565.jpg', 'caption': 'A glass coffee table sits in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444565.jpg', 'caption': 'A nice room in a house that is clean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444565.jpg', 'caption': 'The living room features natural oak furniture with fabrics/carpeting in brightly colored circles and stripes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444565.jpg', 'caption': 'A living room decorated with many loud patterns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444565.jpg', 'caption': 'A living room with a wooden entertainment center.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189588.jpg', 'caption': 'A man holding a game controller for the Nintendo Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189588.jpg', 'caption': 'Two guys are being filmed while playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189588.jpg', 'caption': 'Two men with wii remotes playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189588.jpg', 'caption': 'some people are playing a video game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189588.jpg', 'caption': 'A man in a white shirt plays with a remote while next to a man in a green shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457449.jpg', 'caption': 'The top of the head of a man sitting in front of disorganized computer desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457449.jpg', 'caption': 'A man sitting in front of a wooden desk, filled with papers and a desk top computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457449.jpg', 'caption': 'A man with blonde hair in front of his computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457449.jpg', 'caption': 'A man with blonde hair sitting at a computer desk with a desktop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457449.jpg', 'caption': 'A man looks away from the camera as he sits at his messy desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389429.jpg', 'caption': 'A wine bottle and glass sit on a table in front of a couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389429.jpg', 'caption': 'Living Room with Black Leather Couch and coffee table with Wine Bottle and Wine Glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389429.jpg', 'caption': 'A wine glass and bottle on a black coffee table near a black couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389429.jpg', 'caption': 'A living area with a couch and a small table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389429.jpg', 'caption': 'An empty wineglass next to a bottle of wine in an empty living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570101.jpg', 'caption': 'a living room with a couch a table and large windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570101.jpg', 'caption': 'A couple of couches and a table in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570101.jpg', 'caption': 'A room filled with furniture and lots of windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570101.jpg', 'caption': 'A living room with mirrors and windows overlooking an ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570101.jpg', 'caption': 'The living room is clean and empty of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258996.jpg', 'caption': 'A desk topped with computer monitors and laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258996.jpg', 'caption': 'A desk contains two laptops as well as two PCs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258996.jpg', 'caption': 'An office space with multiple computers ready to use. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258996.jpg', 'caption': 'A computer station with two monitors, keyboards and two laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258996.jpg', 'caption': 'A countertop with several computers, monitors, and keyboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286342.jpg', 'caption': 'A keyboard next to a mouse and some batteries wrapped up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286342.jpg', 'caption': 'A matching computer mouse and keyboard with some batteries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286342.jpg', 'caption': 'Black computer keyboard, mouse and batteries on a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286342.jpg', 'caption': 'A table containing a black mouse and keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286342.jpg', 'caption': 'A wireless mouse sits next to a wireless keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001655.jpg', 'caption': 'A man is holding a cell phone in front of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001655.jpg', 'caption': 'An older man standing on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001655.jpg', 'caption': 'A man looking at a vast mountain landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001655.jpg', 'caption': 'a man looks out into the mountains ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001655.jpg', 'caption': 'A man takes a picture of snowy mountains with his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195211.jpg', 'caption': 'a room showing a screen and a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195211.jpg', 'caption': 'A living room has couches and chairs, as well as a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195211.jpg', 'caption': 'The living room has a fireplace and two couches in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195211.jpg', 'caption': 'a living room with some big couches and a bookshelves by the fireplace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195211.jpg', 'caption': 'A living room with couches, chairs, glass doors, pictures and other things.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289842.jpg', 'caption': 'The woman throws a tennis ball into the air during a serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289842.jpg', 'caption': 'A woman taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289842.jpg', 'caption': 'A women is serving at a tennis match. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289842.jpg', 'caption': 'A female tennis player tosses a ball in the air for a serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289842.jpg', 'caption': 'A woman holding a tennis racket in her hand and throwing a ball in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480173.jpg', 'caption': 'A woman holding a tennis racquet while standing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480173.jpg', 'caption': 'A woman hitting a tennis ball with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480173.jpg', 'caption': 'A female Tennis player is getting ready to take her swing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480173.jpg', 'caption': 'Adult woman swinging her racket as she plays tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480173.jpg', 'caption': 'A tennis player is reaching her racket far into a swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169250.jpg', 'caption': 'A simple apartment living area, with a couch and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169250.jpg', 'caption': 'This is a plain and small living room with a sofa and TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169250.jpg', 'caption': 'A couch sitting in front of a TV near a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169250.jpg', 'caption': 'A small, curtained living room during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169250.jpg', 'caption': 'This simple living room has black furniture and a TV', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333348.jpg', 'caption': 'A night snowy view shows a clock tower lit up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333348.jpg', 'caption': 'A clock tower lit up in the night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333348.jpg', 'caption': 'An illuminated clock tower looks down upon snowy streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333348.jpg', 'caption': 'The pinnacle of the building is illuminated at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333348.jpg', 'caption': 'A beautiful building with alit up clock and snow on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133146.jpg', 'caption': 'A living room with a fire place and a mantel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133146.jpg', 'caption': 'A beige living room with a large fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133146.jpg', 'caption': 'A cozy living room has a chair and fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133146.jpg', 'caption': 'A large living room with a fireplace and a book shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133146.jpg', 'caption': 'A tidy living room interior with lots of memorabilia ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526359.jpg', 'caption': 'A group of couches in a tidy living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526359.jpg', 'caption': 'An assortment of brown furniture in a white living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526359.jpg', 'caption': 'A picture of a very clean living room in the house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526359.jpg', 'caption': 'A living room scene complete with a couch, chair and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526359.jpg', 'caption': 'A bland living room with white walls and beige furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386012.jpg', 'caption': 'a sunny beach filled with a lot of curved kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386012.jpg', 'caption': 'Large variety of sail being flown over beach area at ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386012.jpg', 'caption': 'A bunch of people that have wind surfboards in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386012.jpg', 'caption': 'Dozens of colorful kites being flown on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386012.jpg', 'caption': 'a bunch of kites that are by a ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113408.jpg', 'caption': 'A lone kite flying in a city plaza near people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113408.jpg', 'caption': 'A street area next to buildings and people on street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113408.jpg', 'caption': 'A city with people walking and buildings in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113408.jpg', 'caption': 'A group of people standing in a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113408.jpg', 'caption': 'A downtown street with tall brownstone buildings and pedestrians.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558834.jpg', 'caption': 'Many people are enjoying the lovely day flying kites on the great lawn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558834.jpg', 'caption': 'a couple of people on a big park playing with their kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558834.jpg', 'caption': 'People are scattered across the field and kites are scattered across the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558834.jpg', 'caption': 'Several kites are flying in a large park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558834.jpg', 'caption': 'A large group of people flies kites in a field of green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337246.jpg', 'caption': 'many different kites flying in the sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337246.jpg', 'caption': 'Birds are flying around over the edge of large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337246.jpg', 'caption': 'A variety of birds fly over the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337246.jpg', 'caption': 'a bunch of birds fly over a beach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337246.jpg', 'caption': 'Birds in the sky around the water at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499727.jpg', 'caption': 'Legs and a bird are sticking through the clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499727.jpg', 'caption': 'Colorful and unusual kites fly in the wind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499727.jpg', 'caption': 'Body part kites are flying through the air beside a fish kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499727.jpg', 'caption': 'Kite in the design of female legs in the cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499727.jpg', 'caption': 'A group of kites in a sky, some of which look like human legs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441969.jpg', 'caption': 'Old brick buildings are reflected in a glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441969.jpg', 'caption': 'a top of a roof of a building with some flowers on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441969.jpg', 'caption': 'S ome big glass windows with some plants displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441969.jpg', 'caption': 'A balcony with a table and planters seen through a glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000441969.jpg', 'caption': 'There are plants on a table on an apartment balcony.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162580.jpg', 'caption': 'A child sitting on top of a chair holding a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162580.jpg', 'caption': 'A small cute boy holding a cute stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162580.jpg', 'caption': 'a small boy sitting in a chair holding a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162580.jpg', 'caption': 'A boy holding a stuffed animal is sitting on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162580.jpg', 'caption': 'A young boy sitting on a wooden chair with a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285734.jpg', 'caption': 'a child in a field with a kite ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285734.jpg', 'caption': 'A boy plays with a kite in a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285734.jpg', 'caption': 'A young boy trying to get a kite to fly.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285734.jpg', 'caption': 'A child playing in a field with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285734.jpg', 'caption': 'A young boy prepares to fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578655.jpg', 'caption': 'A kite is flying high above the choppy waves as the surfer cuts through the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578655.jpg', 'caption': 'A person sailing over a ocean on a glider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578655.jpg', 'caption': 'A para-surfer is surfing rough waves on a foggy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578655.jpg', 'caption': 'A lone kite surfer riding the waves on a stormy sea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578655.jpg', 'caption': 'A empty ocean surf with a parachute in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041859.jpg', 'caption': 'A painting of a person walking along a field holding a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041859.jpg', 'caption': 'Painting of a child with a kite in an orange sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041859.jpg', 'caption': 'A painting of a person walking with a trailing kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041859.jpg', 'caption': 'A child is flying a kite in this drawing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041859.jpg', 'caption': 'Illustration of a silhouetted person with a kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264619.jpg', 'caption': 'a person riding a surf board with a parachute ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264619.jpg', 'caption': 'A group of people riding kite boards on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264619.jpg', 'caption': 'A person on beach with people windsurfing in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264619.jpg', 'caption': 'A man on the edge of a beach holding a surfboard and two wind gliders in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264619.jpg', 'caption': 'a bunch of people surfing on the waves with parachutes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530777.jpg', 'caption': 'A tall brick clock tower sitting in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530777.jpg', 'caption': 'A clock made of stone sits in front of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530777.jpg', 'caption': 'A stone clock tower in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530777.jpg', 'caption': 'Stone and white colored structure in front of white modern building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530777.jpg', 'caption': 'a clock tower with a building in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020001.jpg', 'caption': 'A man holding a bat to hit an incoming baseball during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020001.jpg', 'caption': 'A pitcher pitching to a batter during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020001.jpg', 'caption': 'Pitcher throwing ball with batter ready to strike and umpire ready to catch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020001.jpg', 'caption': 'A pitcher throwing a pitch at the batter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020001.jpg', 'caption': 'A pitcher throwing the ball towards the batter and catcher. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518224.jpg', 'caption': 'A baseball player taking a swing during a game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518224.jpg', 'caption': 'A professional baseball game in progress with the batter swinging at the ball on home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518224.jpg', 'caption': 'A man swinging at a pitch during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518224.jpg', 'caption': 'A baseball player swinging his bat in a baseball game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518224.jpg', 'caption': 'A baseball player swinging a bat over a base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004021.jpg', 'caption': 'A baseball field full of baseball players standing on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004021.jpg', 'caption': 'a baseball player sliding in to home base', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004021.jpg', 'caption': 'baseball players playing on a baseball field making a home run.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004021.jpg', 'caption': 'An Arizona Diamondbacks sliding to homebase in an MLB professional baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004021.jpg', 'caption': 'some professional baseball players playing a game for a large crowd ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133060.jpg', 'caption': 'Young man up to bat during a ball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133060.jpg', 'caption': 'A boy preparing to hit a ball with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133060.jpg', 'caption': 'This little boy is taking batting practice before his game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133060.jpg', 'caption': 'A young boy holding a baseball bat getting ready to swing at the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133060.jpg', 'caption': 'a young person standing on a baseball field holding a baseball bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484331.jpg', 'caption': 'A young boy with baseball bat raised waiting for the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484331.jpg', 'caption': 'a young baseball player holding a bat on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484331.jpg', 'caption': 'A young person holding a bat preparing for a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484331.jpg', 'caption': 'A young boy taking a swing at a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484331.jpg', 'caption': 'A young person with a bat and helmet playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314426.jpg', 'caption': 'castle with lights and a clock tower by a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314426.jpg', 'caption': 'A large building in a city is all lit up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314426.jpg', 'caption': 'a very large building that has a clock on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314426.jpg', 'caption': 'Big Ben is always recognizable in London England.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314426.jpg', 'caption': 'A scenic view of Big Ben in the evening hours.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339426.jpg', 'caption': 'A baseball player swinging a bat on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339426.jpg', 'caption': 'Teammates are watching along a fence line as a baseball player swings the bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339426.jpg', 'caption': 'A man swinging a bat on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339426.jpg', 'caption': 'A batter is swinging at a ball at the game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339426.jpg', 'caption': 'A batter swinging at a ball on the baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333000.jpg', 'caption': 'Small boys are playing a softball game on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333000.jpg', 'caption': 'a baseball player swinging a bat on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333000.jpg', 'caption': 'A boy swinging a bat at a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333000.jpg', 'caption': 'There is an umpire and kids playing ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333000.jpg', 'caption': 'A child swings a bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427181.jpg', 'caption': 'A very young boy is trying to bat a ball being thrown to him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427181.jpg', 'caption': 'A little boy with a red shirt on getting ready to hit a colorful ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427181.jpg', 'caption': 'a small child is trying to hit a ball with their bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427181.jpg', 'caption': 'A boy in a red shirt with a helmet and yellow bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427181.jpg', 'caption': 'A small child attempts to hit a ball with his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088640.jpg', 'caption': 'Ms Williams is participating in the championship tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088640.jpg', 'caption': 'A woman in pink dress playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088640.jpg', 'caption': 'pretty lady in a pink tennis dress with crowd of large crowd', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088640.jpg', 'caption': 'A lady dressed in pink playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088640.jpg', 'caption': 'A tennis player in a pink outfit about to play a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159662.jpg', 'caption': 'A person on a court with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159662.jpg', 'caption': 'A tennis player on the court dressed in pink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159662.jpg', 'caption': 'The tennis player in a pink sport dress is holding her racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159662.jpg', 'caption': 'a tennis player on a court with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159662.jpg', 'caption': 'A female tennis player is looking at her racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086878.jpg', 'caption': 'A young woman holding a tennis racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086878.jpg', 'caption': 'The tennis player is reaching for the difficult serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086878.jpg', 'caption': 'A young woman playing professional tennis in front of a large crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086878.jpg', 'caption': 'a woman running whilte trying to hit a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086878.jpg', 'caption': 'a woman in a skirt gets ready to hit a tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114108.jpg', 'caption': 'A pizza sitting on top of a white plate on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114108.jpg', 'caption': 'A small tomato and basil pizza is shown on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114108.jpg', 'caption': 'A fresh pizza on a white plate is being cut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114108.jpg', 'caption': 'Several people sitting at a table with a couple of pizzas and drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114108.jpg', 'caption': 'two big pizzas with little cheese and basil are on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526804.jpg', 'caption': 'A white plate topped with a slice of pizza on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526804.jpg', 'caption': 'a piece of pizza on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526804.jpg', 'caption': 'A large slice of pizza on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526804.jpg', 'caption': 'A red checkered table cloth with a slice of pizza that has cheese and other toppings on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526804.jpg', 'caption': 'A slice of pizza with meat and cheese on a paper plate on a red and white checkerboard table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245701.jpg', 'caption': 'A man with a tennis racket with a crowd watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245701.jpg', 'caption': 'The tennis player is confident about the difficult shot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245701.jpg', 'caption': 'A tennis player holds his racquet with both hands, ready to swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245701.jpg', 'caption': 'Man playing tennis at tennis match with spectators looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245701.jpg', 'caption': 'a man in tennis gear holding a tennis racket on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035974.jpg', 'caption': 'A man swinging a racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035974.jpg', 'caption': 'A tennis player reaching out with his tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035974.jpg', 'caption': 'A man playing tennis in front of fans. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035974.jpg', 'caption': 'a tennis player races to return the ball in front of an audience', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035974.jpg', 'caption': 'Athlete in motion during attended competition on gray and blue court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027731.jpg', 'caption': 'A female tennis player holds her body and racket poised. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027731.jpg', 'caption': 'A tennis player in the middle of a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027731.jpg', 'caption': 'A woman in a tennis match getting ready to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027731.jpg', 'caption': 'A woman bending over on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027731.jpg', 'caption': 'A woman leans in to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302908.jpg', 'caption': 'A man swinging a racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302908.jpg', 'caption': 'A man on a tennis court is playing tennis in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302908.jpg', 'caption': 'A man with a tennis rack on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302908.jpg', 'caption': 'A man on a tennis field getting ready to strike a ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302908.jpg', 'caption': 'A tennis player serves the ball in front of an audience. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322222.jpg', 'caption': 'The man is playing tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322222.jpg', 'caption': 'A man in white is playing tennis on a lime green court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322222.jpg', 'caption': 'The tennis player is about to hit a ball with his racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322222.jpg', 'caption': 'A man in white shirt and shorts playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322222.jpg', 'caption': 'a person hitting a tennis ball with a tennis racket on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286089.jpg', 'caption': 'A woman holding a tennis racquet near a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286089.jpg', 'caption': 'the woman on the court is playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286089.jpg', 'caption': 'The lady in the pink shirt was playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286089.jpg', 'caption': 'A woman tennis player is wearing a white hat and has her arm extended out with her tennis racket as the ball approaches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286089.jpg', 'caption': 'this woman is returning a served tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375021.jpg', 'caption': 'A woman holding a tennis racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375021.jpg', 'caption': 'A girl playing tennis in front of an empty stadium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375021.jpg', 'caption': 'A young person that is serving a tennis ball to his opponent. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375021.jpg', 'caption': 'A female tennis player runs while holding a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375021.jpg', 'caption': 'A woman in black shorts and a white top playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329789.jpg', 'caption': 'A man with a slice of pizza in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329789.jpg', 'caption': 'A man holding a slice of pizza in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329789.jpg', 'caption': 'A young man is eating a slice of pizza in his room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329789.jpg', 'caption': 'A man with a silly look holding a slice of pizza in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329789.jpg', 'caption': 'A man eating a slice of pizza without holding the slice in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093405.jpg', 'caption': 'A clock mounted on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093405.jpg', 'caption': 'A clock that is on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093405.jpg', 'caption': 'An elaborate clock tower decorated with gold zodiac symbols.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093405.jpg', 'caption': 'A large clock sits on the side of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093405.jpg', 'caption': 'A large gold clock on the side of a tan building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331372.jpg', 'caption': 'There are vases of flowers behind a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331372.jpg', 'caption': 'An image from the outside of a window with flowers on the windowsill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331372.jpg', 'caption': 'a window with some vases sitting in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331372.jpg', 'caption': 'Potted plants rest on the sill of a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331372.jpg', 'caption': 'some plants sitting next to a window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499349.jpg', 'caption': 'LOOKING AT A WINDOW FROM THE OUTSIDE IN', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499349.jpg', 'caption': 'A tall window with roses and other flowers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499349.jpg', 'caption': 'tree vases with plants in them on a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499349.jpg', 'caption': 'A window ledge with two potted plants on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000499349.jpg', 'caption': 'A window sill topped with vases filled with flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570353.jpg', 'caption': 'An office room with multiple laptops and computer equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570353.jpg', 'caption': 'A couple of laptops on a couple of desks in an office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570353.jpg', 'caption': 'Dimly lit room with desks and computer equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570353.jpg', 'caption': 'The laptop sits near the double hung window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570353.jpg', 'caption': 'A laptop computer sitting beneath a window next to a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070370.jpg', 'caption': 'The laptop is on a desk near an office chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070370.jpg', 'caption': 'A small table with a laptop computer and a chair in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070370.jpg', 'caption': 'A computer, lamp, and books sit on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070370.jpg', 'caption': 'a laptop sits on a desk next to a mouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070370.jpg', 'caption': 'A computer desk, chair, table, and laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438103.jpg', 'caption': 'a virtual blonde girl is on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438103.jpg', 'caption': 'Female depicted lying on floor in simulated computerized photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438103.jpg', 'caption': 'A computer generated woman looks from behind a computer laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438103.jpg', 'caption': 'A blonde video game character laying on a wood floor next to a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438103.jpg', 'caption': 'a close up of a person with a laptop near a tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043417.jpg', 'caption': 'Laptop on a desk with an external mouse attached', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043417.jpg', 'caption': 'A laptop and an empty chair in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043417.jpg', 'caption': 'A grey laptop has a corded mouse connected through its usb port.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043417.jpg', 'caption': 'A computer and mouse are set on a desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043417.jpg', 'caption': 'A mouse is hooked up to a laptop on a makeshift desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566596.jpg', 'caption': 'A little boy sitting on top of a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566596.jpg', 'caption': 'A black and white view of a boy sitting on a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566596.jpg', 'caption': 'Small boy sitting on top of a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566596.jpg', 'caption': 'A young boy is sitting on top of a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566596.jpg', 'caption': 'A boy points a toy gun at the stuffed bear he is sitting on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203215.jpg', 'caption': 'a opened book and half of a mask sit on a floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203215.jpg', 'caption': \"An opened book on a table and something else I don't know what it is.\", 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000341957.jpg', 'caption': 'A teddy bear laying on a pillow on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341957.jpg', 'caption': 'The teddy bear lays on the pillow in the unmade bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341957.jpg', 'caption': 'A stuffed animal that is sitting on a pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341957.jpg', 'caption': 'A bed with a stuffed animal looking out a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372009.jpg', 'caption': 'A brown teddy bear lays on a bed spread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372009.jpg', 'caption': 'A brown teddy bear is laying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372009.jpg', 'caption': 'A teddy bear lying on a bed with a bird themed cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372009.jpg', 'caption': 'A teddy bear laying on a bed with a bird comforter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372009.jpg', 'caption': 'a stuffed animal sits on a messy bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453162.jpg', 'caption': 'a woman holding an umbrella and walking next to a graffitti wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453162.jpg', 'caption': 'The woman is walking by with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453162.jpg', 'caption': 'A woman standing with an umbrella by a drawing of a person on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453162.jpg', 'caption': 'A woman standing in front of a wall with graffiti holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453162.jpg', 'caption': 'a person near an open umbrella near a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137573.jpg', 'caption': 'An umbrella on top of the desk in a home office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137573.jpg', 'caption': 'An open umbrella is on a table next to a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137573.jpg', 'caption': 'An umbrella sitting on a desk.with a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137573.jpg', 'caption': 'A cubicle at an office with an open umbrella laying on the desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137573.jpg', 'caption': 'A computer desk with an open umbrella hooked up to wires.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517388.jpg', 'caption': 'a man in a white shirt and his luggage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517388.jpg', 'caption': 'A man is leaning down looking at his luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517388.jpg', 'caption': 'A man sits with bags of luggage in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517388.jpg', 'caption': 'A man sits surrounded by luggage in a train compartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517388.jpg', 'caption': 'man looking bewildered looking over all the suitcases\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186899.jpg', 'caption': 'A person is walking in the sand near the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186899.jpg', 'caption': 'A man is running in the sand on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186899.jpg', 'caption': 'A man with a frisbee on a beach near the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186899.jpg', 'caption': 'A man plays Frisbee on the beach at low tide.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186899.jpg', 'caption': 'A man running on the beach in swimming trunks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201241.jpg', 'caption': 'A polar bear keeping cool in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201241.jpg', 'caption': 'a white polar bear swimming in the water near gray rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201241.jpg', 'caption': 'A polar bear is having fun in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201241.jpg', 'caption': 'A polar bear swimming in a river. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201241.jpg', 'caption': 'A POLAR BEAR SPLASHING AROUND IN THE WATER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042225.jpg', 'caption': 'Tow men with dog in park playing with flying disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042225.jpg', 'caption': 'A man reaches down to a black and white dog as they stand on green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042225.jpg', 'caption': 'A man playing a game of frisbee with his dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042225.jpg', 'caption': 'A man and dog in grassy field with cars in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042225.jpg', 'caption': 'A man holds a frisbee and a dog stands nearby. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428366.jpg', 'caption': 'there are two men playing fetch with a dog in the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428366.jpg', 'caption': 'A man standing next to a black and white dog on a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428366.jpg', 'caption': 'Adults playing in grassy park with dog and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428366.jpg', 'caption': 'a person playing with a dog on some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428366.jpg', 'caption': 'Two men playing frisbee with a dog at the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360128.jpg', 'caption': 'A dog that is standing up with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360128.jpg', 'caption': 'The black dog is waiting to play frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360128.jpg', 'caption': \"A dog running with a frisbee in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360128.jpg', 'caption': 'A dog is gripping the Frisbee while approaching. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360128.jpg', 'caption': \"A large black dog walking across a gravel field with an orange frisbee in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515777.jpg', 'caption': 'Woman laying on a sofa with two dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515777.jpg', 'caption': 'A woman laying on a couch with three dogs snuggling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515777.jpg', 'caption': 'A woman is lying on a couch with several dogs.on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515777.jpg', 'caption': 'A smiling woman laying on a sofa with three dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515777.jpg', 'caption': 'A woman sitting on a couch with her dogs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232544.jpg', 'caption': 'A group of people play Frisbee in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232544.jpg', 'caption': 'A group of people play frisbee on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232544.jpg', 'caption': 'Several youth play Frisbee in the field with a monument in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232544.jpg', 'caption': 'A group of people run around under a flying frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232544.jpg', 'caption': 'some people are playing frisbee on the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081081.jpg', 'caption': 'A polar bear walking down the snow in the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081081.jpg', 'caption': 'Three polar bears that are walking in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081081.jpg', 'caption': 'Three polar bears look in the same direction as they walk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081081.jpg', 'caption': 'Three polar bears are walking through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081081.jpg', 'caption': 'a big long line of bears in some snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305626.jpg', 'caption': 'A bear that is standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305626.jpg', 'caption': 'A black bear stands in the tall grass gazing into the distance. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305626.jpg', 'caption': 'The black bear is standing in tall green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305626.jpg', 'caption': 'A black bear walking across a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305626.jpg', 'caption': 'a black bear is standing in some tall grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290432.jpg', 'caption': 'A black dog standing above a mirror on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290432.jpg', 'caption': 'A dog looking cautiously at its reflection in a mirror like object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290432.jpg', 'caption': 'The dog is drawn to his reflection in the mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290432.jpg', 'caption': 'A dog in some grass looking at its reflections.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290432.jpg', 'caption': 'A black dog is standing near a reflective disk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223174.jpg', 'caption': 'A close up view of a zebra near trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223174.jpg', 'caption': 'A front view of a zebra with an indifferent look on its face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223174.jpg', 'caption': 'A beautiful zebra that is standing still, looking into the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223174.jpg', 'caption': 'a zebra stares into the camera with vegetation in the background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223174.jpg', 'caption': 'A zebra that is walking in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456690.jpg', 'caption': 'A herd of zebras grazing with a rainbow behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456690.jpg', 'caption': 'A herd of zebras grazing in a field and a rainbow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456690.jpg', 'caption': 'The zebras are outside under the rainbow in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456690.jpg', 'caption': 'A group of zebras and other animals grazing in a field with a rainbow in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456690.jpg', 'caption': 'Clouds with a rainbow in the sky of an open field with zebras grazing on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095375.jpg', 'caption': \"a giant rainbow piercing the sky while zebra's eat \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095375.jpg', 'caption': 'A group of zebras eating near a rainbow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095375.jpg', 'caption': 'A zebra herd with a rainbow, behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095375.jpg', 'caption': 'a beautiful scenic depiction of zebras near a rainbow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095375.jpg', 'caption': 'A herd of zebra standing under a rainbow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240393.jpg', 'caption': 'A dog laying on desk next to keyboard, phone and monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240393.jpg', 'caption': 'A small dog with long hair sits on a computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240393.jpg', 'caption': 'A gray shaggy dog sits on top of an old desk next to a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240393.jpg', 'caption': 'This dog is sitting on a desk that has a computer on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240393.jpg', 'caption': 'A large gray dog sitting on top of a wooden counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088899.jpg', 'caption': 'Black and white photo of a boy with a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088899.jpg', 'caption': 'A young boy in an old fashioned desk with a dog next to him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088899.jpg', 'caption': 'A young boy holding something above a dogs head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088899.jpg', 'caption': 'an old black and white photo of a person playing with a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088899.jpg', 'caption': 'This is a boy holding up something for his dog to get.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229765.jpg', 'caption': 'Three young men playing a game of frisbee on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229765.jpg', 'caption': 'Asian man in white sleeveless undershirt and grey shorts about to throw a Frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229765.jpg', 'caption': 'A man about to throw a frisbee in a game with other people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229765.jpg', 'caption': 'Man holding a frisbee in his hand on a sand field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229765.jpg', 'caption': 'A few men playing frisbee on a sandy court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548500.jpg', 'caption': 'Someone is holding the muzzle of this black and tan dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548500.jpg', 'caption': 'A person is showing a dogs upper teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548500.jpg', 'caption': 'A brown and black dog getting its teeth brushed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548500.jpg', 'caption': 'A person grabbing a dogs nose with sharp teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548500.jpg', 'caption': 'Someone playing with the mouth of a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540564.jpg', 'caption': \"A close-up of a zebra's face, eating dry grass in a pen.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540564.jpg', 'caption': 'An up close photo of a zebra eating hay', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540564.jpg', 'caption': 'A zebra is eating hay in a fenced enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540564.jpg', 'caption': 'A zebra that is bend down eating hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540564.jpg', 'caption': \"Close up of a zebra's head while it grazes.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569674.jpg', 'caption': 'Two zebras grazing in the high brown and green grass on the Savannah', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569674.jpg', 'caption': 'two zebras and eating grass in a dry grasslands in the wild ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569674.jpg', 'caption': 'Two zebras standing in the grass near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569674.jpg', 'caption': 'Two zebra are standing in the field of tall grass and bushes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569674.jpg', 'caption': 'Two zebras in the wild graze in a grassland scattered with low trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031390.jpg', 'caption': 'Young men playing frisbee in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031390.jpg', 'caption': 'A group of people on a field with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031390.jpg', 'caption': 'Several boys on a field playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031390.jpg', 'caption': 'A bunch of guys that are standing in the grass with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031390.jpg', 'caption': 'A group of men dressed in red and blue shirts plays Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182849.jpg', 'caption': 'A group of zebra standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182849.jpg', 'caption': 'A group of zebras are grazing on the land.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182849.jpg', 'caption': 'Two zebra mothers nursing their babies in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182849.jpg', 'caption': 'A group of zebras is grazing and grooming.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182849.jpg', 'caption': 'four zebras near each other on a field near grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273321.jpg', 'caption': 'Guy jumps up to catch the frisbee in the gym', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273321.jpg', 'caption': 'A man is in mid-jump on an indoor basketball court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273321.jpg', 'caption': 'A person off to the side is wearing an orange tank top and a man in the middle is jumping up in the air catching something and across from the gym is a woman and a child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273321.jpg', 'caption': 'a man is jumping in the air with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273321.jpg', 'caption': 'A man in a red shirt in midair catching a flying disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207763.jpg', 'caption': 'Two women play frisbee in a park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207763.jpg', 'caption': 'Two young woman in a park doing tricks with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207763.jpg', 'caption': 'Two women playing frisbee with one trying to block the others catch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207763.jpg', 'caption': 'a pair of women in a park with other people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207763.jpg', 'caption': 'Two girls wearing black shorts are in a park while one girl holds her leg up in front of the other as the other holds a white Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428178.jpg', 'caption': 'A herd of zebra are taking a stance while posing for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428178.jpg', 'caption': 'Large group of zebras and wildebeests in a zoo like environment ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428178.jpg', 'caption': 'A lot of zebras walking on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428178.jpg', 'caption': 'A herd of zebra standing around in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428178.jpg', 'caption': 'A lot of zebras are standing around on the grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090058.jpg', 'caption': 'A couple of zebra standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090058.jpg', 'caption': 'The two zebras stand across the field from trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090058.jpg', 'caption': 'Two giraffes are shown in a large grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090058.jpg', 'caption': 'Two zebras standing next to each other in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090058.jpg', 'caption': 'A pair of zebras standing in the middle of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447194.jpg', 'caption': 'A zebra standing on a dirty field next to a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447194.jpg', 'caption': 'a zebra is walking around its pen at the zoo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447194.jpg', 'caption': 'A zebra bows its neck in a zoo enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447194.jpg', 'caption': 'A zebra is walking around in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447194.jpg', 'caption': 'A zebra walks along a clearing in front of logs and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176592.jpg', 'caption': 'An adult and juvenile zebra standing next to each other in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176592.jpg', 'caption': 'A large zebra eats grass and a smaller zebra looks toward us.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176592.jpg', 'caption': 'A zebra and a young zebra grazing in a grassy pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176592.jpg', 'caption': 'Two zebras stand in the wild, as one looks at the camera and one at the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176592.jpg', 'caption': 'Some very pretty zebras in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524247.jpg', 'caption': 'Zebras and rhinos grazing together at the zoo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524247.jpg', 'caption': 'Rhinoceros are eating hay and some Zebras are standing behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524247.jpg', 'caption': 'A herd of rhino standing next to a herd of zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524247.jpg', 'caption': 'Zebras and rhinos eating some died up grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524247.jpg', 'caption': 'Two zebras and threes rhinos eating dried grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451263.jpg', 'caption': \"A zebra laying on it's side on a grass covered ground.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451263.jpg', 'caption': 'A zebra lies down on the dusty ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451263.jpg', 'caption': 'A zebra is laying in the dirt outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451263.jpg', 'caption': \"The zebra looks up while laying on it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451263.jpg', 'caption': 'A single giraffe laying on the ground in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579402.jpg', 'caption': 'At least three zebras are standing together affectionately.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579402.jpg', 'caption': 'A couple of zebras standing together in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579402.jpg', 'caption': 'Two zebras next to each other. One is bowing its head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579402.jpg', 'caption': 'Two zebras standing next to each other in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579402.jpg', 'caption': 'Two zebras are nuzzling up to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529348.jpg', 'caption': 'Two zebras are eating grass under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529348.jpg', 'caption': 'Two zebras are feeding on the ground together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529348.jpg', 'caption': 'Two zebra are eating the grass underneath an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529348.jpg', 'caption': 'there are two zebras that are eating from the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529348.jpg', 'caption': 'Two zebras that are standing near each other in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212842.jpg', 'caption': 'A pack of zebras are grazing in a field by a bonzai tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212842.jpg', 'caption': 'A group of zebras stand near a tree in the desert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212842.jpg', 'caption': 'Many Zebra are standing in the desert wild. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212842.jpg', 'caption': 'A group of zebras are standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212842.jpg', 'caption': \"A field with a tree with a lot of zebra's standing.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212842.jpg', 'caption': \"A field with a tree with a lot of zebra's standing.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359260.jpg', 'caption': 'A person riding on the back of a horse drawn carriage on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359260.jpg', 'caption': 'A horse is pulling a two-wheeled card and man on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359260.jpg', 'caption': 'a man riding a horse trailer on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359260.jpg', 'caption': 'A horse carrying a person walking on along the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359260.jpg', 'caption': 'A brown horse pulling a trailer near a shore line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529266.jpg', 'caption': 'a horse stands on a beach as a light house over looks it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529266.jpg', 'caption': 'a horse on a beach near a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529266.jpg', 'caption': 'A horse is standing across the water from a lighthouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529266.jpg', 'caption': 'A horse grazes on beach grass with a lighthouse in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529266.jpg', 'caption': 'A horse grazes in a field by a large pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573179.jpg', 'caption': 'A black and white photo of a boy and a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573179.jpg', 'caption': 'the boy is standing next to a small horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573179.jpg', 'caption': 'A young boy standing next to a baby horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573179.jpg', 'caption': 'A black and white photo of a boy and his horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573179.jpg', 'caption': 'a young boy in swim trunks standing by a small horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221083.jpg', 'caption': 'Two horses are standing in a snowy pasture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221083.jpg', 'caption': 'A couple of horses that are standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221083.jpg', 'caption': 'Two horses standing near a fence on snowy terrain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221083.jpg', 'caption': 'Two horses in a snowy field behind a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221083.jpg', 'caption': 'two horses standing in the snow inside a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124664.jpg', 'caption': 'A fenced in pasture with four horses standing around eating grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124664.jpg', 'caption': 'Four horses are grazing on grass near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124664.jpg', 'caption': 'Several horses are in a field grazing on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124664.jpg', 'caption': 'A group of horses walking together in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124664.jpg', 'caption': 'All the horses in the pen are grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303267.jpg', 'caption': 'two horses in a field with a mountain in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303267.jpg', 'caption': 'Two horses are standing in a field and grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303267.jpg', 'caption': 'A little horse is standing behind a big horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303267.jpg', 'caption': 'A couple of horses standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303267.jpg', 'caption': 'A large white horse next to a calf in a meadow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423731.jpg', 'caption': 'A horse grazes on grass in the shadow of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423731.jpg', 'caption': 'a horse in a field eating grass near a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423731.jpg', 'caption': 'A horse grazes in a field in front of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423731.jpg', 'caption': 'a horse is standing near a large lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423731.jpg', 'caption': 'A brown horse grazing in a field near water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340478.jpg', 'caption': 'A brown and white horse crossing the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340478.jpg', 'caption': 'The brown and white horse is walking in the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340478.jpg', 'caption': 'A horse is walking down the street alone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340478.jpg', 'caption': 'A horse crossing a street near a field and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340478.jpg', 'caption': 'A brown horse walking down the street alone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460307.jpg', 'caption': 'A group of people posing for a picture next to two brown horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460307.jpg', 'caption': 'A group of people rising horses and sitting on a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460307.jpg', 'caption': 'A family of seven posing near two brown horses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460307.jpg', 'caption': 'A group of people gathered together, three of which are sitting on horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460307.jpg', 'caption': 'A black and white photograph of two adults and a group of children near a fence, some on horseback.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570788.jpg', 'caption': 'A group of horses are drinking from a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570788.jpg', 'caption': 'Horses drink water from the pond in a lush pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570788.jpg', 'caption': 'A group of brown horses are drinking from a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570788.jpg', 'caption': 'Several horses are drinking from the water while others walk on the bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570788.jpg', 'caption': 'Horses stopping at the river to drink some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402250.jpg', 'caption': 'Woman on a horse jumping over a pole jump. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402250.jpg', 'caption': 'an equestrian riding a horse jumping an obstacle ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402250.jpg', 'caption': 'A woman rides her horse over a jump', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402250.jpg', 'caption': 'A woman in a black helmet jumping a hurdle while riding a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402250.jpg', 'caption': 'British woman competing in a horse jumping event', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359838.jpg', 'caption': 'A couple of horses standing in a river next to an island.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359838.jpg', 'caption': 'Two horses standing in a stream next to a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359838.jpg', 'caption': 'two horses are walking through a river together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359838.jpg', 'caption': 'Horses standing in shallow water in a wooded area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359838.jpg', 'caption': 'Two horses that are standing in some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449039.jpg', 'caption': 'Two people on horses walk down the middle of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449039.jpg', 'caption': 'A man on a horse and another on a draught horse pass people watching from their front yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449039.jpg', 'caption': 'Riders on horseback on roadway in urban area with onlooker nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449039.jpg', 'caption': 'Two adults riding their horses on the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449039.jpg', 'caption': 'two men riding on two horse near houses ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018654.jpg', 'caption': 'A man that has fallen off a bucking horse at a rodeo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018654.jpg', 'caption': 'A brown horse standing in an arena next to a cowboy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018654.jpg', 'caption': 'A cowboy that has fallen in the ground during a rodeo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018654.jpg', 'caption': 'A horse that threw a man off a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018654.jpg', 'caption': 'Rodeo cowboy falling into dirt next to bucking horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555299.jpg', 'caption': 'some people are walking up a trail and some are on horses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555299.jpg', 'caption': 'THERE ARE PEOPLE RIDING HORESES IN THE STREET ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555299.jpg', 'caption': 'The view from a horse being led down a path with others', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555299.jpg', 'caption': 'People walking and riding horses on the dirt path of a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555299.jpg', 'caption': 'Group of people on horseback riding towards a red building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412304.jpg', 'caption': 'A group of horses pulling a man on a cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412304.jpg', 'caption': 'Three horses are pulling a wagon full of hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412304.jpg', 'caption': 'A group of horses that have a cart behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412304.jpg', 'caption': 'Three horses pulling a cart with a man riding it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412304.jpg', 'caption': 'A group of horses carrying a man on a carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377984.jpg', 'caption': 'A small child riding a pony in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377984.jpg', 'caption': 'Small child with white clothes on riding on top of a horse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377984.jpg', 'caption': 'A small child sitting on top of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377984.jpg', 'caption': 'A little boy that is sitting on a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377984.jpg', 'caption': 'Young child riding a horse in a field of black and white', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086442.jpg', 'caption': 'A white horse grazes in a fence in area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086442.jpg', 'caption': 'A golden horse eats grass in the pasture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086442.jpg', 'caption': 'A lone horse standing and munching on something for the camera man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086442.jpg', 'caption': 'A large beige horse standing near a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086442.jpg', 'caption': 'The adult beige horse is standing close to a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242779.jpg', 'caption': 'A person standing in the stands at a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242779.jpg', 'caption': 'Fans stand as they watch a batter hit a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242779.jpg', 'caption': 'A group of men sitting down at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242779.jpg', 'caption': 'There is a baseball player at bat at a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242779.jpg', 'caption': 'A baseball field in which a man in a green shirt is standing up in the crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099269.jpg', 'caption': 'Miniature fruit and chocolate chip cookies are ready for the doll house occupants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099269.jpg', 'caption': 'A small amount of bananas and cookies are placed on the red table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099269.jpg', 'caption': 'Bananas and cookies sit on a table, with oranges nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099269.jpg', 'caption': 'There are bananas and a plate full of cookies on tgectable', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099269.jpg', 'caption': \"A children's room with toy food on little plates\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535933.jpg', 'caption': 'A pizza sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535933.jpg', 'caption': 'A plain pizza is shown on a wooden table with empty plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535933.jpg', 'caption': 'A small pizza sits in the middle of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535933.jpg', 'caption': 'a tomato cooked pizza on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535933.jpg', 'caption': 'A plate full of pizza with an empty plate beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172137.jpg', 'caption': 'There are four fruits balanced on the neck of the bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172137.jpg', 'caption': 'A bottle with fruit balanced on top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172137.jpg', 'caption': 'A wine bottle that has fruit on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172137.jpg', 'caption': 'A glass bottle filled with fruits stacked on top of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172137.jpg', 'caption': 'A bottle with different fruits balanced on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546854.jpg', 'caption': 'a pitcher of orange juice with orange slices in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546854.jpg', 'caption': 'a close up of a small pitcher of orange juice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546854.jpg', 'caption': 'A pitcher of fresh squeezed orange juice as a center piece along with oranges arranged on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546854.jpg', 'caption': 'A small pitcher or orange drink next to a glass of lemonade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546854.jpg', 'caption': 'Oranges and a pitcher of orange juice sit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201970.jpg', 'caption': 'A left handed baseball player swinging a bat in front of a catcher and umpire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201970.jpg', 'caption': 'a baseball player swinging a bat at a ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201970.jpg', 'caption': 'A man hitting a baseball in a professional baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201970.jpg', 'caption': 'Baseball player hitting a ball with a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201970.jpg', 'caption': 'A baseball batter trying to hit a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161011.jpg', 'caption': 'Three skiers posing for a picture on the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161011.jpg', 'caption': 'Three skiers pause for a photo at the top of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161011.jpg', 'caption': 'Three people standing on a mountain taking a picture as they ski. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161011.jpg', 'caption': 'A woman and two men on skis on a snowy hillside surrounded by trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161011.jpg', 'caption': 'Three skiers have stopped to pose for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513342.jpg', 'caption': 'Two apples, an orange, and a banana form a smiling face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513342.jpg', 'caption': 'Two green apples, an orange and a banana arranged to look like a funny face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513342.jpg', 'caption': 'A banana, orange, and apples arranged to form a smile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513342.jpg', 'caption': 'Two green apples, one orange and one banana arranged in the shape of smile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513342.jpg', 'caption': 'Various fruits are placed to look like a happy face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156375.jpg', 'caption': 'A woman in a white coat in the snow wearing skis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156375.jpg', 'caption': 'A woman in a long white coat stands on skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156375.jpg', 'caption': 'A woman on skis on the snow at night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156375.jpg', 'caption': 'A woman that has skis standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156375.jpg', 'caption': 'A woman wearing a pink jacket holding two ski poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010644.jpg', 'caption': 'A baseball player scratching his balls while he stands on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010644.jpg', 'caption': 'A catcher is holding a particular area while player in the background look on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010644.jpg', 'caption': 'A pitcher on the pitching mound gripping his crotch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010644.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010644.jpg', 'caption': 'A pitcher on the mound adjusts his cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074832.jpg', 'caption': 'A man riding skis on the top of a sky slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074832.jpg', 'caption': 'A skier on the top of a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074832.jpg', 'caption': 'The bearded man poses for the photographer taking his picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074832.jpg', 'caption': 'a man poses on a snowy mountain with his skies ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074832.jpg', 'caption': 'A man smiling as he stands on the top of a mountain wearing skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301155.jpg', 'caption': 'A man on a green field throwing a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301155.jpg', 'caption': 'A baseball catcher running out onto the field after a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301155.jpg', 'caption': 'A catcher in red helmet on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301155.jpg', 'caption': 'A man wearing an umpire uniform throwing a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301155.jpg', 'caption': 'A catcher going after a ball at a baseball game ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008711.jpg', 'caption': 'A person sitting at a table with bagels and a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008711.jpg', 'caption': 'Two donuts, banana, cup and a book on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008711.jpg', 'caption': 'A hand holding a book on a table with a breakfast and coffee next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008711.jpg', 'caption': 'Assorted food and drink displayed on table next to adult with reading material.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008711.jpg', 'caption': 'Someone sitting at a table with two bagels, a banana, a book and a beverage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403096.jpg', 'caption': 'A group of yellow bananas hanging by a door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403096.jpg', 'caption': 'Plantains on a stalk sitting on a porch on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403096.jpg', 'caption': 'The bananas in the bushel are very large.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403096.jpg', 'caption': 'A bunch of ripe bananas hanging outside a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403096.jpg', 'caption': 'A bunch of ripe banana hanging from a white shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374087.jpg', 'caption': 'A box filled with fresh fruit and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374087.jpg', 'caption': 'Fruits and vegetables packed in a card broad box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374087.jpg', 'caption': 'There is a box with many vegetables and fruit in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374087.jpg', 'caption': 'A cardboard box full of various fruits. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374087.jpg', 'caption': 'A large box filled with assorted fruits and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533137.jpg', 'caption': 'A young boy standing on the top of a sky slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533137.jpg', 'caption': 'People preparing to snow ski atop a mountainside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533137.jpg', 'caption': 'People with sports gear walking around in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533137.jpg', 'caption': 'thERE ARE MANY SKIERS ON TOP OF THIS MOUNTAIN', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533137.jpg', 'caption': 'A person on a ski slope looking down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358994.jpg', 'caption': 'A man on a snowy hill during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358994.jpg', 'caption': 'A skier smiling while standing at the top of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358994.jpg', 'caption': 'A man standing on a snowy hillside by skis and a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358994.jpg', 'caption': 'A man wearing skis, smiling, on a mountain in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358994.jpg', 'caption': 'A smiling male skier posing near a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014874.jpg', 'caption': 'A skier stands next to skis stuck into the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014874.jpg', 'caption': 'A man standing on the ski slope with his pair of skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014874.jpg', 'caption': 'A man standing on top of snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014874.jpg', 'caption': 'A man that is standing in the ice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014874.jpg', 'caption': 'A man standing in the snow beside his skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188417.jpg', 'caption': 'A couple of people on top of a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188417.jpg', 'caption': 'Two people in ski gear sitting in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188417.jpg', 'caption': 'Two skiers taking a break beneath a partly cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188417.jpg', 'caption': 'Two skiers sitting on top of a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188417.jpg', 'caption': 'Two skiiers sitting down by a rock in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333156.jpg', 'caption': 'A piece of partially-eaten cake sits on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333156.jpg', 'caption': 'A desert topped with gummy bears sits on a yellow and orange plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333156.jpg', 'caption': 'a close up of a plate of food with a fork', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333156.jpg', 'caption': 'A slice of chocolate cake with dark chocolate glaze.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333156.jpg', 'caption': 'A slice of chocolate cake with dark chocolate icing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160260.jpg', 'caption': 'an image of a banana tree in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160260.jpg', 'caption': 'A live and fruitful banana tree with green bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160260.jpg', 'caption': 'A plantain plant with green fruit on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160260.jpg', 'caption': 'A plant and some leaves in front of the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160260.jpg', 'caption': 'A green banana plant next to building and skyline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347675.jpg', 'caption': 'A person holds a small, rather stumpy banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347675.jpg', 'caption': 'a person holding a banana in their fingertips', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347675.jpg', 'caption': 'A person holding a yellow, black spotted banana. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347675.jpg', 'caption': 'A person holding a small banana in their hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347675.jpg', 'caption': 'A man holding a yellow banana in their left hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010432.jpg', 'caption': 'A display in a store filled with ripe bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010432.jpg', 'caption': 'A store display that has a lot of bananas on display for sale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010432.jpg', 'caption': 'a large display of colorful bananas for sale ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010432.jpg', 'caption': 'A bunch of bananas are put up on display. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010432.jpg', 'caption': 'Bunches of bananas are neatly arranged on a display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377706.jpg', 'caption': 'Two people standing next to each other on top of the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377706.jpg', 'caption': 'Two people standing in the snow with skies on the ground and standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377706.jpg', 'caption': 'Two people standing in the snow with ski equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377706.jpg', 'caption': 'two people with hats standing next to ski gear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377706.jpg', 'caption': 'Skiers with equipment looking at snow covered rise in distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257328.jpg', 'caption': 'A plate with dozens of bananas stacked high.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257328.jpg', 'caption': 'A lot of bananas that are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257328.jpg', 'caption': 'A plate with a pile of bananas sitting on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257328.jpg', 'caption': 'an image of a paper plate stacked with bananas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257328.jpg', 'caption': 'A stack of peeled bananas set on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019176.jpg', 'caption': 'A field filled with baseball players playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019176.jpg', 'caption': 'Several baseball players on field during a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019176.jpg', 'caption': 'A group of players fumbling for a ball on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019176.jpg', 'caption': 'A baseball field with players looking at the umpire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019176.jpg', 'caption': 'A few baseball players running around a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555131.jpg', 'caption': 'a couple of people that are standing on a baseball diamond', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555131.jpg', 'caption': 'Two boys in red shirts playing baseball in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555131.jpg', 'caption': 'Two youngsters in orange tops have catchers gloves and are playing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555131.jpg', 'caption': 'two kids are playing baseball on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555131.jpg', 'caption': 'A COUPLE OF YOUNG BOYS PLAYING BASEBALL .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032300.jpg', 'caption': 'A picture of a kid picking up a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032300.jpg', 'caption': 'A boy reaches for the ball during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032300.jpg', 'caption': 'Two boys playing baseball run to catch the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032300.jpg', 'caption': 'two young boys run towards a baseball during a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032300.jpg', 'caption': 'The boys are playing baseball in the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258399.jpg', 'caption': 'A boy running across a field holding a catchers mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258399.jpg', 'caption': 'A young boy is running with his baseball glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258399.jpg', 'caption': 'A young boy in a red hat and shirt with a baseball glove on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258399.jpg', 'caption': 'a boy wearing a red shirt is playing baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258399.jpg', 'caption': 'A young boy running with a baseball glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037671.jpg', 'caption': 'some baseball players are playing baseball a batter and a catcher', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037671.jpg', 'caption': 'Two young boys playing in a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037671.jpg', 'caption': 'Two kids playing a game of Little League baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037671.jpg', 'caption': 'A little boy holding a bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037671.jpg', 'caption': 'A few young boys playing little league baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206618.jpg', 'caption': 'A banana tree with an unripened clump of bananas hanging from a tree vine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206618.jpg', 'caption': 'The green bananas are almost ready to be picked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206618.jpg', 'caption': 'There are several green bananas growing on this plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206618.jpg', 'caption': 'A collection of bananas grows on a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206618.jpg', 'caption': 'A bunch of unripe bananas hanging from a green plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229274.jpg', 'caption': 'A large banana tree filled with lots of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229274.jpg', 'caption': 'A plant with various banana like flowers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229274.jpg', 'caption': 'Flowering tree displaying native bloom on sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229274.jpg', 'caption': 'The tree is just now budding in the sunny weather. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229274.jpg', 'caption': 'A flower that has already bloomed in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324308.jpg', 'caption': 'A small cluster of bananas growing near a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324308.jpg', 'caption': 'some bananas that are growing but still too ripe to harvest', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324308.jpg', 'caption': 'A bunch of green fruits in a bundle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324308.jpg', 'caption': 'A bunch of green bananas by a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324308.jpg', 'caption': 'A plant that looks like a bunch of unripe bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468777.jpg', 'caption': \"The small frog is lying on leaves of the same color as it's body. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468777.jpg', 'caption': \"Small tree frog blending into plant it's perched on.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468777.jpg', 'caption': 'A small front is lying down on the leaf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468777.jpg', 'caption': 'A frog is sitting near a bunch of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468777.jpg', 'caption': 'A bright green frog on a bright green plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066179.jpg', 'caption': 'A large green banana plant sitting next to a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066179.jpg', 'caption': 'Bananas growing on a stalk near other tropical plants and a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066179.jpg', 'caption': 'A banana tree with bananas hanging from its branches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066179.jpg', 'caption': 'Green bananas on a tree with a flower at the end of the branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066179.jpg', 'caption': 'The banana plant is growing fruit that is almost ready to be picked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507318.jpg', 'caption': 'Grapes, banana, and kiwi are displayed on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507318.jpg', 'caption': 'A bunch of different fruits sitting on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507318.jpg', 'caption': 'Various fruit prepared and arranged on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507318.jpg', 'caption': 'a fruit tray with an array of different fruits on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507318.jpg', 'caption': 'A sliced banana with grapes, kiwi, strawberries and melon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193387.jpg', 'caption': 'A cake sitting on top of a pan on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193387.jpg', 'caption': 'A pizza with lots of cheese on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193387.jpg', 'caption': 'A plate is covered with meat covered in melted cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193387.jpg', 'caption': 'some kind of food that is on a brown plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193387.jpg', 'caption': 'A cheese topped vegetable dish on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472282.jpg', 'caption': 'A catcher crouching at the plate in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472282.jpg', 'caption': 'A man leans down while wearing baseball catcher gear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472282.jpg', 'caption': \"Young man in catcher's gear playing baseball on a sunny day\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472282.jpg', 'caption': 'A catcher squats in full baseball catcher gear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472282.jpg', 'caption': 'A baseball catcher is squatting and wearing a red baseball helmet and his mit is facing the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063671.jpg', 'caption': 'A bunch of vegetables that are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063671.jpg', 'caption': 'Cabbage, broccoli and other assorted vegetables are arranged on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063671.jpg', 'caption': 'The stack of vegetables include celery, broccoli, and cauliflower. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063671.jpg', 'caption': 'Broccoli, cauliflower, and other vegetables on a black background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063671.jpg', 'caption': 'Cauliflower, onions, broccoli and other vegetables gathered together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053958.jpg', 'caption': 'a woman on skis with a red shirt is posing for a picture in some snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053958.jpg', 'caption': 'A man on skis, posing for a picture on a snow covered mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053958.jpg', 'caption': 'A woman skiing on a large white mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053958.jpg', 'caption': 'A woman on skis is in the mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053958.jpg', 'caption': 'A skier preparing to go up a large mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446920.jpg', 'caption': 'A couple of baseball players standing on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446920.jpg', 'caption': 'a batter is bunting a baseball pitch that was thrown at him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446920.jpg', 'caption': 'A man holding a baseball bat in front of a ball coming towards him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446920.jpg', 'caption': 'A full view of a baseball batter about to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446920.jpg', 'caption': 'A baseball player getting ready to bunt in a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509158.jpg', 'caption': 'A person riding skis on top of a snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509158.jpg', 'caption': 'a man on snow snow skis and two people on a snow mobile ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509158.jpg', 'caption': 'A person on skis being carried by a snow mobile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509158.jpg', 'caption': 'A person skiing in the snow while others sit on a vehicle made for the winter time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509158.jpg', 'caption': 'a person riding skis on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538888.jpg', 'caption': 'Plates of raw carrot, zucchini, squash, broccoli and beans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538888.jpg', 'caption': 'a collection of vegetables on plates sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538888.jpg', 'caption': 'A wooden table topped with three plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538888.jpg', 'caption': 'There are plates with broccoli, and zucchini, and a bowl of carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538888.jpg', 'caption': 'Three plates of food on a table contain vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359432.jpg', 'caption': 'The sandwich is on the table by the glass of milk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359432.jpg', 'caption': 'A peanut butter and banana sandwich with a glass of milk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359432.jpg', 'caption': 'Milk served with a peanut and banana sandwich served on a white paper towel at a grey table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359432.jpg', 'caption': 'A peanut butter and banana sandwich on a paper towel with a glass of milk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359432.jpg', 'caption': 'A peanut better and banana sandwich with a glass of milk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378098.jpg', 'caption': 'A counter top with meta and veggies cut up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378098.jpg', 'caption': 'A plate containing broccoli, cauliflower, carrots, and meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378098.jpg', 'caption': 'Several types of food on a ceramic plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378098.jpg', 'caption': 'A cooked steak, cauliflower, and carrots on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378098.jpg', 'caption': 'Large platter of cooked meat is displayed on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103490.jpg', 'caption': 'A spoon filled with peanut butter on top of a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103490.jpg', 'caption': 'A person is holding a spoon of peanut butter next to a glass of milk and a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103490.jpg', 'caption': 'A teaspoon of peanut butter, a banana and a glass of milk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103490.jpg', 'caption': 'A glass of mil, a banana, and a spoon of peanut butter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103490.jpg', 'caption': 'A glass of milk, a banana and a spoon filled with peanut butter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184121.jpg', 'caption': 'Four male subjects, young and old, that are enjoying winter sports.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184121.jpg', 'caption': 'Two men and two boys are posing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184121.jpg', 'caption': 'Two adults and two children posing on a ski slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184121.jpg', 'caption': 'people with kids posing for a photo on the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184121.jpg', 'caption': 'Two men and kids are standing out in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266176.jpg', 'caption': 'in this picture you can see that there are bananas in a tray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266176.jpg', 'caption': 'a plate with some ripe bananas on it', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000274451.jpg', 'caption': 'A group of young people walk across a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274451.jpg', 'caption': 'Group of people standing in front of a blue-and-white passenger bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347506.jpg', 'caption': 'A group of people standing next to a bus and a flag pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347506.jpg', 'caption': 'There are a group of people standing outside a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347506.jpg', 'caption': 'The bus picks up the passengers outside of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347506.jpg', 'caption': ' a bus stops in front of a school to pick up people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347506.jpg', 'caption': 'A group of people waiting at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372706.jpg', 'caption': 'There are some cars and trucks parked at a bus depot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372706.jpg', 'caption': 'a big blue and white bus parked next to a car and truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372706.jpg', 'caption': 'A blue and white bus parked in front of an azure building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372706.jpg', 'caption': 'A blue and white bus next to various cars on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372706.jpg', 'caption': 'A bus station that is loading the luggage for the bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060128.jpg', 'caption': 'A white bus driving down a street next to power line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060128.jpg', 'caption': 'a passenger bus with a billboard on the side of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060128.jpg', 'caption': 'A bus is parked and waiting on passengers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060128.jpg', 'caption': 'Large city bus stopped on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060128.jpg', 'caption': 'A city bus that has advertising on the side and it is parked on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240210.jpg', 'caption': 'a white and black bus is driving down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240210.jpg', 'caption': 'A transit bus is parked at the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240210.jpg', 'caption': 'A bus labeled \"Crosstown\" is parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240210.jpg', 'caption': 'A white bus is traveling down the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240210.jpg', 'caption': 'A bus that sign reads \"Crosstown\". It is a metro bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020273.jpg', 'caption': 'a bus that is parked next to a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020273.jpg', 'caption': 'A bus parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020273.jpg', 'caption': 'This is a picture of a bus stopped letting a person out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020273.jpg', 'caption': 'A bus stopped at a bus stop to pick up passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020273.jpg', 'caption': 'This white passenger bus is waiting at a stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085562.jpg', 'caption': 'A blurry image of a dark colored bus at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085562.jpg', 'caption': 'a black bus pulled over on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085562.jpg', 'caption': 'Black city bus pulling up to a street sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085562.jpg', 'caption': 'Black bus parked on the side of the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085562.jpg', 'caption': 'A bus pulls into a bus stop on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173908.jpg', 'caption': 'Woman interacting with giraffe at fence in zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173908.jpg', 'caption': 'A woman face to face with a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173908.jpg', 'caption': 'a woman standing very close to a giraffe leaning over a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173908.jpg', 'caption': \"A woman attending to a giraffe that's leaned over a fence rail.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173908.jpg', 'caption': 'A giraffe stares at a woman standing close to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278375.jpg', 'caption': 'a yellow fire hydrant on the corner of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278375.jpg', 'caption': 'A yellow fire hydrant is sitting on a broken side walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278375.jpg', 'caption': 'A yellow fire hydrant next to a street corner. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278375.jpg', 'caption': 'A yellow fire hydrant is sitting on the corner across from the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278375.jpg', 'caption': 'A yellow fire hydrant is on the corner of an old sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285957.jpg', 'caption': 'A giraffe standing in a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285957.jpg', 'caption': 'A giraffe at the zoo, with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285957.jpg', 'caption': 'A giraffe in a fenced in area eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285957.jpg', 'caption': 'The giraffe is outside for the visitors to see. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285957.jpg', 'caption': 'A cute giraffe is next to a feeding box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203865.jpg', 'caption': 'A colorful bus is parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203865.jpg', 'caption': 'Crosstown bus driver at curb waiting for his passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203865.jpg', 'caption': 'A bus with its door open on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203865.jpg', 'caption': 'A commuter bus parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203865.jpg', 'caption': 'A transit bus parked at a stop on a street side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255769.jpg', 'caption': 'A crosstown bus is parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255769.jpg', 'caption': 'A white bus driving down a small street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255769.jpg', 'caption': 'A city bus with advertising on its side by a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255769.jpg', 'caption': 'A public transit bus stops in the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255769.jpg', 'caption': 'A large city bus is parked on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408950.jpg', 'caption': 'A red double stacked bus traveling down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408950.jpg', 'caption': 'A two-floor bus riding along a busy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408950.jpg', 'caption': 'A double decker bus is driving down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408950.jpg', 'caption': 'A red two level city bus on a street with cars behind it and in the other lane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408950.jpg', 'caption': 'A red and black double decker bus travelling on a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096226.jpg', 'caption': 'an image of a woman smiling at the camera and behind her is a giraffe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096226.jpg', 'caption': 'A woman is posing in front of a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096226.jpg', 'caption': 'A woman is standing next to a display of giraffes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096226.jpg', 'caption': 'There is a woman posing in front of two giraffes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096226.jpg', 'caption': 'A smiling woman is in the foreground as a captive giraffe peers over the fence in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070336.jpg', 'caption': 'A road is covered with snow with some tire tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070336.jpg', 'caption': 'A road covered in thick snow with large pine trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070336.jpg', 'caption': 'A snow-filled uncleared road in a suburban setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070336.jpg', 'caption': 'A road covered with thick snow in a neighborhood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070336.jpg', 'caption': 'Tire marks carve paths down a snow covered street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510358.jpg', 'caption': 'A white and blue bus parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510358.jpg', 'caption': 'The back of a stopped bus is on the side of the street with an open door. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510358.jpg', 'caption': 'a city bus parked on the curb with an ad on the back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510358.jpg', 'caption': 'An advertisement poster is on the back of this metro bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510358.jpg', 'caption': 'A large bus parked on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212346.jpg', 'caption': 'The passenger bus is stopping alongside of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212346.jpg', 'caption': 'A commuter bus parked in front of bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212346.jpg', 'caption': 'A bus next to a bus stop sign waiting for passengers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212346.jpg', 'caption': 'A bus pausing at a bus stop for passengers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212346.jpg', 'caption': 'a bus sitting at a bus stop in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019158.jpg', 'caption': 'A bus driving down a road next to a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019158.jpg', 'caption': 'A public transportation bus with a bike rack on front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019158.jpg', 'caption': 'A passenger bus parked at the sidewalk of a quiet street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019158.jpg', 'caption': 'A bus that is empty on the street on a cloudy day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019158.jpg', 'caption': 'A mass transit bus parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009041.jpg', 'caption': 'A very cute cat near a bunch of birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009041.jpg', 'caption': 'A cat is standing outside next to a group of pigeons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009041.jpg', 'caption': 'A cat looking at a large group of pigeons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009041.jpg', 'caption': 'a cat standing on the sidewalk looking at a dozen of birds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009041.jpg', 'caption': 'A cat is looking at a large group of pigeons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148458.jpg', 'caption': 'A white and orange cat sitting on top of a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148458.jpg', 'caption': 'A cat sitting near a group of pigeons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148458.jpg', 'caption': 'A cat is sitting angrily as a flock of birds peck behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148458.jpg', 'caption': 'A white and orange cat in front of a flock of birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148458.jpg', 'caption': 'The cat sits looking the other way as the pigeons congregate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327834.jpg', 'caption': 'A black and white image of a huge heard of sheep. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327834.jpg', 'caption': 'A large herd of sheep near a stream on a farm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327834.jpg', 'caption': 'Hundreds of sheep walking in the water and a ranch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327834.jpg', 'caption': 'A group of sheep that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327834.jpg', 'caption': 'Two herds of sheep standing on both sides of a long stream and valley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361073.jpg', 'caption': 'A large white bus stopped at a bus stop covered in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361073.jpg', 'caption': 'a public transit bus on a city street with snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361073.jpg', 'caption': 'A public transportation bus sits by the sidewalk on a snowy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361073.jpg', 'caption': 'A bus parked on the street on a snowy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361073.jpg', 'caption': 'White METRO bus parked at curbside with door open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542451.jpg', 'caption': 'There are a lot of animals on the hills.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542451.jpg', 'caption': 'A flock of sheep grazing in the hilly area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542451.jpg', 'caption': 'A herd of cattle spread across an arid western meadow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542451.jpg', 'caption': 'A herd of animals grazes and lounges about in a grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542451.jpg', 'caption': 'A heard of sheep, goats and lamas on a mountain side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065306.jpg', 'caption': 'A green and white bus traveling down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065306.jpg', 'caption': 'The large city bus is painted lime green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065306.jpg', 'caption': 'A green and white bus on a snowy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065306.jpg', 'caption': 'A bus is parked on the side of an empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065306.jpg', 'caption': 'A bus sits at a curb on a snowy road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031711.jpg', 'caption': 'A number 41 bus heading to Mt Airy on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031711.jpg', 'caption': 'A close-up of the front end of a mass transit bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031711.jpg', 'caption': 'A white and blue bus driving down a road next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031711.jpg', 'caption': 'a big white bus parked on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031711.jpg', 'caption': 'The Route 41 bus makes its rounds on a cloudy morning', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099584.jpg', 'caption': \"A transit bus stopped at a street side that's filled with snow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099584.jpg', 'caption': 'A white bus with a painting of a blue flower on the front stopped on a street near a snow covered sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099584.jpg', 'caption': 'An empty bus parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099584.jpg', 'caption': 'A picture of a bus stopped on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099584.jpg', 'caption': 'A bus pulled over on the road next to some snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498120.jpg', 'caption': 'A bus pulled up to the curb along a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498120.jpg', 'caption': 'A city bus parked on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498120.jpg', 'caption': 'A cross town metro commuter bus parked at the curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498120.jpg', 'caption': 'A city bus number 51 that goes crosstown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498120.jpg', 'caption': 'A bus with the number 51 traveling crosstown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403294.jpg', 'caption': 'A white bus sitting on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403294.jpg', 'caption': 'A city bus waits on a street for passengers to show up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403294.jpg', 'caption': 'A bus is parked on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403294.jpg', 'caption': 'a passenger bus parked on the side of the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403294.jpg', 'caption': 'A city bus pulled up alongside a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299074.jpg', 'caption': 'A white bus driving down a street next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299074.jpg', 'caption': 'The driver of a bus is parked alongside a street as he talks on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299074.jpg', 'caption': 'A large white city bus on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299074.jpg', 'caption': 'The city bus has stopped at the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299074.jpg', 'caption': 'a bus parked on the side of the road with the driver talking on a cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460646.jpg', 'caption': 'A bus sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460646.jpg', 'caption': 'A transit bus pulling into a stop waiting on passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460646.jpg', 'caption': 'A bus at a bus stop sports a bicycle rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460646.jpg', 'caption': 'A white bus on side of road next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460646.jpg', 'caption': 'a public transit bus on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026879.jpg', 'caption': 'a close up of a street sign on a street corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026879.jpg', 'caption': 'A picture of pushing a button to cross the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026879.jpg', 'caption': 'Sign with an arrow pointing to where the bike lane is.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026879.jpg', 'caption': 'A sign for bicyclists to press a button to cross the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026879.jpg', 'caption': 'That son is directing the bike riders where to go.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029465.jpg', 'caption': 'A bird that is playing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029465.jpg', 'caption': 'A grey bird in the middle of a snow-covered ground\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029465.jpg', 'caption': 'A small bird sitting on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029465.jpg', 'caption': 'A small bird is standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029465.jpg', 'caption': 'A small bird standing on the snowy ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205247.jpg', 'caption': 'A long white red and blue bus driving down a street next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205247.jpg', 'caption': 'A bus for Bearcats Basketball Ohio on the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205247.jpg', 'caption': 'A bus is sitting on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205247.jpg', 'caption': 'A white, blue and green passenger bus with an advertisement on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205247.jpg', 'caption': 'a public transit bus on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015260.jpg', 'caption': 'A cake cover is made to look like a wire birdcage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015260.jpg', 'caption': 'A fancy wedding cake under a protective cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015260.jpg', 'caption': 'Two-tiered white fondant cake on pedestal with tiers separated by two rows of white and green roses covered with a dark wire wide-mesh birdcage top with a bird perched atop for a handle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015260.jpg', 'caption': 'a cake sits inside of a protector case ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015260.jpg', 'caption': 'A large cake with flowers and a metal net hanging over it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399864.jpg', 'caption': 'a public transit bus driving on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399864.jpg', 'caption': 'A red and white bus driving on the left side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399864.jpg', 'caption': 'a red and white bus traveling down a tree lined street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399864.jpg', 'caption': 'An old bus traveling on a road way. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399864.jpg', 'caption': 'A bus is moving along a narrow street next to trees with houses in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526143.jpg', 'caption': 'a large giraffe eating something off of a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526143.jpg', 'caption': 'This giraffe is chewing on branches under a canopy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526143.jpg', 'caption': 'A giraffe eating branches next to a tent near a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526143.jpg', 'caption': 'a giraffe reaching up to a branch to eat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526143.jpg', 'caption': \"A giraffe is standing on all fours and reaching it's neck and head up to eat a plant that is hanging from above.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231768.jpg', 'caption': 'many cars parked in a lot around several stores', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231768.jpg', 'caption': 'A parking in front of a very large brown clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231768.jpg', 'caption': 'Cars parked outside a building with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231768.jpg', 'caption': 'A clock tower on a building of a business establishment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231768.jpg', 'caption': 'The cars are lined up in a row in the lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549048.jpg', 'caption': 'A white bus on street next to sidewalk and buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549048.jpg', 'caption': 'A city bus is stopped on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549048.jpg', 'caption': 'A bus departing from a stop on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549048.jpg', 'caption': 'A bus parked in front of a bus stop on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549048.jpg', 'caption': 'Bus stopped at the bus stop with no passengers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211386.jpg', 'caption': 'A passenger bus is parked on the side of a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211386.jpg', 'caption': 'A bus is sitting on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211386.jpg', 'caption': 'A white bus is traveling down the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211386.jpg', 'caption': 'A big white bus on the crosstown route.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211386.jpg', 'caption': 'A bus sits parked at the curb on an empty street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199127.jpg', 'caption': 'A white bus passing street next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199127.jpg', 'caption': 'an image of a bus that is driving down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199127.jpg', 'caption': 'The bus is traveling on a wide street with two-way traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199127.jpg', 'caption': 'A bus and several cars parked on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199127.jpg', 'caption': 'A bus rounds a corner on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400975.jpg', 'caption': 'A clock is shown on a wood panel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400975.jpg', 'caption': 'A wooden clock on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400975.jpg', 'caption': 'a clock with a painting of a bird on a branch on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400975.jpg', 'caption': 'A square wood clock with a picture of a bird hanging on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400975.jpg', 'caption': 'A wooden clock with a design with a bird on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240082.jpg', 'caption': 'A wooden box with a bird in a tree painted on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240082.jpg', 'caption': 'This is a piece of art work featuring a tree and a bird. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240082.jpg', 'caption': 'A white painted wall with a wood clock that has a bird on a tree limb on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240082.jpg', 'caption': 'A square, wooden clock features a print of a bird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240082.jpg', 'caption': 'The wood carving is a bird on a limb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154711.jpg', 'caption': 'THERE IS A WALL WITH FLOWERS ON IT AND A BIRD ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154711.jpg', 'caption': 'A wooden clock with decorative hands and artwork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154711.jpg', 'caption': 'A wooden box mounted to the side of a house with a picture of a dove on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154711.jpg', 'caption': ' a clock with a bird and some branches painted on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154711.jpg', 'caption': 'A wooden picture of birds with white flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418297.jpg', 'caption': \"A very tall building with a giant clock on it's face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418297.jpg', 'caption': 'A church with a tower has a clock on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418297.jpg', 'caption': 'a big building that has a large clock in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418297.jpg', 'caption': 'A very big and pretty tower with some clocks on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418297.jpg', 'caption': 'A statue of a bird is anchored to the top of a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404229.jpg', 'caption': 'A stop sign with an oriental symbol above the English version.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404229.jpg', 'caption': 'A stop sign on a pole by a building in Japan or China ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404229.jpg', 'caption': 'A stop sign is posted near a sign on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404229.jpg', 'caption': 'A stop sign written in Chinese and In English.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404229.jpg', 'caption': 'A sign on a pole and on a building in another language. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573527.jpg', 'caption': 'The street signs are clearly posted on the street for people to see. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573527.jpg', 'caption': 'Image of a stop sign, street sign and several directional signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573527.jpg', 'caption': 'A stop sign next to a one way, steet sign and no parking sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573527.jpg', 'caption': 'A city street corner with multiple street signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573527.jpg', 'caption': 'A stop sign, one way sign, no parking and street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483656.jpg', 'caption': 'Giraffe walking through a field next to a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483656.jpg', 'caption': 'Two giraffes in a field with lots of trees behind them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483656.jpg', 'caption': 'Two giraffes in an open field with a forest in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483656.jpg', 'caption': 'Two giraffes out in an open area of the wild ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483656.jpg', 'caption': 'Two giraffes walking next to each other in an open field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342394.jpg', 'caption': 'Three giraffes standing at different locations behind a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342394.jpg', 'caption': 'Three giraffes standing in an enclosure overlooking Sydney, Australia.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342394.jpg', 'caption': 'some giraffes eatting some grass from some cages', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342394.jpg', 'caption': 'A group of giraffes that are in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342394.jpg', 'caption': 'Giraffe in a zoo overlooking the city skyline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545235.jpg', 'caption': 'A pizza restaurant sign sitting up against a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545235.jpg', 'caption': 'An old sign for a pizza shop sits on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545235.jpg', 'caption': 'The old pizza sign sits on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545235.jpg', 'caption': 'A sign for a pizza place rests on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545235.jpg', 'caption': 'an image of a pizza sign against a brick wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472833.jpg', 'caption': 'A swan is swimming near snow covered rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472833.jpg', 'caption': 'A swan swimming next to a snow-covered rocky shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472833.jpg', 'caption': 'A swan swims next to a snow covered bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472833.jpg', 'caption': 'A swan in the water next to a snowy bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472833.jpg', 'caption': 'A swan in water next to a snowy, rocky area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047898.jpg', 'caption': 'a sunset over the water with birds in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047898.jpg', 'caption': 'A view of a lake and trees at sunset. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047898.jpg', 'caption': 'The sun sets on a rustic backcountry setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047898.jpg', 'caption': 'The river is calm and peaceful this time of night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047898.jpg', 'caption': 'a small creek sits underneath a sun set', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310879.jpg', 'caption': 'A group of birds stand on partially water covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310879.jpg', 'caption': 'Birds standing in shallow water in outdoor water way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310879.jpg', 'caption': 'The flamingos are outside in the water together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310879.jpg', 'caption': 'A bunch of white birds walking a long a water covered beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310879.jpg', 'caption': 'A group of seagulls are standing in shallow water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507766.jpg', 'caption': 'Three immature gulls are wading in shallow water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507766.jpg', 'caption': 'These birds are standing in water near a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507766.jpg', 'caption': 'Three white birds walking around in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507766.jpg', 'caption': 'Birds walking at waters edge in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507766.jpg', 'caption': 'Three birds wade in the water looking for food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432796.jpg', 'caption': 'A couple of swans swimming in a pond next to two people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432796.jpg', 'caption': 'Two young boys are feeding ducks in a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432796.jpg', 'caption': 'Two boys standing next to geese in a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432796.jpg', 'caption': 'two young people standing in grass near some goose', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432796.jpg', 'caption': 'Two boys are looking at two white swans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217137.jpg', 'caption': 'Two children under a \"Sesame Street\" sign on a light post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217137.jpg', 'caption': 'a couple of little kids play in front of a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217137.jpg', 'caption': 'two girls standing underneath a Sesame Street sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217137.jpg', 'caption': 'A pair of young girls stand beneath a sign for Sesame Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217137.jpg', 'caption': 'two girls standing under a sesame street sign ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528269.jpg', 'caption': 'a brown black and white bird and some plants grass and leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528269.jpg', 'caption': 'A small bird standing on the ground near grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528269.jpg', 'caption': 'A small brown colored bird, standing on the ground with small plants next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528269.jpg', 'caption': 'The bird is standing on a stone in the yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528269.jpg', 'caption': 'A bird is standing on the ground surrounded by leaves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472387.jpg', 'caption': 'A street sign is seen over a river in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472387.jpg', 'caption': 'a sigh welcoming the public to the area and a river sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472387.jpg', 'caption': 'Sign indicating river near bridge and traffic in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472387.jpg', 'caption': 'Two green signs that are on a metal pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472387.jpg', 'caption': 'A sign for Marion County and the Willamette River.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072238.jpg', 'caption': 'A man that has a happy new year hat on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072238.jpg', 'caption': 'A man scowls while wearing a Happy New Year headband in a crowded bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072238.jpg', 'caption': 'A man with a tie on and a head band in celebration of a holiday.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072238.jpg', 'caption': 'A man wears a tiara to celebrate the new year', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072238.jpg', 'caption': 'A man wearing a white foofy hat with the words Happy NewYear on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191169.jpg', 'caption': 'A beautiful young woman bending over while holding a back cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191169.jpg', 'caption': 'A woman bending over holding and kissing her cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191169.jpg', 'caption': 'A girl holds her black cat in her arms and gives it a hug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191169.jpg', 'caption': 'a woman bent over while giving her black cat a kiss', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191169.jpg', 'caption': 'A woman holding and kissing a black pet cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536110.jpg', 'caption': 'A row of birds are flying against a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536110.jpg', 'caption': 'A flock of birds are flying in formation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536110.jpg', 'caption': 'A bird flying high up in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536110.jpg', 'caption': 'A flock of birds in sequence flying through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536110.jpg', 'caption': 'a bunch of birds flying in a line in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412676.jpg', 'caption': 'cars parked near a all black corner store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412676.jpg', 'caption': 'Cars are seen on the street outside a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412676.jpg', 'caption': 'A traffic light at the corner of a business building with traffic going by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412676.jpg', 'caption': 'a large building stands on the corner of an intersection under a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412676.jpg', 'caption': 'A corner of a street next to a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268620.jpg', 'caption': 'Person in profile and sunlight at a barred window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268620.jpg', 'caption': 'there is a man standing by a window alone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268620.jpg', 'caption': 'A man with his head near a slotted window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268620.jpg', 'caption': 'A man next to a metal fence, next to a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268620.jpg', 'caption': 'Man with a shadowed face posed near a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066320.jpg', 'caption': 'a person holding a camera up to the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066320.jpg', 'caption': 'Someone in a room taking a picture with phone out a barred window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066320.jpg', 'caption': 'A woman in a window either taking a picture or video taping something outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066320.jpg', 'caption': 'A person who is taking a picture out of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066320.jpg', 'caption': 'Someone taking a pair of something with their cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399274.jpg', 'caption': 'Passenger rail train moving quickly, everything around indesicriminate blur', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399274.jpg', 'caption': 'a red white and blue commuter train traveling fast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399274.jpg', 'caption': 'A passenger train speeding through a train depot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399274.jpg', 'caption': 'a colorful passenger train speeding down a track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399274.jpg', 'caption': 'A train driving down the tracks near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086602.jpg', 'caption': 'a train travels o some tracks next to some water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086602.jpg', 'caption': 'A train traveling down the rail road tracks near a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086602.jpg', 'caption': 'A train travelling next to a rural highway with water on the other side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086602.jpg', 'caption': 'a train on a track near many bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086602.jpg', 'caption': 'A very long, yellow train coming around a corner. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262471.jpg', 'caption': 'Stop sign at the intersection of two streets on a fall day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262471.jpg', 'caption': 'A stop sign that has some street signs on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262471.jpg', 'caption': 'a stop sign that has some signs on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262471.jpg', 'caption': 'Two street signs that are on top of a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262471.jpg', 'caption': 'Traffic and directional signs are displayed on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360208.jpg', 'caption': 'A very beautiful woman wearing a black hat, black shirt and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360208.jpg', 'caption': 'a girl dressed in black hat gloves and clothes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360208.jpg', 'caption': 'A young woman is dressed in gothic clothing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360208.jpg', 'caption': 'a lady wearing black in a club and black hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360208.jpg', 'caption': 'Blond haired woman wearing a black top hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260478.jpg', 'caption': 'An odd couple of formal woman in black dress and pearls with casual boy in a cap and untidy clothes and hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260478.jpg', 'caption': 'Two women sitting on couch dressed in elegant clothes..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260478.jpg', 'caption': 'A people who are cuddling on a couch together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260478.jpg', 'caption': 'Two young women are reclining on a vintage couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260478.jpg', 'caption': 'A woman sitting next to a man on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240185.jpg', 'caption': 'a person wearing a gorilla costume and a suit and tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240185.jpg', 'caption': 'an image of a man dressed up like an ape', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240185.jpg', 'caption': 'a man wearing a suit and monkey head walking down the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240185.jpg', 'caption': 'A man walks wearing a black gorilla costume.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240185.jpg', 'caption': 'a person in a gorilla costume and suit jacket with a number pinned to their suit jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318415.jpg', 'caption': 'An old brick building along side of a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318415.jpg', 'caption': 'a wooden street sign next to a tree and a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318415.jpg', 'caption': 'A flooded road and a sign that says, \"East Street\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318415.jpg', 'caption': 'A black sign that is standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318415.jpg', 'caption': 'A street next to a large building is flooded.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571746.jpg', 'caption': 'A train goes down the side of a mountain in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571746.jpg', 'caption': 'A red metro train winding through a snow covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571746.jpg', 'caption': 'A train going down the railroad tracks in the middle of snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571746.jpg', 'caption': 'Three tracks, one with a train, follow contours of a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571746.jpg', 'caption': 'a red and silver train is coming down a hill and snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384528.jpg', 'caption': 'A sign warning no camera and no videos on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384528.jpg', 'caption': 'a street sign on a sidewalk next to a construction site.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384528.jpg', 'caption': 'A sign is displayed on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384528.jpg', 'caption': 'A SIGN WITH DIFFERENT SYMBOLS ON IT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384528.jpg', 'caption': 'A sign states that you can not take pictures or videos there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084123.jpg', 'caption': 'A tall green street sign sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084123.jpg', 'caption': 'A red car and white van riding down the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084123.jpg', 'caption': 'There is a street direction guide on the corner of a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084123.jpg', 'caption': 'Looking down a city street with informational signs in the foreground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084123.jpg', 'caption': 'A street sign sits on a grass meridian between a street with cars and a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476841.jpg', 'caption': 'Roadway signs on post on sidewalk of large urban city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476841.jpg', 'caption': 'A road sign for a freeway entrance outside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476841.jpg', 'caption': 'A traffic sign sitting below a building next to bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476841.jpg', 'caption': 'a number of bikes parked near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476841.jpg', 'caption': 'Some bicycles are leaning against a pole with south I5 signs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437284.jpg', 'caption': 'A white and grey train car with graffiti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437284.jpg', 'caption': 'A train evangelized with colorful graffiti still on train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437284.jpg', 'caption': 'a train with colorful graffiti painted it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437284.jpg', 'caption': 'A train covered in graffiti sits on train tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437284.jpg', 'caption': 'A train with colorful graffiti on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371638.jpg', 'caption': 'A train covered in graffiti sitting on top of train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371638.jpg', 'caption': 'a train sits parked as it is covered in graffiti ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371638.jpg', 'caption': 'A tram has multi-colored graffiti on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371638.jpg', 'caption': 'The side of a train with windows with a lot of graffiti. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371638.jpg', 'caption': 'a train that has been painted on ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457735.jpg', 'caption': 'A small toy that looks like a witch next to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457735.jpg', 'caption': 'A TOY IS ON THE KEY BOARD DESK SMILING ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457735.jpg', 'caption': 'A smiling wooden witch toy in front of a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457735.jpg', 'caption': 'A wooden doll stands in front of a computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457735.jpg', 'caption': 'A figurine with a plastic witches head is standing in front of a computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533434.jpg', 'caption': 'A downtown urban street scene with skyscrapers and historic buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533434.jpg', 'caption': 'A red sign posted on the side of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533434.jpg', 'caption': 'A street sign sits in front of a street lined with buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533434.jpg', 'caption': 'A street lamp across from rows of buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533434.jpg', 'caption': 'A number of parking signs on a post on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223019.jpg', 'caption': 'A passenger train making a stop at a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223019.jpg', 'caption': 'a train stopped at a train station with people near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223019.jpg', 'caption': 'An underground train station waiting at the station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223019.jpg', 'caption': 'An Asian subway station with a subway car stationary. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223019.jpg', 'caption': 'A train sits inside a train station, people stand on the platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054618.jpg', 'caption': 'A train is passing another train sitting on a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054618.jpg', 'caption': 'Commercial train moving quickly passed a commuter rail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054618.jpg', 'caption': 'The train passes by another train as it moves through a rail yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054618.jpg', 'caption': 'a train that is rolling by a large building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054618.jpg', 'caption': 'A moving train pulling tanks down the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403862.jpg', 'caption': 'A steam engine strain is decorated to look like a character from \"Thomas the Train\" books. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403862.jpg', 'caption': 'A green train engine with a face on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403862.jpg', 'caption': 'Cartooned faced green locomotive tended to by railroad worker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403862.jpg', 'caption': 'a person working on a train on a train track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403862.jpg', 'caption': 'A green Thomas the Train locomotive being worked on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349021.jpg', 'caption': 'Thomas the tank traveling down train tracks next to a bush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349021.jpg', 'caption': 'Thomas the Tank train with smoke coming from its chimney.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349021.jpg', 'caption': 'A cartoon tank engine is traveling down some tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349021.jpg', 'caption': 'A blue children train sitting at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349021.jpg', 'caption': 'A locomotive that looks like Thomas the Train on a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486632.jpg', 'caption': 'Street signs for W 53 ST - JERRY ORBACH WAY.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486632.jpg', 'caption': 'A street sign with tall buildings behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486632.jpg', 'caption': 'Street signs are on a pole near a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486632.jpg', 'caption': 'A pole with street signs and the side of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486632.jpg', 'caption': 'Street signs are on a pole next to buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260447.jpg', 'caption': 'A very long shiny train on a bridge over some cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260447.jpg', 'caption': 'A train on a trestle over a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260447.jpg', 'caption': 'The elevated metro train passes over a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260447.jpg', 'caption': 'a train on a overpass and cars traveling below ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260447.jpg', 'caption': 'A train driving on an elevated rail in front of a flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116722.jpg', 'caption': 'A train with a flag flying near the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116722.jpg', 'caption': 'A train passing by the American flag on a clear day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116722.jpg', 'caption': 'A passenger train moving along an over pass with a flag flying in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116722.jpg', 'caption': 'A passenger train goes by an American flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116722.jpg', 'caption': 'a train going by a flag on an elevated track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553678.jpg', 'caption': 'A stop sign and a no access sign in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553678.jpg', 'caption': 'A stop sign at the end of paved road by a chain link fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553678.jpg', 'caption': 'A stop sign at the end of a dead end road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553678.jpg', 'caption': 'This is a stop sign at the end of a road in front of a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553678.jpg', 'caption': 'The stop sign is clearly visible for the world to see. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050360.jpg', 'caption': 'A black fence guarding a building next to a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050360.jpg', 'caption': 'Stop sign sitting on a fence signaling wrong way directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050360.jpg', 'caption': 'Several stop signs that say you are going the wrong way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050360.jpg', 'caption': 'A garbage bin next to a fence and a traffic gate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050360.jpg', 'caption': 'A fence with many signs and a guard rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076648.jpg', 'caption': 'A stop sign that has various stickers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076648.jpg', 'caption': \"a stop sign altered to say 'stop hammertime'\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076648.jpg', 'caption': 'A red stop sign sitting on the top of a road sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076648.jpg', 'caption': 'A red stop sign with various stickers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076648.jpg', 'caption': 'A stop sign on a pole in a city ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079955.jpg', 'caption': 'Pickup truck on a ramp preparing to merge with heavy Interstate highway traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079955.jpg', 'caption': 'An on ramp to a multiple lane road and a red pick-up truck proceeding to a stop sign at the merging point.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079955.jpg', 'caption': 'A red truck moving towards a busy highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079955.jpg', 'caption': 'A red pickup truck entering traffic onto a busy highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079955.jpg', 'caption': 'A red pick up truck driving onto a freeway onramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046526.jpg', 'caption': 'The two yellow trains are coming down from the mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046526.jpg', 'caption': 'Few people walking along next to trains on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046526.jpg', 'caption': 'Two yellow buses and people standing beside mountains. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046526.jpg', 'caption': 'Cable cars are on tracks as a snowy mountain stands in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046526.jpg', 'caption': 'A group of people walking to an electric train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087156.jpg', 'caption': 'a yellow tram some mountains snow and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087156.jpg', 'caption': 'A short train traveling through a mountainous landscape', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087156.jpg', 'caption': 'A train sits on the tracks in front of a mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087156.jpg', 'caption': 'A yellow passenger train coming down the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087156.jpg', 'caption': 'A train is riding the tracks near a mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344513.jpg', 'caption': 'A bullet train is going through a tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344513.jpg', 'caption': 'A train pulled into a station with skylights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344513.jpg', 'caption': 'A speeding bullet train docking into a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344513.jpg', 'caption': 'A silver train traveling into a train station next to a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344513.jpg', 'caption': 'A large passenger train passes through a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561647.jpg', 'caption': 'A new home banner sits beside a small curvy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561647.jpg', 'caption': 'There are not any pedestrians using the crosswalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561647.jpg', 'caption': 'A stop sign by a major highway intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561647.jpg', 'caption': 'Stop sign across from a development selling estate homes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561647.jpg', 'caption': 'A stop sign by a cross roads on the roads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235242.jpg', 'caption': 'A gray train riding on a track as people are walking. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235242.jpg', 'caption': 'a train that is on a train track thats next to a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235242.jpg', 'caption': 'Train sitting on track with another track beside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235242.jpg', 'caption': 'A train with a red stop sign Cal train logo sitting on the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235242.jpg', 'caption': 'Train engine passing an outside station platform, in California.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359442.jpg', 'caption': 'A set of five train tracks in front of a graffiti covered wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359442.jpg', 'caption': 'A train car that has some graffiti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359442.jpg', 'caption': 'some train cars with graffiti painted on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359442.jpg', 'caption': 'Spray painted boxcars are parked in a mostly empty train yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359442.jpg', 'caption': 'a train car with some graffit all over the side of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370678.jpg', 'caption': 'a green and blue parking meter siting on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370678.jpg', 'caption': 'A green parking meter sits on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370678.jpg', 'caption': 'A green parking meter on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370678.jpg', 'caption': 'A parking meter sitting idly on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370678.jpg', 'caption': 'Multi colored parking meter with a parking sign on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072860.jpg', 'caption': 'A red and white tug boat drifting in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072860.jpg', 'caption': 'A tug boat out on a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072860.jpg', 'caption': 'A picture of a red chug boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072860.jpg', 'caption': 'A red boat is out on the water while buildings can be seen across the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072860.jpg', 'caption': 'A large red tugboat navigating shallow channel waters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476339.jpg', 'caption': 'Parking meter that is expired, with damp street below', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476339.jpg', 'caption': 'A metal parking meter sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476339.jpg', 'caption': 'a black parking meter on a green pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476339.jpg', 'caption': 'A rainy street scene has a yellow line with a car moving by it, and in the foreground, a parking meter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476339.jpg', 'caption': 'An old looking coin meter that has expired on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085097.jpg', 'caption': 'A train parked in front of a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085097.jpg', 'caption': 'A small train is parked at the station on the track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085097.jpg', 'caption': 'A train is stationary at a station waiting for passengers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085097.jpg', 'caption': 'a purple and yellow train that is near other tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085097.jpg', 'caption': 'A train resting on the tracks at a train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302200.jpg', 'caption': 'A parking meter sitting in the snow next to a parked car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302200.jpg', 'caption': 'A parking meter at a street side with snow around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302200.jpg', 'caption': 'A car is parked on a street next to a parking meter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302200.jpg', 'caption': 'a parking meter on the side of a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302200.jpg', 'caption': 'A parking machine that is next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536795.jpg', 'caption': 'Parking meter with a solar panel on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536795.jpg', 'caption': 'A machine that is on a sidewalk near cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536795.jpg', 'caption': 'A solar powered parking meter on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536795.jpg', 'caption': 'A solar powered parking meter in a downtown location.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536795.jpg', 'caption': 'A parking meter with a solar panel on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418435.jpg', 'caption': 'A parking meter sitting on a sidewalk next to a parked red car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418435.jpg', 'caption': 'A street side ATM which transmits information by satellite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418435.jpg', 'caption': 'A solar power parking meter on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418435.jpg', 'caption': 'A solar powered parking kiosk on a brick sidewalk near the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418435.jpg', 'caption': 'A solar-powered parking meter sits on the sidewalk on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182895.jpg', 'caption': 'A parking lot with a line of parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182895.jpg', 'caption': 'A row of parking meters sits next to the parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182895.jpg', 'caption': 'A parking filled with parking meters and palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182895.jpg', 'caption': 'A row of parking meters shown in a deserted parking lot with surrounding palm trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182895.jpg', 'caption': 'The parking meters are lined up down the street.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000266176.jpg', 'caption': 'A pile of ripe bananas sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266176.jpg', 'caption': 'A group of bananas sit on a tray in a messy room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266176.jpg', 'caption': 'Bananas, garlic and a plastic container on a white tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063549.jpg', 'caption': 'A man stands on a snowy hill with skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063549.jpg', 'caption': 'A man standing on a mountain top wearing skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063549.jpg', 'caption': 'a man on skis stands on a snowy hill ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063549.jpg', 'caption': 'a man is wearing yellow and blue in skis in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063549.jpg', 'caption': 'A skier stands at the top of a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135785.jpg', 'caption': 'a kid performs a trick on a skate board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135785.jpg', 'caption': 'A man riding a skateboard into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135785.jpg', 'caption': 'A person doing a trick on a skateboard while another person is in the distance holding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135785.jpg', 'caption': 'Skateboarder playing in a deserted, concrete city square', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135785.jpg', 'caption': 'A man jumps into the air in an outdoor plaza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338375.jpg', 'caption': 'A group of three people standing next to each other on a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338375.jpg', 'caption': 'A group of people in skis on a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338375.jpg', 'caption': 'There people in snow gear standing on slope with skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338375.jpg', 'caption': 'A group of people holding snow ski equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338375.jpg', 'caption': 'A group of people in ski gear at a snow filled slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377111.jpg', 'caption': 'A boy is doing a trick on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377111.jpg', 'caption': 'A young man doing tricks on a skateboard using a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377111.jpg', 'caption': 'A guy on a skate board up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377111.jpg', 'caption': 'THERE IS A BOY THAT IS JUMPING ON THE SKATE BOARD', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377111.jpg', 'caption': 'Boy on a skateboard in mid air at a public space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099592.jpg', 'caption': 'A man with a skateboard flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099592.jpg', 'caption': 'A man holding a skateboard in one hand and flyimg a kite in his ither hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099592.jpg', 'caption': 'A man is flying a kite high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099592.jpg', 'caption': 'A man flying a kite with a skateboard in his hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099592.jpg', 'caption': 'there is a man holding a skateboard and flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099647.jpg', 'caption': 'A clear bowl of broccoli and chopped nuts. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099647.jpg', 'caption': 'A food entree is served in a dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099647.jpg', 'caption': 'A bowl full of broccoli and a mystery topping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099647.jpg', 'caption': 'a bowl of broccoli topped with chopped nuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099647.jpg', 'caption': 'Prepared dish of broccoli and nuts served in a glass bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199133.jpg', 'caption': 'A table topped with lots of different ingredients for food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199133.jpg', 'caption': 'A counter covered with many various food items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199133.jpg', 'caption': 'There are various food items on a kitchen counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199133.jpg', 'caption': 'Several containers on a counter, containing milk, an egg, flavoring, fruit and utensils', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199133.jpg', 'caption': 'A table with measuring cups and bowls on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421703.jpg', 'caption': 'A saute pan of broccoli and onions stirred by a wooden spoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421703.jpg', 'caption': 'A meal is being prepared in a wok that includes onions and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421703.jpg', 'caption': 'A large black skillet containing broccoli and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421703.jpg', 'caption': 'vegetable stir fry cooking in a wok with a wooden spoon stirring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421703.jpg', 'caption': 'Someone sauteing broccoli and onions with wooden spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493683.jpg', 'caption': 'The bowl has mushrooms, broccoli and meat with chopsticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493683.jpg', 'caption': 'a bowl of some kind of food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493683.jpg', 'caption': 'A bowl full of Chinese vegetable and chicken with chopsticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493683.jpg', 'caption': 'Asian stirfry dish with mushrooms, meat, and broccoli sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493683.jpg', 'caption': 'A meal of beef, broccoli, and mushrooms is eaten with chopsticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439092.jpg', 'caption': 'A man wearing a clown wig while riding on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439092.jpg', 'caption': 'Two people posing on a mountain wearing skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439092.jpg', 'caption': 'Group of skiers in colorful outfits on top of a mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439092.jpg', 'caption': 'Two people that are standing beside one another while wearing snow skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439092.jpg', 'caption': 'Two people riding skis at a ski slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060970.jpg', 'caption': 'a plate of rice and broccoli with meat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060970.jpg', 'caption': 'A meal of a broccoli and beef melody with a side of white rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060970.jpg', 'caption': 'A plate with a mound of rice and a serving of chicken with broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060970.jpg', 'caption': 'A white plate holding broccoli, meat and rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060970.jpg', 'caption': 'A small square plate of broccoli with seeds and a scoop of rice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335976.jpg', 'caption': 'some broccoli and potatoes with seed on top in a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335976.jpg', 'caption': 'A bunch of broccoli sitting in the middle of the bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335976.jpg', 'caption': 'A vegetable dish with broccoli is served in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335976.jpg', 'caption': 'a plate of brocolli and sesame seeds in a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335976.jpg', 'caption': 'Food dish filled with broccoli and chicken topped with seeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185444.jpg', 'caption': 'a guy in a half pipe gets ready for his trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185444.jpg', 'caption': 'Several people skate in a skate park in a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185444.jpg', 'caption': 'guys on a course made for skate boarding', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185444.jpg', 'caption': 'A man standing on top of a wooden skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185444.jpg', 'caption': 'A wooden skateboard ramp with a person at the top of the ramp with a skateboard at his feet and other people around the ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207178.jpg', 'caption': 'Two people standing on top of snow with skis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207178.jpg', 'caption': 'Two people posing for a picture, in the middle of a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207178.jpg', 'caption': 'A man and a child on skis pose for a picture in front of a snowy stand of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207178.jpg', 'caption': 'The man and child smile while wear skis in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207178.jpg', 'caption': 'Man and young boy posing for photo during ski outing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516813.jpg', 'caption': 'A young man on skis is skiing on the mountain slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516813.jpg', 'caption': 'A young boy in skis and ski gear in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516813.jpg', 'caption': 'A little boy in ski gear riding down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516813.jpg', 'caption': 'A small child on skies smiling in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516813.jpg', 'caption': 'A child smiling and skiing in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137622.jpg', 'caption': 'A young boy on the skateboard at the skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137622.jpg', 'caption': 'a little dude shredding the gnar at a local skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137622.jpg', 'caption': 'A boy learning to skateboard in a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137622.jpg', 'caption': 'A young boy riding on a skateboard with a red truck in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137622.jpg', 'caption': 'A boy is riding on his skateboard while turned and looking behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292170.jpg', 'caption': 'A grocery store display filled with lots of apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292170.jpg', 'caption': 'THERE IS AN OPEN MAKRET WITH A LOT OF APPLES FOR SALE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292170.jpg', 'caption': 'TONS OF BASKETS OF APPLES FOR SALE AT AN OUTSIDE MARKET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292170.jpg', 'caption': 'Open air market in the city with baskets of red apples for sale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292170.jpg', 'caption': 'A market with many baskets of apples being sold. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381195.jpg', 'caption': 'Two white bowls that are sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381195.jpg', 'caption': 'Bowl of broccoli next to beans on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381195.jpg', 'caption': 'A square dish filled with fresh broccoli sits next to a dish containing some sort of seed or bean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381195.jpg', 'caption': 'a bowl with broccoli next to a bowl with a lentil in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381195.jpg', 'caption': 'a plate of broccoli being prepared to be eaten ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000831.jpg', 'caption': 'A man on a skateboard is performing a trick at the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000831.jpg', 'caption': 'A man jumping a skateboard with tall buildings in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000831.jpg', 'caption': 'A young male in the air with his skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000831.jpg', 'caption': 'A skateboarder on his board in mid air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000831.jpg', 'caption': 'A man does a skateboard trick at a park in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145824.jpg', 'caption': \"A man with a backpack on ski's hiking up the side of a mountain.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145824.jpg', 'caption': 'Person on skis with a backpack trekking through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145824.jpg', 'caption': 'A guy cross country skis across the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145824.jpg', 'caption': 'A skier heading up a very steep snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145824.jpg', 'caption': 'A person with backpack cross country skiing on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131527.jpg', 'caption': 'The broccoli florets are blue and green in color before cooking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131527.jpg', 'caption': 'a couple of broccoli stalk pieces and leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131527.jpg', 'caption': 'The are lots of pieces of fresh broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131527.jpg', 'caption': 'A close up of chopped broccoli florets with some leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131527.jpg', 'caption': 'close up shot of a bunch of uncooked broccoli florets ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121788.jpg', 'caption': 'A person on skis in the snow pulling on a cord.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121788.jpg', 'caption': 'A man riding skis behind another person towing a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121788.jpg', 'caption': 'A skier is being towed over the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121788.jpg', 'caption': 'A boy on skis being towed by another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121788.jpg', 'caption': 'A person on snow skis is pulling a rope that is attached to something heavy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259233.jpg', 'caption': 'a variety of a different type of vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259233.jpg', 'caption': 'Broccoli and cashew mix cooking for a dinner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259233.jpg', 'caption': 'A vegetable succotash has cashews, broccoli and sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259233.jpg', 'caption': 'A close up view of foof including broccoli, peppers and onions. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259233.jpg', 'caption': 'The broccoli is mixed with nuts, vegetables, and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368268.jpg', 'caption': 'a pole is above a couple of skies', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368268.jpg', 'caption': 'We are looking down at the skis of a skier riding a ski lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368268.jpg', 'caption': 'A first person view of someone about to ski down a mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368268.jpg', 'caption': 'A person sitting on a ski lift wearing two large skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368268.jpg', 'caption': 'Looking down at skies from chairlift and snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368528.jpg', 'caption': 'A man riding skis on a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368528.jpg', 'caption': 'A man on skis in the snow with some snow covered hills in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368528.jpg', 'caption': 'A man is standing in the snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368528.jpg', 'caption': 'A man posed and ready to ski on a ski hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368528.jpg', 'caption': 'Two skiers on a snowy mountain on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304834.jpg', 'caption': 'A girl coming home from the store on her skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304834.jpg', 'caption': 'A young girl carrying bags while riding a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304834.jpg', 'caption': 'A skateboarder is carrying groceries on his board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304834.jpg', 'caption': 'A young girl riding a skateboard while carrying a plastic bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304834.jpg', 'caption': 'A skateboarder carrying shopping bags glides down a neglected urban sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084130.jpg', 'caption': 'a man riding a skateboard down a curvy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084130.jpg', 'caption': 'People wearing helmets in a skateboard competition down curvy sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084130.jpg', 'caption': 'The gaily dressed skateboarder cruises along on his sweet ride.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084130.jpg', 'caption': 'a skate boarder going down a steep hill while wearing a black helmet and skating outfit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084130.jpg', 'caption': 'person skating fast down an empty road in a race', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423480.jpg', 'caption': 'GALA APPLES ON DISPLAY IN A PRODUCE DEPARTMENT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423480.jpg', 'caption': 'A large group of red delicious apples are on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423480.jpg', 'caption': 'A group of apples in trays next to a metal area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423480.jpg', 'caption': 'a red pile of apples at a supermarket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423480.jpg', 'caption': 'Several rows of stacked apples sit in a market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318147.jpg', 'caption': 'A single female rides her skateboard on a level surface beneath a huge palm tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318147.jpg', 'caption': 'A woman on a skateboard rides in a courtyard under some Native artwork', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318147.jpg', 'caption': 'A pretty young lady riding a skateboard nest to a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318147.jpg', 'caption': 'A girl with long hair riding on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318147.jpg', 'caption': 'A girl rides her skateboard in a public place', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134285.jpg', 'caption': 'A man on skis gliding through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134285.jpg', 'caption': 'A person skiing over the snow clad mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134285.jpg', 'caption': 'A skier is headed down the snowy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134285.jpg', 'caption': 'A person on skis riding down a slope with sun in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134285.jpg', 'caption': 'A guy skiing down a snowwy maintain slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536791.jpg', 'caption': 'Man on a skateboard coming down a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536791.jpg', 'caption': 'A young man riding a skateboard over a stone bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536791.jpg', 'caption': 'A skateboarder rides along a diagonally slanted wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536791.jpg', 'caption': 'A skateboarder doing tricks on the walls outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536791.jpg', 'caption': 'an image of a boy playing on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415135.jpg', 'caption': 'Three men sitting on a ski lift at ski resort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415135.jpg', 'caption': 'some people sitting on a tram to take them to the top of the mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415135.jpg', 'caption': 'Many persons are skiing on the snow covered mountains in a row.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415135.jpg', 'caption': 'A group of three men sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415135.jpg', 'caption': 'Men riding the ski lift down a slope ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392781.jpg', 'caption': 'A man riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392781.jpg', 'caption': 'A male skier heading down a steep ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392781.jpg', 'caption': 'Man crouched down on skis on a sunny, snowy mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392781.jpg', 'caption': 'A man skiing on a snowy slope with poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392781.jpg', 'caption': 'A man is skiing down hill in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531115.jpg', 'caption': 'A dish with mean inside of it .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531115.jpg', 'caption': 'A table with a metal plate holding pieces of meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531115.jpg', 'caption': 'A food entree is served in a dish with decoration.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531115.jpg', 'caption': 'Pieces of steak with garnish on steel plate on table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531115.jpg', 'caption': 'Seared steaks in a metal pan garnished with parsley', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095808.jpg', 'caption': 'A young man with a laptop bag travels on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095808.jpg', 'caption': 'a person riding a skate board on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095808.jpg', 'caption': 'A man skateboards in front of a group of runners.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095808.jpg', 'caption': 'The man is carrying a bag and skating down the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095808.jpg', 'caption': 'A man rides a skateboard while people are running a foot race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384523.jpg', 'caption': 'An assortment of fruit and vegetables includes lime, pickles, carrots, and radishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384523.jpg', 'caption': 'A mixture of fruit and vegetables on a piece of tin foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384523.jpg', 'caption': 'Various fruits and vegetables wrapped in aluminum foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384523.jpg', 'caption': 'Assorted fruits and vegetables are arranged in aluminum foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384523.jpg', 'caption': 'Assorted vegetables in a tin foil curled bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093735.jpg', 'caption': 'A bunch of kids skateboarding off of various objects in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093735.jpg', 'caption': 'Two skaters show off their skateboarding skills to the crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093735.jpg', 'caption': 'A man riding a skateboard on the side of a car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093735.jpg', 'caption': 'A man is doing skateboard tricks near an old car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093735.jpg', 'caption': 'A group of guys that are skateboarding together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302599.jpg', 'caption': 'some skateboarders doing tricks and people watching them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302599.jpg', 'caption': 'Boys skateboarding over a rusty car onto platforms, with an audience watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302599.jpg', 'caption': 'A group of kids doing stunts at a skating event ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302599.jpg', 'caption': 'Skateboarders are doing tricks as a crowd watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302599.jpg', 'caption': 'A group of teens performing stunts at a skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558528.jpg', 'caption': 'Men are taking pictures of a skater grinding on a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558528.jpg', 'caption': 'A group of people doing skateboarding tricks on a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558528.jpg', 'caption': 'The boys is skateboarding in the parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558528.jpg', 'caption': 'A boy is doing skateboard tricks on an old car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558528.jpg', 'caption': 'Several people standing in a skate park with people watching them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376545.jpg', 'caption': 'A young man flipping a skateboard through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376545.jpg', 'caption': 'Two people skateboarding on a city sidewalk in jackets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376545.jpg', 'caption': 'Two people on skateboards, one is doing tricks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376545.jpg', 'caption': 'Two skate boarders and one of them mid-jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376545.jpg', 'caption': 'Two skateboarders doing tricks next to a coffee house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160351.jpg', 'caption': 'A young man skating near a residential area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160351.jpg', 'caption': 'A young man skate boarding at night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160351.jpg', 'caption': 'A person standing on a skate board in an alley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160351.jpg', 'caption': 'A young man riding a skateboard down a walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160351.jpg', 'caption': 'A person standing still on a skateboard, on concrete.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050245.jpg', 'caption': 'A skateboarder flipping his skateboard going down a ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050245.jpg', 'caption': 'A person doing a trick on a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050245.jpg', 'caption': 'a guy does a trick on his skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050245.jpg', 'caption': 'A person on a skateboard doing a trick on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050245.jpg', 'caption': 'The boy practices his skateboarding skills on his homemade park, using wooden railings and large pieces of plywood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289076.jpg', 'caption': 'Skateboarder wearing all black going up a wooden ramp on his board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289076.jpg', 'caption': 'A person doing tricks on a wooden skateboard ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289076.jpg', 'caption': 'A person pushes a skateboard up a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289076.jpg', 'caption': 'A blurry image of someone on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289076.jpg', 'caption': 'The kid is skate boarding up the ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400915.jpg', 'caption': 'a person on a skateboard that is at a skate parke', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400915.jpg', 'caption': 'a male skateboarder in a black shirt doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400915.jpg', 'caption': 'a man is skateboarding in a bowl outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400915.jpg', 'caption': 'A man on a skateboard riding on the edge of a metal object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400915.jpg', 'caption': 'A man skateboarding in a concert skatepark in front of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394033.jpg', 'caption': 'A man standing on a sidewalk behind a cart of carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394033.jpg', 'caption': 'A man is standing in front of a cart full of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394033.jpg', 'caption': 'A pile of carrots sitting on top of a metal wagon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394033.jpg', 'caption': 'The man is selling carrots from the stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394033.jpg', 'caption': 'A sales person selling his wares on a older wooden cart. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292428.jpg', 'caption': \"A man's feet resting on a skateboard \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292428.jpg', 'caption': 'A skateboard being used as a footrest by two tennis shoe clad feet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292428.jpg', 'caption': 'A thighs-down view of person wearing khaki shorts, with tennis socks and blue, laced shoes in front of a skateboard on pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292428.jpg', 'caption': \"A person's black shoes are against a skateboard\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292428.jpg', 'caption': \"a man's feet in shoes and a skateboard on concrete\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214391.jpg', 'caption': 'Sandwiches and beverages sitting on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214391.jpg', 'caption': 'Two bottles of soda sit near a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214391.jpg', 'caption': 'A table topped with two sandwiches and bottles of beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214391.jpg', 'caption': 'A sandwich and two bottled drinks sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214391.jpg', 'caption': 'Sandwiches and drinks sit on a table to be eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550702.jpg', 'caption': 'there are many different plates of food on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550702.jpg', 'caption': 'A table with food in bowls and on plates ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550702.jpg', 'caption': 'Table setting with soup, bread and plates of vegetables and rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550702.jpg', 'caption': 'The meal on a plate is next to a bowl of soup, and plate of rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550702.jpg', 'caption': 'The food was set out on the dining table and ready to eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225751.jpg', 'caption': 'A close up picture of carrots, corn and other foods on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225751.jpg', 'caption': 'This plate is full of cooked carrots, corn, and greens', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225751.jpg', 'caption': 'A white plate holds corn, carrots and spinach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225751.jpg', 'caption': 'there is a food dish consisting of corn, carrots, as well as green and red vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225751.jpg', 'caption': 'A plate of food has carrots and corn on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044767.jpg', 'caption': 'A white plate topped with fish, vegetables and a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044767.jpg', 'caption': 'A fork sitting next to a piece of chicken', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044767.jpg', 'caption': 'Some grilled fish is on a white plate with a fork and some carrots. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044767.jpg', 'caption': 'A fork lays on a white plate next to some shredded carrots and a piece of cooked fish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044767.jpg', 'caption': 'a silver fork and some sliced carrots and fish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430319.jpg', 'caption': 'The cat is on the mans lap even when he is trying to use his laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430319.jpg', 'caption': 'A person sits holding a cat near a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430319.jpg', 'caption': 'A black and white picture of someone holding a black cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430319.jpg', 'caption': 'a cat on a persons lap near a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430319.jpg', 'caption': 'A woman with a cat in her lap sitting in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092804.jpg', 'caption': 'people walking and skiing along part of a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092804.jpg', 'caption': ' people skating on a the mountains full of snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092804.jpg', 'caption': 'there are a few skiers climbing up this tall mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092804.jpg', 'caption': 'People are skiing down a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092804.jpg', 'caption': 'A group of people who are hiking up a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271888.jpg', 'caption': 'Some yogurt and baby carrots with dip are on this plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271888.jpg', 'caption': 'A plate of food with baby carrots and yogurt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271888.jpg', 'caption': 'a plate of carrots and ranch and a side of yogurt ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271888.jpg', 'caption': 'Carrots and dressing on a plate with some yogurt. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271888.jpg', 'caption': 'A plate topped with baby carrots, a cup of dressing and yogurt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045433.jpg', 'caption': 'A snow skier is on the white snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045433.jpg', 'caption': 'A person skis on a snowy forested slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045433.jpg', 'caption': 'A man riding skis in front of a snow filled forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045433.jpg', 'caption': 'a person riding skis on a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045433.jpg', 'caption': 'A man wearing a backpack going downhill on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508119.jpg', 'caption': 'A young man riding skis down the side of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508119.jpg', 'caption': 'Somebody is gotten in the peaceful of the picture. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508119.jpg', 'caption': \"A man that is standing on ski's in the snow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508119.jpg', 'caption': 'Person riding down snowy hill on a pair of skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508119.jpg', 'caption': 'A skier is skis down a snowy hill on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121006.jpg', 'caption': 'A boy kneeling down by his skateboard and holding up his arm cast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121006.jpg', 'caption': 'A boy with a cast is kneeling by a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121006.jpg', 'caption': 'A boy next to a skateboard wearing an arm cast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121006.jpg', 'caption': 'A young man kneeling in the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121006.jpg', 'caption': 'A boy shows off his arm cast on his skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474448.jpg', 'caption': 'A man kneeling down in the snow next to his small son on skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474448.jpg', 'caption': 'A man talking to a child on skis in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474448.jpg', 'caption': 'A man is teaching a small child to ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474448.jpg', 'caption': 'A man and a kid on skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474448.jpg', 'caption': 'A kneeling adult instructing a child on how to ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410380.jpg', 'caption': 'A woman washing carrots on a counter in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410380.jpg', 'caption': 'A woman stands at a kitchen counter covered with vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410380.jpg', 'caption': 'A woman preparing vegetables at a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410380.jpg', 'caption': 'A woman at a kitchen counter in front of a few bunches of variously colored carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410380.jpg', 'caption': 'A beautiful woman standing in a kitchen preparing food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297425.jpg', 'caption': 'a birthday cake is being cut by a knife ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297425.jpg', 'caption': 'A birthday cake topped with decorations and the number twenty-two ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297425.jpg', 'caption': 'Birthday cake being sliced by a large knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297425.jpg', 'caption': 'Someone is cutting the blue birthday cake with two no. 2 candles on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297425.jpg', 'caption': 'A sheet cake covered in blue frosting and two number 2 candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559454.jpg', 'caption': 'a female wearing short shorts and cutting a cake with a knife', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559454.jpg', 'caption': 'A girl in a green shirt and denim skirt cutting a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559454.jpg', 'caption': 'A woman in a short skirt cutting a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559454.jpg', 'caption': 'a woman in a skirt cuts a cake ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559454.jpg', 'caption': 'A woman cutting a cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495438.jpg', 'caption': 'A shirtless person cutting a heart shaped cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495438.jpg', 'caption': 'A birthday cake in the shape of a heart is being cut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495438.jpg', 'caption': 'A child cutting a birthday cake on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495438.jpg', 'caption': 'Close up of an arm cutting a birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495438.jpg', 'caption': 'A child is cutting a birthday cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532211.jpg', 'caption': 'A bot with a large drink cup jumping his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532211.jpg', 'caption': 'Skateboarder in mid air, performing a trick on board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532211.jpg', 'caption': 'A man riding a skateboard while flying into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532211.jpg', 'caption': 'A skateboarder performing an airborne trick with a cup in one hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532211.jpg', 'caption': 'A teenaged boy on a school campus holding a soda and jumping on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072737.jpg', 'caption': 'a man is doing a trick on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072737.jpg', 'caption': 'a man skating on a very high level with his hands up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072737.jpg', 'caption': 'The eye view shows a unique view of the skateboarder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072737.jpg', 'caption': 'a boy grinding down a rail on a skate board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072737.jpg', 'caption': 'A male skateboarding on a railing with a guy watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570680.jpg', 'caption': 'a person that is on a black skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570680.jpg', 'caption': 'Skat boarder performing trick on rail in skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570680.jpg', 'caption': 'Person standing on skateboard at skate park at night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570680.jpg', 'caption': 'A person in blue is riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570680.jpg', 'caption': 'A skateboarder at a skating park in the evening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155007.jpg', 'caption': 'a teenager playing in a skate park with a skateboard\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155007.jpg', 'caption': 'A man flipping a skateboard off of a rail in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155007.jpg', 'caption': 'Skateboarder caught mid-flight from a ramp at a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155007.jpg', 'caption': 'A person that is doing a skateboarding trick in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155007.jpg', 'caption': 'A man is jumping high on a skate board over a ramp ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220187.jpg', 'caption': 'A man riding a skateboard on a rail at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220187.jpg', 'caption': 'A skateboarder is grinding a rail at a skatepark at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220187.jpg', 'caption': 'A man does tricks on his skateboard on a rail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220187.jpg', 'caption': 'Man wearing a helmet taking a jump with a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220187.jpg', 'caption': 'A skateboarder balances on a skateboard on a skateboarding arena at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391365.jpg', 'caption': 'A man riding a skate board up a metal rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391365.jpg', 'caption': 'A man in the air on a skateboard doing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391365.jpg', 'caption': 'a man on a skateboard performs a trick using a railing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391365.jpg', 'caption': 'A man wearing a bandana jumps his skateboard over a railing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391365.jpg', 'caption': 'A young man doing a trick on a skating rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239785.jpg', 'caption': 'a man is snowboarding on a snowy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239785.jpg', 'caption': 'A man on snow skis traveling down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239785.jpg', 'caption': 'a person riding skis on a snowy surface ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239785.jpg', 'caption': 'A man snow boarding down a hill looks across the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239785.jpg', 'caption': 'A skier going down a mountain with the sun behind them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342377.jpg', 'caption': \"Farmer's market style display of carrots, celery, egg plants and squash.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342377.jpg', 'caption': 'Fresh vegetables piled up for sale in a super market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342377.jpg', 'caption': 'Sweet potatoes, eggplant, and other vegetables in a produce aisle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342377.jpg', 'caption': 'many types of vegetables in the vegetable section of a market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342377.jpg', 'caption': 'A vegetable stand containing carrots and other vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030534.jpg', 'caption': 'A person on skis jumps down a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030534.jpg', 'caption': 'Skier in mid air after performing a small jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030534.jpg', 'caption': 'The skier is jumping into the air over the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030534.jpg', 'caption': 'A skier making a small jump on the slopes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030534.jpg', 'caption': 'A person leaping into the air as they ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558458.jpg', 'caption': 'A woman points at her plate of spaghetti. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558458.jpg', 'caption': 'A person that is smiling holding some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558458.jpg', 'caption': 'a close up of a person holding a plate of spaghetti ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558458.jpg', 'caption': 'A woman is smiling while eating spaghetti and a hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558458.jpg', 'caption': 'A woman smiling while eating a plate of spaghetti and hot dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130812.jpg', 'caption': 'A skateboarder jumping off a skateboard ramp performing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130812.jpg', 'caption': 'A man jumping up in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130812.jpg', 'caption': 'Man on skateboard mid air during a jump. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130812.jpg', 'caption': 'A person is high in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130812.jpg', 'caption': 'a male skateboarder in a black shirt is doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246005.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246005.jpg', 'caption': 'A young man doing tricks on a skateboard at a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246005.jpg', 'caption': 'A skate boarder is holding his board in a jump', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246005.jpg', 'caption': 'A guy doing a trick in the air with a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246005.jpg', 'caption': 'a man holding his skateboard as he does a jump in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230884.jpg', 'caption': 'A boy in a helmet rides a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230884.jpg', 'caption': 'A person in a helmet riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230884.jpg', 'caption': 'Small boy in a blue shirt riding on a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230884.jpg', 'caption': 'A person wears a helmet as they ride a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230884.jpg', 'caption': 'A man riding a skateboard down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105040.jpg', 'caption': 'A half a sandwich sitting on top of a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105040.jpg', 'caption': 'A plate with a very tasty looking sandwich and salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105040.jpg', 'caption': 'a plate with a sandwich, salad and dressing on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105040.jpg', 'caption': 'A half sandwich and a side salad on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105040.jpg', 'caption': 'A plate with a small salad and sandwich on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134223.jpg', 'caption': 'A white plate topped with a hot dog, french fries and condiments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134223.jpg', 'caption': 'Plate of food that includes a sausage, bread and french fries with dipping sauces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134223.jpg', 'caption': 'I plate of food including a hot dog and some french fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134223.jpg', 'caption': 'A plate of fries and a hotdog with condiments. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134223.jpg', 'caption': 'A hot dog and fries with several condiments are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350688.jpg', 'caption': 'the man is leaning over taking a picture of another man ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350688.jpg', 'caption': 'A cameraman taking a photo of a skateboarder in action.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350688.jpg', 'caption': 'A guy on a skate board on the side of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350688.jpg', 'caption': 'One man photographs a skateboarder as he climbs up the ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350688.jpg', 'caption': 'A young man, without his shirt, is having his picture taken on the skateboarding ramp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236996.jpg', 'caption': 'A person holding a hot dog with a white wrapper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236996.jpg', 'caption': 'The foot long hotdog in the bun is drizzed with golden mustard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236996.jpg', 'caption': 'a person holding a long hot dog in a bun with mustard on a paper napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236996.jpg', 'caption': 'A person holding a hot dog on a napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236996.jpg', 'caption': 'a long hot dog with mustard and ketchup on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412464.jpg', 'caption': 'This sandwich has a side of salad on the plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412464.jpg', 'caption': 'A sandwich and salad and fries with a dip', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412464.jpg', 'caption': 'A plate with a sandwich and salad greens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412464.jpg', 'caption': 'A prepared meal is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412464.jpg', 'caption': 'A white plate topped with a cut in half sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322480.jpg', 'caption': 'A plate topped with a sandwich covered in seeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322480.jpg', 'caption': 'A sandwich with a knotted style bread, meat, and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322480.jpg', 'caption': 'A big sandwich with tomato and cheese on a plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322480.jpg', 'caption': 'A delicious looking sandwich on a plate with cheese and onion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322480.jpg', 'caption': 'A sandwich with cheese and bacon on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039072.jpg', 'caption': 'A man holding up a mustard covered hot dog to his own face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039072.jpg', 'caption': 'A man opening his mouth to eat a hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039072.jpg', 'caption': 'A person eating a hot dog on a bun with mustard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039072.jpg', 'caption': 'A man has an open mouth holding a hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039072.jpg', 'caption': 'A man opens his mouth toward a hot dog with mustard on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336320.jpg', 'caption': 'a large hot dog that is on some paper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336320.jpg', 'caption': 'a close up of a hot dog with cheese on a paper plate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336320.jpg', 'caption': 'a hot dog with a bunch of toppings on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336320.jpg', 'caption': 'The hot dog is topped with several delicious ingredients.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336320.jpg', 'caption': 'A sandwich loaded with cheese and other toppings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335047.jpg', 'caption': 'A hot dog with red peppers as a topping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335047.jpg', 'caption': 'A bun with food in it wrapped in a paper towel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335047.jpg', 'caption': 'A large toasted sandwich covered in fried peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335047.jpg', 'caption': 'Sandwich in a carton topped with lots of red peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335047.jpg', 'caption': 'A long sandwich is topped with red peppers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495388.jpg', 'caption': 'Two hot dogs sitting on top of a foam container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495388.jpg', 'caption': 'Two long hot dogs sit in to go containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495388.jpg', 'caption': 'a meal of two hot dogs and some onion rings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495388.jpg', 'caption': 'Two hotdogs with onion rings on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495388.jpg', 'caption': 'Two chili dogs on a food tray with a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013379.jpg', 'caption': 'A man doing a trick on a skateboard on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013379.jpg', 'caption': 'Young man skateboarding on a road near a parked vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013379.jpg', 'caption': 'A guy in jeans does a jumping trick on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013379.jpg', 'caption': 'A man attempts a trick on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013379.jpg', 'caption': 'A guy doing a flip trick on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309859.jpg', 'caption': 'a kid does a trick on a skate board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309859.jpg', 'caption': 'A man is riding a skateboard in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309859.jpg', 'caption': 'A young male skateboarder leaps above his board in the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309859.jpg', 'caption': 'This is a man about to fall on his face from failing a skateboard trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309859.jpg', 'caption': 'A young man doing tricks on the street with a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138675.jpg', 'caption': 'A person is standing on a snowy hill overlooking a valley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138675.jpg', 'caption': 'a man is standing on a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138675.jpg', 'caption': 'A person is standing near a ski-lift with a view of mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138675.jpg', 'caption': 'A person on a snowy mountain holds onto something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138675.jpg', 'caption': 'A man stands beside a ski lift on a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466425.jpg', 'caption': 'Two hot dogs on buns and unpeeled corn on the cob on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466425.jpg', 'caption': 'Hotdog sandwiches sitting on ears of corn on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466425.jpg', 'caption': 'A plate that has hot dogs and corn on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466425.jpg', 'caption': 'There are two hotdogs on the plate underneath unshucked corn. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466425.jpg', 'caption': 'The hotdogs are on the plate with corn on the cob.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380754.jpg', 'caption': 'A woman with glasses that is holding a piece of bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380754.jpg', 'caption': 'A woman wearing red glasses holding a piece of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380754.jpg', 'caption': 'a young lady wearing glasses and smiling while holding a piece of eaten dessert', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380754.jpg', 'caption': 'A woman eating something wearing glasses outside ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380754.jpg', 'caption': 'Woman in red glasses grinning while holding half a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546832.jpg', 'caption': 'Two women pose with a hot dog at an outdoor function', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546832.jpg', 'caption': 'The two women are smiling while eating hot dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546832.jpg', 'caption': 'The two women smile as they eat food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546832.jpg', 'caption': 'Two women are posing with their food at an event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546832.jpg', 'caption': 'Pair of young women making ironic gestures in tent area with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277162.jpg', 'caption': 'A hot dog with toppings and condiments in a paper wrapper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277162.jpg', 'caption': 'There are a lot of ingredients on this hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277162.jpg', 'caption': 'A delicious pile of condiments complement a hot dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277162.jpg', 'caption': 'A loaded hot dog with mustard and ketchup on white paper ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277162.jpg', 'caption': 'A hot dog buried under a pile of toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310572.jpg', 'caption': 'Sandwiches, beer and a bowl of salad are being served on the dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310572.jpg', 'caption': 'a beer and cole slaw sitting next to a sandwich ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310572.jpg', 'caption': 'A sandwich cut in half with a beer and salad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310572.jpg', 'caption': 'a gray plate with a sandwich a bowl and a bottle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310572.jpg', 'caption': 'A bottle of beer next to a sandwich and a bowl of salad. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141760.jpg', 'caption': 'The person holding the doughnut is looking through its hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141760.jpg', 'caption': 'A man looks through the hole of a large doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141760.jpg', 'caption': 'A young person looks through a donut hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141760.jpg', 'caption': 'A doughnut that a person is using to see out of.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141760.jpg', 'caption': 'Blonde haired person looking through the hole of a big doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162902.jpg', 'caption': 'A group of four people standing next to each other in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162902.jpg', 'caption': 'Gourd of snowboarders posing for a picture on side of slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162902.jpg', 'caption': 'A group of people standing in the snow with snowboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162902.jpg', 'caption': 'a group of people with surf board standing on some snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162902.jpg', 'caption': 'a group of people with snow board stand on the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248920.jpg', 'caption': 'A hotdog next to a plate of chili cheese fries on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248920.jpg', 'caption': 'Hot dog and loaded fries sitting next to a drink on a counter top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248920.jpg', 'caption': 'a paper plate with a hot dog and french fries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248920.jpg', 'caption': 'a hot dog with ketchup and some French fries with cheese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248920.jpg', 'caption': 'A hotdog with ketchup, mustard, and relish. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480490.jpg', 'caption': 'A man standing on a snow covered slope holding a board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480490.jpg', 'caption': 'a woman snowboarder holds her snowboard in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480490.jpg', 'caption': 'A person standing on a snowy mountain with a snowboard in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480490.jpg', 'caption': 'A person holding a snow board vertical in front of them a wooded snowy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480490.jpg', 'caption': 'A young man is holding a snowboard in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384416.jpg', 'caption': 'A man pointing at a hand held pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384416.jpg', 'caption': 'A man has a pizza in on a narrow street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384416.jpg', 'caption': 'Man standing posing for the camera with a personal pizza in one hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384416.jpg', 'caption': 'A man standing in a street showing off a small piece of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384416.jpg', 'caption': 'Man makes gang signals as standing on street holding pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351396.jpg', 'caption': 'A set of pizzas sitting on top of a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351396.jpg', 'caption': 'A counter with a variety of pizzas lined up in a row. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351396.jpg', 'caption': 'Pizza bar containing different pizza topping on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351396.jpg', 'caption': 'A variety of pizzas are on a counter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351396.jpg', 'caption': 'Several large cooked pizzas in a room on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577887.jpg', 'caption': \"Part of a pizza is displayed showing it's toppings. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577887.jpg', 'caption': 'A partial view of a thin crust pizza with asparagus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577887.jpg', 'caption': 'A closeup of a pizza on a wooden tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577887.jpg', 'caption': 'Thin crust pizza with meat and vegetable on wooden palate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577887.jpg', 'caption': 'A close-up of a pizza with ham and spinach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283743.jpg', 'caption': 'A display of chocolate donuts and some pink and white cookies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283743.jpg', 'caption': 'A view of an assortment of sugary snacks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283743.jpg', 'caption': 'A well stocked buffet table that is in a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283743.jpg', 'caption': 'trays of frosted cupcakes in a display case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283743.jpg', 'caption': 'There are some yummy looking treats with chocolate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571449.jpg', 'caption': 'A person holding a pastry with maggots in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571449.jpg', 'caption': 'some worms standing in the middle of a little donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571449.jpg', 'caption': 'there is a donut that has many worms in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571449.jpg', 'caption': 'A person holding a tasty looking treat with insects on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571449.jpg', 'caption': 'The person is holding a pastry with worms in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412571.jpg', 'caption': 'A tray filled with lots of different flavored donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412571.jpg', 'caption': 'A white tray holding various donuts next to a yellow box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412571.jpg', 'caption': 'a close up of a pile of doughnuts on ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412571.jpg', 'caption': 'A variety of doughnuts stacked together in a display case.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000454203.jpg', 'caption': 'A kitchen scene with yellow walls and a checkered floor pattern.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300324.jpg', 'caption': 'A white and black checkered floor in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300324.jpg', 'caption': 'A checkered design kitchen floor with a black fridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300324.jpg', 'caption': 'A room with yellow painted walls and black and white checkered floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300324.jpg', 'caption': 'A yellow kitchen with black and white checkered linoleum flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300324.jpg', 'caption': 'A kitchen with a dining area and black and white checkered floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408449.jpg', 'caption': 'The man is walking down the street with no shirt on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408449.jpg', 'caption': 'a shirtless man skating down a somewhat busy road at night ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408449.jpg', 'caption': 'A person on a skateboard on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408449.jpg', 'caption': 'A man with no shirt on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408449.jpg', 'caption': 'A shirtless smiling man skates down a street with his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297787.jpg', 'caption': 'A person in a room with knives and scissors hanging on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297787.jpg', 'caption': 'A person sitting in front of several knives being displayed on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297787.jpg', 'caption': 'a person is standing near a bunch of cutting instruments', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297787.jpg', 'caption': 'A woman looking down while standing in a room with a bunch of knives', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297787.jpg', 'caption': 'A woman with dread locks in a kitchen beside a wall of knives and scissors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549171.jpg', 'caption': 'A young woman is curling her long hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549171.jpg', 'caption': 'There is a woman holding scissors to her hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549171.jpg', 'caption': 'A woman that is holding her hair and a pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549171.jpg', 'caption': 'A woman looks apprehensive as she prepares to cut her own hair with scissors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549171.jpg', 'caption': 'a lady cutting her own hair with a pair of huge scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425569.jpg', 'caption': 'A large professional kitchen has a stainless steel counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425569.jpg', 'caption': 'The restaurant kitchen is closed until lunch tomorrow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425569.jpg', 'caption': 'The large, industrial sized kitchen has many pots and pans. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425569.jpg', 'caption': 'A commercial kitchen is full of clean dishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425569.jpg', 'caption': 'a kitchen with a bunch of appliances inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004296.jpg', 'caption': 'A kitchen that is in the process of having the floors done ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004296.jpg', 'caption': 'A kitchen that is in the process of a renovation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004296.jpg', 'caption': 'A kitchen wit ha lot of tools and other items in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004296.jpg', 'caption': 'A kitchen with a white stove top oven and a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004296.jpg', 'caption': 'this kitchen seems to be being fixed or under construction', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153901.jpg', 'caption': 'A glass cup full of some drinks set on a table counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153901.jpg', 'caption': 'an image of a glass of wine on the counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153901.jpg', 'caption': 'A marble counter holding a glass of white wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153901.jpg', 'caption': 'A glass of wine sitting on a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153901.jpg', 'caption': 'A wineglass with wine on top of a dining table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464831.jpg', 'caption': 'People are in a circle at a table on laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464831.jpg', 'caption': 'A group of people engaged at a business conference.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464831.jpg', 'caption': 'People with laptops sitting in a semi-circle around a conference room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464831.jpg', 'caption': 'a meeting room with several people and laptops discussing a project', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464831.jpg', 'caption': 'A room filled with people sitting at desk using laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208871.jpg', 'caption': 'An older man carrying a plate of food and making a silly face. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208871.jpg', 'caption': 'A man walks through a kitchen with a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208871.jpg', 'caption': 'A man carrying a plate with food on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208871.jpg', 'caption': 'A man holding a plate of food while standing in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208871.jpg', 'caption': 'A man opening the oven with food in one hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192458.jpg', 'caption': 'Various bowls with food in them sit on the counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192458.jpg', 'caption': 'A stove top and counter is full of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192458.jpg', 'caption': 'There are bowls of vegetables next to a large pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192458.jpg', 'caption': 'The first picture is blank, there is nothing here.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192458.jpg', 'caption': 'A pan filled with something on top of a stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334050.jpg', 'caption': 'a shelf with a bunch of stuff on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334050.jpg', 'caption': 'A wall shelf holds an assortment of items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334050.jpg', 'caption': 'A shelf has many different items displayed on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334050.jpg', 'caption': 'A unique bookshelf is pictured that contains a lot of pots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334050.jpg', 'caption': 'The crooked shelving is unstable and will eventually fall down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556205.jpg', 'caption': 'Two individuals riding bicycles on a board walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556205.jpg', 'caption': 'People riding bikes on a small wooden pier that stretches far into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556205.jpg', 'caption': 'Two people riding bikes down a boardwalk by a body of water and some docked boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556205.jpg', 'caption': 'People and boats around a pier as the sun sets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556205.jpg', 'caption': 'A person rides a bike down a pier at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548706.jpg', 'caption': 'A bathroom sink and towels hanging on the door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548706.jpg', 'caption': 'Two towels hanging on a door of a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548706.jpg', 'caption': 'A bathroom with a sink and two burgundy towels on the door. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548706.jpg', 'caption': 'A bathroom with checkered tile and maroon towels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548706.jpg', 'caption': 'A bathroom with a checkered black and white tile floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049097.jpg', 'caption': 'A bike and a dog on the sidewalk outside a red building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049097.jpg', 'caption': 'a dog sitting on a side walk with a bike near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049097.jpg', 'caption': 'A black and white dog standing next to a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049097.jpg', 'caption': 'Bicycle parking outside a store with a dog along side it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049097.jpg', 'caption': 'a dog and a bike sitting next to a red wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015006.jpg', 'caption': 'A restroom filled with graffiti and two toilet stalls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015006.jpg', 'caption': 'A public restroom has graffiti all over the stall walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015006.jpg', 'caption': 'Bathroom with two toilets and graffiti on the walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015006.jpg', 'caption': 'There is a large amount of graffiti drawn on the bathroom walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015006.jpg', 'caption': 'Bathroom stalls with graffiti written on the walls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070815.jpg', 'caption': 'a small dog is tied up to a bike outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070815.jpg', 'caption': 'A dog chained to a post beside a bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070815.jpg', 'caption': 'a bicycle is leaning against a pole outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070815.jpg', 'caption': 'The little dog is tied to the bicycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070815.jpg', 'caption': 'a black and white dog a bicycle and a person and buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407915.jpg', 'caption': 'A white sink and mirror in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407915.jpg', 'caption': 'Bathroom scene of a sink and decorations surrounded by pink walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407915.jpg', 'caption': 'A bath room painted in pink with feminine decor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407915.jpg', 'caption': 'A home bathroom obviously decorated by a woman', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407915.jpg', 'caption': 'A bathroom sink sitting underneath a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467000.jpg', 'caption': 'a rainy day with people on the road with umbrellas and a person with a cycle waiting in the shade. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467000.jpg', 'caption': 'An older man standing and watching pedestrians on a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467000.jpg', 'caption': 'A gentleman waiting out the rain with a bicycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467000.jpg', 'caption': 'MAN WITH AN UMBRELLA AND A BICYCLE GETTING OUT OF THE RAIN', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467000.jpg', 'caption': 'A man in plaid shirt standing by a bicycle next to street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416733.jpg', 'caption': 'a dirty room packed with a bunch of stuff', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416733.jpg', 'caption': 'There is a room with things all over the place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416733.jpg', 'caption': 'An interior room with clutter overlooking the city and water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416733.jpg', 'caption': 'A living room filled with furniture and lots of clutter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416733.jpg', 'caption': 'A messy living area with various items all over the place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203912.jpg', 'caption': 'A bike parked on a sidewalk near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203912.jpg', 'caption': 'a bike on the street being parked at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203912.jpg', 'caption': 'A bike standing on a sidewalk next to a road at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203912.jpg', 'caption': 'A bicycle is parked on a brick sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203912.jpg', 'caption': 'A bike in the road with its shadow on the ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032990.jpg', 'caption': 'A kitchen sink sitting next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032990.jpg', 'caption': 'A black and white, checkerboard bathroom with a red towel hanging up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032990.jpg', 'caption': 'A red towel hanging in a black and white bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032990.jpg', 'caption': 'the bathroom is tiled black and white floors\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032990.jpg', 'caption': 'a bath room with a toilet a sink and a mirror ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029449.jpg', 'caption': 'A small bathroom has a toilet, sink, mirror, and a small trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029449.jpg', 'caption': 'Shower view of the toilet next to the sink with a large mirror above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029449.jpg', 'caption': 'A compact home bathroom with toilet, pedestal sink, and tub/shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029449.jpg', 'caption': 'A small bathroom with a toilet and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029449.jpg', 'caption': 'Corner view of a home restroom with toilet, mirror, sink, and bathroom products.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398606.jpg', 'caption': 'A bathroom with a reflection of a television and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398606.jpg', 'caption': 'A bathroom with a sink and mirror and tissues on the counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398606.jpg', 'caption': 'Bathroom area with multiple sinks and mirrors with television reflected.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398606.jpg', 'caption': 'A sink and mirror in a motel room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398606.jpg', 'caption': 'A bathroom with a television, sink and two boxes of tissues. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408143.jpg', 'caption': 'there is a glass vase with a cloudy liquid in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408143.jpg', 'caption': 'A table topped with a mushroom and vase filled with liquid.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408143.jpg', 'caption': 'The jar of fluid is next to a mushroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408143.jpg', 'caption': 'a vase half filled with water and a mushroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408143.jpg', 'caption': 'A milky residue is at the bottom of the vase on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540388.jpg', 'caption': 'A shower head with an electric device hooked up to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540388.jpg', 'caption': 'A removable, adjustable sprayer in a shower is running', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540388.jpg', 'caption': 'a shower head in a shower with water coming out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540388.jpg', 'caption': 'A fancy massage shower head mounted on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540388.jpg', 'caption': 'an image of a shower head that is by the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159500.jpg', 'caption': 'The narrow corridor of a restroom for men with stalls and urinals. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159500.jpg', 'caption': \"A burgundy and white tiled public men's restroom\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159500.jpg', 'caption': 'A bathroom with tiled floors with stall doors and urinals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159500.jpg', 'caption': 'A white bathroom with wall mounted urinals and stalls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159500.jpg', 'caption': \"A narrow men's room features no privacy for its urinals. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459219.jpg', 'caption': 'A white colored vanity area with a mirror, sink and double light on the wall above the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459219.jpg', 'caption': 'A bathroom vanity is adorned with an elegant lighting fixture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459219.jpg', 'caption': 'Bathroom counter with lighting on over mirror and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459219.jpg', 'caption': 'A bathroom has decorations hanging on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459219.jpg', 'caption': 'a bathroom with a sink a mirror and a towel holder', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389445.jpg', 'caption': 'A bathroom showing a necklace rack and toiletries grouped on the sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389445.jpg', 'caption': 'A bathroom with hygene products and a place to put necklaces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389445.jpg', 'caption': 'A bathroom with a sink, counter and electrical outlet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389445.jpg', 'caption': 'A bathroom sink sitting under a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389445.jpg', 'caption': 'Personal care items and jewelry are next to a bathroom sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103856.jpg', 'caption': 'a glass walled shower in a small bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103856.jpg', 'caption': 'A fairly modern bath with tiles a clear glass shower door and a bowl sink, with a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103856.jpg', 'caption': 'A sink sitting in the middle of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103856.jpg', 'caption': 'A white bathroom sink sitting next to a walk in shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103856.jpg', 'caption': 'A shower and a white sink with a wooden cabinet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281353.jpg', 'caption': 'A bathroom with a toilet sitting next to a tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281353.jpg', 'caption': 'An open bathroom door with a toilet and shower tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281353.jpg', 'caption': 'A door open into a tiled bathroom with a shower and toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281353.jpg', 'caption': 'A toilet and shower curtain in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281353.jpg', 'caption': 'A small bathroom is shown from a door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120340.jpg', 'caption': 'a man putting his bike on a rack in front of the bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120340.jpg', 'caption': 'Man inspects bicycle on the front of a city commuter bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120340.jpg', 'caption': 'A man is placing a bicycle on the front of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120340.jpg', 'caption': 'A man putting a bike on the front of a metro bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120340.jpg', 'caption': 'A bus driver putting a bike on front of a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415843.jpg', 'caption': 'A row of three wall mounted urinals in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415843.jpg', 'caption': 'Blurry photograph of a modern public restroom with urinals', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415843.jpg', 'caption': 'Three urinals with modern wavy dividers between them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415843.jpg', 'caption': \"A public men's restroom has three urinals. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415843.jpg', 'caption': 'THERE ARE THREE URINALS IN THE BATHROOM STALL', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385001.jpg', 'caption': 'A white sink sitting under a bathroom window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385001.jpg', 'caption': 'A bathroom toilet, sink, and wooden hamper and cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385001.jpg', 'caption': 'A bathroom that has one window and a white toilet and sink under the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385001.jpg', 'caption': 'Bathroom scene dominated by brightly sunlit window over pedestal sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385001.jpg', 'caption': 'A bathroom with a white toilet and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571635.jpg', 'caption': 'A bathroom with a toilet, sink, and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571635.jpg', 'caption': 'A full bathroom with a wicker laundry basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571635.jpg', 'caption': 'A little bathrood decorated with many colorful objects', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571635.jpg', 'caption': 'A small bathroom containing a toilet and sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571635.jpg', 'caption': 'Bathroom containing a toilet, a sink and a wicker basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434098.jpg', 'caption': 'A tiled bathroom with a single vanity, toilet and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434098.jpg', 'caption': 'a bath room with a toilet a mirror and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434098.jpg', 'caption': 'Three pictures are framed above a toilet in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434098.jpg', 'caption': 'Picture of a bathroom with three paintings over the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434098.jpg', 'caption': 'In a bathroom, three scenic photos, framed in black, are hung above the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526767.jpg', 'caption': 'A bathroom with a stall shower and a white sink basin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526767.jpg', 'caption': 'A bathroom with raised shower, sink, widow and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526767.jpg', 'caption': 'A full view of a bathroom with the shower and sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526767.jpg', 'caption': 'A bathroom with a sink and shower stall only.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526767.jpg', 'caption': 'A simple gray bathroom including sink and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299077.jpg', 'caption': 'A bathroom showing sink, toilet, and shower ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299077.jpg', 'caption': 'An old average looking bathroom that looks clean to use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299077.jpg', 'caption': 'A bathroom with a toilet, sink, mirror and a shower stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299077.jpg', 'caption': 'A white toilet sitting next to a walk in shower near sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299077.jpg', 'caption': 'A corner of a rest room with a shower with glass walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058133.jpg', 'caption': \"A white bathroom mirror mounted to it's wall.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058133.jpg', 'caption': 'A mirror over a shelf with a light and a shelf below.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058133.jpg', 'caption': 'The medicine cabinet, shelf and light fixture in an old bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058133.jpg', 'caption': 'a frosted bathroom mirror hanging on a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058133.jpg', 'caption': 'A medicine cabinet that is on a wall in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050350.jpg', 'caption': 'A white tub sitting next to a toilet in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050350.jpg', 'caption': 'A bathroom with a toilet and a bath tub and wooden walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050350.jpg', 'caption': 'A restroom with a bathtub and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050350.jpg', 'caption': 'There is a bath tub and a toilet in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050350.jpg', 'caption': 'A bathtub that has a blue mat inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204832.jpg', 'caption': 'a bathroom with bright lights and white carpet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204832.jpg', 'caption': 'A light is reflected in the large bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204832.jpg', 'caption': 'A hotel bathroom sink with black counter tops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204832.jpg', 'caption': 'A bathroom area with sink and a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204832.jpg', 'caption': 'a black and white counter a sink mirror and a light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024924.jpg', 'caption': 'A bathroom scene with a bathtub and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024924.jpg', 'caption': 'A large yellow walled bathroom with white curtains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024924.jpg', 'caption': 'A bathroom with marble bath tub and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024924.jpg', 'caption': 'A bathroom view shows a white shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024924.jpg', 'caption': 'A hotel bathroom has towels as well as a shower, mirror, and scale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480472.jpg', 'caption': 'Women smiling looking into a mirror while fixing their hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480472.jpg', 'caption': 'Pair of adult women in bathroom looking at mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480472.jpg', 'caption': 'Two young women smiling in mirror of a public restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480472.jpg', 'caption': 'Two women taking pictures of themselves with a camera in a public bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480472.jpg', 'caption': 'Two woman pose for a picture in front of the mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553558.jpg', 'caption': 'A white sink sitting underneath a mirror in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553558.jpg', 'caption': 'A small little table with some toiletries next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553558.jpg', 'caption': 'a bathroom with a little desk next to a white sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553558.jpg', 'caption': 'Bathroom with white tiled walls and white oval mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553558.jpg', 'caption': 'A bathroom with a desk and a small sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477791.jpg', 'caption': 'A cat looking out of a vehicle window during rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477791.jpg', 'caption': 'A cat sitting on the side of a car door window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477791.jpg', 'caption': 'A cat ridding in a car looking out the window with a small building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477791.jpg', 'caption': 'A cat looking out a window of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477791.jpg', 'caption': 'The cat was sitting in the car looking out at the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124462.jpg', 'caption': 'A orange tabby cat laying down on a black car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124462.jpg', 'caption': 'An orange cat laying on the hood on a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124462.jpg', 'caption': 'A cat sits on top of a black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124462.jpg', 'caption': 'A cat that is sitting on top of a black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124462.jpg', 'caption': 'A yellow cat sleeping on the hood of a black car parked in the garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198775.jpg', 'caption': 'A red and black smart car parked next to a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198775.jpg', 'caption': 'The red and black compact car is parked on a street with a green parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198775.jpg', 'caption': 'A small car in a small parking space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198775.jpg', 'caption': 'A small electric car parked in a spot on a street side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198775.jpg', 'caption': 'How many people are able to fit into this itty-bitty car?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115229.jpg', 'caption': 'A lawn sitting on a snowy sidewalk by a hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115229.jpg', 'caption': 'a lawn chair on a sidewalk in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115229.jpg', 'caption': 'A lawn chair on a snowy sidewalk in the rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115229.jpg', 'caption': 'A lawn chair sits outside in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115229.jpg', 'caption': 'A chair sitting at a fire hydrant near a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349101.jpg', 'caption': 'A car accident between a car and a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349101.jpg', 'caption': 'A car crashed into a passenger train next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349101.jpg', 'caption': 'A transit train and a black car have collided in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349101.jpg', 'caption': 'A car that appears to have hit a trolley', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349101.jpg', 'caption': 'A white train colliding with a black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497504.jpg', 'caption': 'A walkway suspended over a street with a clock mounted to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497504.jpg', 'caption': 'A bridge spanning over a street with a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497504.jpg', 'caption': 'A building overpass displays and advertisement for office space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497504.jpg', 'caption': 'I clock on a bridge that goes over a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497504.jpg', 'caption': 'A clock and sign on overpass with cars driving below. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276964.jpg', 'caption': 'An above snap shot of a flushing toilet bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276964.jpg', 'caption': 'The toilet is in the process of being cleaned. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276964.jpg', 'caption': 'a close up of a toilet with tiled floors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276964.jpg', 'caption': 'White toilet being flushed in tiled floor bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276964.jpg', 'caption': 'Blue foam that is sitting inside of a blue toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491872.jpg', 'caption': 'A person pouring water into a drain from a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491872.jpg', 'caption': 'a man pouring water from a blue bowl onto a with object', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491872.jpg', 'caption': 'A man pours water from a blue bowl into a white basin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491872.jpg', 'caption': 'The man is cleaning the toilet bowl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491872.jpg', 'caption': 'A person pouring a bowl filled with water into another bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306140.jpg', 'caption': 'two legs a toilet a stall door and white tile', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306140.jpg', 'caption': \"A men's bathroom door with a large window cut in the bottom of the door. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306140.jpg', 'caption': 'a half bathroom door showing the bottom half of someones legs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306140.jpg', 'caption': 'A toilet cubicle door that you can see through the bottom half, revealing a mans feet and calves standing in front of a toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306140.jpg', 'caption': 'A bathroom stall door that only goes half way down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214042.jpg', 'caption': 'A pile of toilet paper sitting on top of a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214042.jpg', 'caption': 'Three packs of bath tissue stacked on a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214042.jpg', 'caption': 'Some toilet papers are stacked up on top of a toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214042.jpg', 'caption': 'Several stacks of bath tissue stacked on top of a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214042.jpg', 'caption': 'Three packages of toilet paper sitting on top of a toilet seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039267.jpg', 'caption': 'A woman is kneeling down next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039267.jpg', 'caption': 'A woman sitting on a bathroom floor leaning over a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039267.jpg', 'caption': 'Women wearing black clothes sitting next to the toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039267.jpg', 'caption': 'a girl in a blue top a toilet and a bidet and blue tiles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039267.jpg', 'caption': 'A woman that is kneeling next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107907.jpg', 'caption': 'Artistic toilet piece sitting in the center of a museum gallery. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107907.jpg', 'caption': 'A toilet seat turned into a piece of artwork at a art room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107907.jpg', 'caption': 'Tall toilet covered in artwork and seat shaped like a instrument. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107907.jpg', 'caption': 'A modern art piece on display in a museum.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107907.jpg', 'caption': 'A small toilet bowl on display in the center of a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378163.jpg', 'caption': 'The grinch riding a motorcycle with a small dog with antlers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378163.jpg', 'caption': 'A man on a motorcycle with a green painted face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378163.jpg', 'caption': 'A man and dog on a motorcycle in Christmas costumes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378163.jpg', 'caption': 'A man painted green wearing a Santa Claus costume and his dog ride a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378163.jpg', 'caption': 'A person with a painted face is riding a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495357.jpg', 'caption': 'A dog sitting on top of a motorcycle in an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495357.jpg', 'caption': 'A monkey is riding a motorcycle down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495357.jpg', 'caption': 'A group of people watch a dog ride a motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495357.jpg', 'caption': 'a person walking behind a motorcycle with a dog on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495357.jpg', 'caption': 'A dog rides on a motorcycle while a man walks behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300245.jpg', 'caption': 'The bathroom is neatly decorated in a retro style.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300245.jpg', 'caption': 'A neat, organized bathroom with bathroom furniture and decor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300245.jpg', 'caption': 'A white sink and toilet in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300245.jpg', 'caption': 'A clean bathroom with two towels on a towel rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300245.jpg', 'caption': 'bathroom with a toilet with the lid up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216664.jpg', 'caption': 'A cat sitting on top of a white toilet in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216664.jpg', 'caption': 'A cat sitting on top of a toilet bowl in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216664.jpg', 'caption': 'A cat sitting on the toilet lid in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216664.jpg', 'caption': 'Small cat looking out from a top a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216664.jpg', 'caption': 'Calico cat is sitting on the toilet seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117718.jpg', 'caption': 'A row of urinals stand on a wall in a bathroom area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117718.jpg', 'caption': 'A row of urinals that has two short ones at the very end.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117718.jpg', 'caption': 'Urinals at differet levels in a bathroom with a brick floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117718.jpg', 'caption': 'a row of urinals in a public bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117718.jpg', 'caption': 'A row of 5 toilets, the last 2 are at different height than the first 3. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142718.jpg', 'caption': 'A red motorcycle riding down one side of the street and a cow walking down the other side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142718.jpg', 'caption': 'A motorcyclist going past a black cow on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142718.jpg', 'caption': 'A man on a motorcycle photo shopped into a picture ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142718.jpg', 'caption': 'A guy on a red motor bike rides next to some cows. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142718.jpg', 'caption': 'A man on a motorcycle riding past a herd of cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423173.jpg', 'caption': 'A man in yellow jacket on black motorcycle with a tan teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423173.jpg', 'caption': 'A person on a motorcycle with a giant teddy on back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423173.jpg', 'caption': 'The cyclist is carrying a very large teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423173.jpg', 'caption': 'A man on a motorcycle with a very large teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423173.jpg', 'caption': 'A man on a motorcycle with a huge teddy bear riding with him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101172.jpg', 'caption': 'A local hero rides through the streets of town on his motorcycle with stuffed animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101172.jpg', 'caption': 'A man on his motorcycle with a teddy bear attached.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101172.jpg', 'caption': 'A man rides a motorcycle that is decorated with three teddy bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101172.jpg', 'caption': 'The man is on a motorcycle with three stuffed animals fastened on at the headlight and each front tire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101172.jpg', 'caption': 'A man riding on a motorcycle with three stuffed teddy bears attached to the motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564003.jpg', 'caption': 'A restroom stall with a white toilet and a toilet paper dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564003.jpg', 'caption': 'A public toilet seat with public toilet paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564003.jpg', 'caption': 'The small room contains a toilet and toilet paper dispenser. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564003.jpg', 'caption': 'A toilet sits under a toilet paper dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564003.jpg', 'caption': 'A toilet and toilet paper dispenser are in the stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362240.jpg', 'caption': 'Two motorcycles parked beside one another in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362240.jpg', 'caption': \"A row of motorcycles in garage with deer's head in background.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362240.jpg', 'caption': 'Motorcycles sitting beside each other in a garage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362240.jpg', 'caption': 'A couple of motorcycles parked in a quite spacious garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362240.jpg', 'caption': 'A group of parked motorcycles in a garage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041322.jpg', 'caption': 'A cat wearing a sweater and glasses under a book shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041322.jpg', 'caption': 'a cat in a red shirt is wearing some glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041322.jpg', 'caption': 'The cat under the table wears glasses and a sweater.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041322.jpg', 'caption': 'A cat is sitting under a shelf wearing a pair of glasses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041322.jpg', 'caption': 'A cat wearing a sweater and a pair of glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579226.jpg', 'caption': 'A large clock on the side of a building has biblical pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579226.jpg', 'caption': 'A clock on a building with people painted around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579226.jpg', 'caption': 'a clock with religious icons painted on a wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579226.jpg', 'caption': 'A clock mounted to the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579226.jpg', 'caption': 'A clock with Latin writing and paintings on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576160.jpg', 'caption': 'The interior of a public bathroom with multiple sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576160.jpg', 'caption': 'A lined with four sinks under a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576160.jpg', 'caption': 'a blue and white bathroom with a mirror and four sinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576160.jpg', 'caption': 'A bathroom is decorated in bright blue marble designs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576160.jpg', 'caption': 'A colorful bathroom with four sinks in front of a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579463.jpg', 'caption': 'Two horses grazing in a field with ruins in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579463.jpg', 'caption': 'Two houses grazing in a field next to a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579463.jpg', 'caption': 'two horses are eating grass in a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579463.jpg', 'caption': 'A couple of horses standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579463.jpg', 'caption': 'two horses standing in the grass by a bighouse ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472160.jpg', 'caption': 'A person on a motorcycle with a stuffed reindeer on the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472160.jpg', 'caption': 'A person sitting on a bike on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472160.jpg', 'caption': 'there is a woman wearing a pink scarf on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472160.jpg', 'caption': 'A man on a motorcycle has a stuffed Rudolph on his windshield. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472160.jpg', 'caption': 'A man is riding a motorcycle with a stuffed reindeer mounted on the front. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230615.jpg', 'caption': 'A man riding down the street in a horse and carriage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230615.jpg', 'caption': 'A group of cars parked in a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230615.jpg', 'caption': 'A horse drawn carriage comes down the street on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230615.jpg', 'caption': 'a horse drawn carriage on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230615.jpg', 'caption': 'The cars are sharing the busy road with the horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145544.jpg', 'caption': 'A black dog in a bathroom drinking out of the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145544.jpg', 'caption': 'a dog with its head in a toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145544.jpg', 'caption': 'A dog is putting his head in the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145544.jpg', 'caption': 'A black dog with a red collar is drinking out of a toilet bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145544.jpg', 'caption': 'A black dog drinking from a white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162677.jpg', 'caption': 'A white toilet in a bathroom next to a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162677.jpg', 'caption': 'Black and white photograph of a bathroom with sink and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162677.jpg', 'caption': 'A dimly lit bathroom just has a toilet and dirty sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162677.jpg', 'caption': 'Light and dark walled restroom with sink and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162677.jpg', 'caption': 'The small bathroom has a small sink and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332221.jpg', 'caption': 'People walk by a row of parked motorcycles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332221.jpg', 'caption': 'A row of motorcycles is parked on the street as people walk by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332221.jpg', 'caption': 'A group of people on street next to a row of motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332221.jpg', 'caption': 'A woman looking a motorcycles with balloons lined up on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332221.jpg', 'caption': 'A group of motorcycles parked next to each other on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103163.jpg', 'caption': 'A man riding on the back of a motorcycle next to a muscle man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103163.jpg', 'caption': 'Two people are next to a small motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103163.jpg', 'caption': 'A man leans next to a man on a motorcycle, next to a bunch of old furniture and other cast off items, including tires. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103163.jpg', 'caption': 'A man on a moped smoking a cigarette with another man standing next to him with his arm around him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103163.jpg', 'caption': \"A man sitting on a motorcycle smoking with another man's arm around him.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275929.jpg', 'caption': 'a bunch of toilets laying on some cement stairs next to a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275929.jpg', 'caption': 'Several broken toilets lie on a cement staircase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275929.jpg', 'caption': 'A few toilet bowls and sinks sitting outside on some steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275929.jpg', 'caption': 'Several bathroom fixtures are sitting on the stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275929.jpg', 'caption': 'Broken toilets and sinks are outside on the stairwell.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561500.jpg', 'caption': 'A storage room full with wooden furniture and bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561500.jpg', 'caption': 'A back alley with two mopeds and various furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561500.jpg', 'caption': 'motorcycle and bike stored away next to some chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561500.jpg', 'caption': 'A room filled with a motorcycle and lots of junk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561500.jpg', 'caption': 'A bicycle is in a storage closet near other old objects.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137004.jpg', 'caption': 'Baskets of oranges and a basket of pears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137004.jpg', 'caption': 'apples in buckets ready to be sold and other fruit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137004.jpg', 'caption': 'A basket of pears surrounded by baskets of oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137004.jpg', 'caption': 'Several bowls filled with oranges and one with pears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137004.jpg', 'caption': 'Multiple baskets filled with fruit including oranges and pears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243456.jpg', 'caption': 'Two cats sitting on a sill looking out the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243456.jpg', 'caption': 'two cats in a home office looking out of a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243456.jpg', 'caption': 'Two cats in an office look out the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243456.jpg', 'caption': 'The large adult cats sit calmly on a work desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000243456.jpg', 'caption': 'two black cats sitting by a window looking outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295051.jpg', 'caption': 'a close up of a cat on a desk near stuffed animals ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295051.jpg', 'caption': 'black cat sitting near a printer with 2 stuffed animals', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295051.jpg', 'caption': 'A black cat sitting on desk with two teddy bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295051.jpg', 'caption': 'A black cat is standing on the desk with a printer and small stuffed bears. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295051.jpg', 'caption': 'A black cat on a desk with a printer and two stuffed bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333140.jpg', 'caption': 'A black cat sitting at a computer desk topped with a monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333140.jpg', 'caption': 'The cat is at the desk near the computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333140.jpg', 'caption': 'A black cat setting on a computer desk.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333140.jpg', 'caption': 'This is a picture of a black cat by a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333140.jpg', 'caption': 'Black, green-eyed cat sitting by a computer desk and monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365444.jpg', 'caption': 'A man riding a motorcycle with a helmet on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365444.jpg', 'caption': 'There is a man driving a red motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365444.jpg', 'caption': 'A person on a motor bike on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365444.jpg', 'caption': 'An advertising photograph of a motor cycle rider', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365444.jpg', 'caption': 'The man on the motorcycle is traveling down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571012.jpg', 'caption': 'A woman in white jacket on skateboard in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571012.jpg', 'caption': 'A woman standing on a skate board in an office. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571012.jpg', 'caption': 'A woman standing on a skateboard inside an office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571012.jpg', 'caption': 'A woman standing on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571012.jpg', 'caption': 'a woman on a skating board in a room smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480553.jpg', 'caption': 'A bathroom with a small toilet and a brown lid and a larger white toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480553.jpg', 'caption': 'A white toilet sitting next to another toilet in a restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480553.jpg', 'caption': 'Two toilets are together with no separation in a public bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480553.jpg', 'caption': 'Looking down at a bidet designated with a pictogram ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480553.jpg', 'caption': 'Toilet bowls in a public bathroom with a sign behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040842.jpg', 'caption': 'A computer monitor sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040842.jpg', 'caption': 'Lazy cat on a workstation shelf above a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040842.jpg', 'caption': 'cat laying on the top shelf above the computer monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040842.jpg', 'caption': 'A cat laying on a shelf over a computer screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040842.jpg', 'caption': 'Computer screen displaying a page of small print. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508302.jpg', 'caption': 'A man is sitting on a little scooter in traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508302.jpg', 'caption': 'Looking out from a vehicle onto the street at a man on a motor bike and a car stopped in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508302.jpg', 'caption': 'a man riding a red moped stopped at a stop light ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508302.jpg', 'caption': 'Man on a scooter parked at a traffic stop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508302.jpg', 'caption': 'An individual is doing something that is uncommonly entrancing. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328780.jpg', 'caption': 'A cat is sleeping on a computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328780.jpg', 'caption': 'A black cat is sleeping on a wooden desk next to a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328780.jpg', 'caption': 'A black cat sleeping on a desk next to a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328780.jpg', 'caption': 'A cat taking a nap on a desk beside a computer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328780.jpg', 'caption': 'A cat is sleeping on desk beside a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034196.jpg', 'caption': 'Two desktop computer monitors sitting on a desk with a keyboard and mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034196.jpg', 'caption': 'A dual monitored computer atop a corner-fitting glass tabletop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034196.jpg', 'caption': 'A desk with two computer monitors and a wired keyboard and mouse.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034196.jpg', 'caption': 'two computer screen with keyboard on a glass desk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034196.jpg', 'caption': 'An office area set up with multiple monitors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434467.jpg', 'caption': 'A man riding a motorcycle in pink furry boots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434467.jpg', 'caption': 'A man on a motorcycle wearing pink fuzzy boots', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434467.jpg', 'caption': 'The man on the large black motorcycle has pink chaps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434467.jpg', 'caption': 'Biker in pink boots rides down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434467.jpg', 'caption': 'A motorcyclist in leather wearing hot pink furry boots', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531735.jpg', 'caption': 'a couple of motorcycles are parked outside of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531735.jpg', 'caption': 'There are 5 motor bikes lined up near the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531735.jpg', 'caption': 'Five motorcycles parked and a man standing next to one of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531735.jpg', 'caption': 'A row of motorcycles parked under a large stained glass window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531735.jpg', 'caption': 'a man standing talking on his phone in front of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371117.jpg', 'caption': 'A black and white cat sitting on the side of a computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371117.jpg', 'caption': 'Black and white cat with collar peeking out from behind monitor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371117.jpg', 'caption': 'A cat sitting next to a computer monitor next to a speaker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371117.jpg', 'caption': 'A black and white cat is sitting behind a speaker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371117.jpg', 'caption': 'A cat peeking around the side of a computer screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068005.jpg', 'caption': 'a dog with a plate of food on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068005.jpg', 'caption': 'A brown and white dog standing over a bowl of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068005.jpg', 'caption': 'A small dog looking up from his feeding bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068005.jpg', 'caption': 'A small dog looking up while standing in front of a food dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068005.jpg', 'caption': 'A brown and white dog looking at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427306.jpg', 'caption': 'A cubicle with two computers at the desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427306.jpg', 'caption': 'A desk that has two computers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427306.jpg', 'caption': 'An office cubicle with a desk, a laptop and desktop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427306.jpg', 'caption': 'A work station with a computer and a lap top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427306.jpg', 'caption': 'A computer is set up on the office desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169111.jpg', 'caption': 'MIXTURE OF FRUITS KEPT IN A BIG BOWL.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169111.jpg', 'caption': 'A big bowl of assorted fruit on display among a crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169111.jpg', 'caption': 'A glass bowl filled with fruit on a silver platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169111.jpg', 'caption': 'A large bowl of grapes, apples and oranges sits in a market stall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169111.jpg', 'caption': 'An open air market with a lot of fruits in a bowl ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406734.jpg', 'caption': 'A row of motor scooters at a motorcycle festival.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406734.jpg', 'caption': 'Crowds on the street walking around in town. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406734.jpg', 'caption': 'A stretch motorcycle is parked next to a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406734.jpg', 'caption': 'Several people walking down a sidewalk next to motorcycles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406734.jpg', 'caption': 'People walking by a row of motorcycles that are on the sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050942.jpg', 'caption': 'two males on computers and a gray keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050942.jpg', 'caption': 'a closeup of a computer keyboard and mouse with workers in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050942.jpg', 'caption': 'A computer keyboard with two men sitting beyond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050942.jpg', 'caption': 'The side of a computer keyboard with people in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050942.jpg', 'caption': 'A closeup view of a desk with a keyboard, mouse, and monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425266.jpg', 'caption': 'A fully furnished living room with a television leads into a bed room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425266.jpg', 'caption': 'A living room with a view and bedroom in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425266.jpg', 'caption': 'A living room with furniture with a look into the bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425266.jpg', 'caption': 'A hotel room with two chairs a couch and a tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425266.jpg', 'caption': 'Nice looking front room with brown furniture to decorate it with.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052161.jpg', 'caption': 'A woman riding a red motorcycle wearign a helmet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052161.jpg', 'caption': 'The woman is riding her motorcycle down the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052161.jpg', 'caption': 'A WOMAN RIDING ON A RED FLAMED MOTORCYCLE WEARING CHAPS.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052161.jpg', 'caption': 'A lone motorcyclist is on his bright red bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052161.jpg', 'caption': 'A woman riding on the back of a red motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175024.jpg', 'caption': 'A person sits on top of a motorcycle with a stuffed toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175024.jpg', 'caption': 'A person riding a motorcycle with a stuffed animal on the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175024.jpg', 'caption': 'A person on a motorcycle with a stuffed animal on back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175024.jpg', 'caption': 'A motorcyclist riding with a stuffed animal attached to the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175024.jpg', 'caption': 'A person in full leather riding a motorcycle with a stuff animal on the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569249.jpg', 'caption': 'A black cat is sitting on the bench and turning back its head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569249.jpg', 'caption': 'A black cat sitting on a bench in the open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569249.jpg', 'caption': 'A cat sitting on a bench in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569249.jpg', 'caption': 'A cat sitting on a bench in the sun ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569249.jpg', 'caption': 'a black cat sitting on a bench ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028675.jpg', 'caption': 'the bike is coming down the street with his lights on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028675.jpg', 'caption': 'The motorcycle rider is cruising the street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028675.jpg', 'caption': 'Two people ride the motorcycle on the city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028675.jpg', 'caption': \"It's a cloudy night for a ride on the motorcycle.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028675.jpg', 'caption': 'Police on a motorcycle drive down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409970.jpg', 'caption': 'a man sitting on a motorcycle in a bike shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409970.jpg', 'caption': 'A man sits on a motorcycle while another man makes adjustments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409970.jpg', 'caption': 'A man working on a motorbike in a garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409970.jpg', 'caption': 'Two people working on a white dirt bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409970.jpg', 'caption': 'A guy sits on a motorbike while another fixes it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477688.jpg', 'caption': 'A row of motorcyclists lined up while passer byers watch.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000203215.jpg', 'caption': 'An open book is on a table with a broken mask.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203215.jpg', 'caption': 'Half of a mask featuring large teeth and a slanted eye sit on a table near an open book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203215.jpg', 'caption': 'a book that is open and laying by a white mask', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179415.jpg', 'caption': 'A man sitting in front of a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179415.jpg', 'caption': 'The man is watching hockey on his computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179415.jpg', 'caption': 'A picture of a man watching a hockey game on a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179415.jpg', 'caption': 'A man sitting in the airport watching a hockey game on his laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179415.jpg', 'caption': 'A man watching sports on his laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561375.jpg', 'caption': 'A large brown bear sitting up against a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561375.jpg', 'caption': 'A stuffed bear in a basement and a outside view of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561375.jpg', 'caption': 'A painting with a bear and an office building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561375.jpg', 'caption': 'A teddy bear sitting in a corner near city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561375.jpg', 'caption': 'A teddy bear in an empty building and the outside of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471015.jpg', 'caption': 'A small store with various stuffed animals arranged in front of it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471015.jpg', 'caption': 'A group of stuffed animals sitting next to some ducks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471015.jpg', 'caption': 'An old coutnry store has a display of stuffed animals outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471015.jpg', 'caption': 'A country store with several teddy bears and geese there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471015.jpg', 'caption': 'Stuffed bear are set in chairs outside of a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333691.jpg', 'caption': 'A young boy photographed in black and white is holding a bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333691.jpg', 'caption': 'A little boy in an old photo holds a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333691.jpg', 'caption': 'A young boy holding a teddy bear next to a tricycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333691.jpg', 'caption': 'A young boy holding a teddy bear next to a tricycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333691.jpg', 'caption': 'A young boy holds a teddy bear in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136718.jpg', 'caption': 'A woman sits at a desk with a lap top that has a post it on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136718.jpg', 'caption': 'A girl sits and looks at the screen of the laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136718.jpg', 'caption': 'A photo of a woman using a laptop on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136718.jpg', 'caption': 'A young woman working on a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136718.jpg', 'caption': 'a close up of a person sitting at a desk with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515755.jpg', 'caption': 'The huge stuffed bear is lying on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515755.jpg', 'caption': 'A gigantic teddy bear sprawled out on the couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515755.jpg', 'caption': 'Large teddy bear laying face first on a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515755.jpg', 'caption': 'A giant teddy bear laid across a couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515755.jpg', 'caption': 'A very large stuffed toy on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176363.jpg', 'caption': 'Two small stuffed animals are placed on the bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176363.jpg', 'caption': ' A couple of stuffed animals laying on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176363.jpg', 'caption': 'A monkey and teddy bear sitting together on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176363.jpg', 'caption': 'A sock monkey stuffed animal next to a teddy bear on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176363.jpg', 'caption': 'A teddy bear and a sock monkey stuffed animal on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117089.jpg', 'caption': 'Three slices of french toast with orange juice on a restaurant table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117089.jpg', 'caption': 'a white plate with some food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117089.jpg', 'caption': 'A plate filled with french toast sitting next to a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117089.jpg', 'caption': 'picture of food in restaurant - grilled meat on white plate with orange drink and side dish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117089.jpg', 'caption': 'A meal is being displayed on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039211.jpg', 'caption': 'A man sitting at a table with a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039211.jpg', 'caption': 'Three men sit at a table and use laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039211.jpg', 'caption': 'Three young men sit at a table using four laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039211.jpg', 'caption': 'A few boys are all sitting on their laptops at the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039211.jpg', 'caption': 'people sitting around a table while using their laptops ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080714.jpg', 'caption': 'A pretty woman sitting at a desk using a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080714.jpg', 'caption': 'A woman gesturing with her hands and sitting at a table with a computer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080714.jpg', 'caption': 'A woman is giving a presentation with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080714.jpg', 'caption': 'A woman sits at a table with an open laptop in front of a screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080714.jpg', 'caption': 'A woman hosting a seminar to a class', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105547.jpg', 'caption': 'a toilet and a microwave sitting out for the trash', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105547.jpg', 'caption': 'A pile of thrown-away items near the corner of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105547.jpg', 'caption': 'A microwave and toilet sitting on a wooden cart on a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105547.jpg', 'caption': 'A microwave oven, toilet bowl, paving tiles and a wheeled cart stacked near a wall by a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105547.jpg', 'caption': 'A pile of trash next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011156.jpg', 'caption': 'A purse sitting next to its contents and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011156.jpg', 'caption': 'The contents of a purse laid out on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011156.jpg', 'caption': 'A wallet, MP3 player, headphones, change, cellphone, flash drive, mascara, pencil, bracelets, keys, and handbag sit on a bed in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011156.jpg', 'caption': 'The contents of a purse sitting on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011156.jpg', 'caption': 'A purse, laptop, iPod, cell phone, coins, earphones and a pencil laying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545734.jpg', 'caption': 'A kitchen cabinet that has glassware inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545734.jpg', 'caption': 'Various plates and cups in an cabinet in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545734.jpg', 'caption': 'An oven with a toaster oven sitting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545734.jpg', 'caption': 'A stove sitting next to a display cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545734.jpg', 'caption': 'A kitchen has a full china cabinet and stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230015.jpg', 'caption': 'A crowd of people standing on a subway platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230015.jpg', 'caption': 'People standing on side of subway track waiting for train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230015.jpg', 'caption': 'Tired commuters wait at a subway station for the arrival of the next train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230015.jpg', 'caption': 'A group of people are standing by a train track waiting for the subway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230015.jpg', 'caption': 'Several people waiting for the train to arrive.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371564.jpg', 'caption': 'A man standing under an umbrella in the rain using a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371564.jpg', 'caption': 'a couple of people holding an umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371564.jpg', 'caption': 'Adult man standing under umbrella on rainy day looking at cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371564.jpg', 'caption': 'A man wearing a hat and covered by an umbrella is on his cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371564.jpg', 'caption': 'A person is using their phone under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058522.jpg', 'caption': 'a teddy bear under tree branches and plant life with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058522.jpg', 'caption': 'A teddy bear is behind some fallen wood in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058522.jpg', 'caption': 'A brown teddy bear in a forest with trees and shrubbery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058522.jpg', 'caption': 'A teddy bear is sitting in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058522.jpg', 'caption': 'an image of a stuffed teddy bear behind a rock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337533.jpg', 'caption': 'A woman dressed in black using the phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337533.jpg', 'caption': 'THERE IS A WOMAN THAT IS TALKING ON THE PHONE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337533.jpg', 'caption': 'A woman talking on a phone while wearing a black shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337533.jpg', 'caption': 'A woman walking and talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337533.jpg', 'caption': 'A woman smiles as she talks on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468277.jpg', 'caption': 'A counter top, a microwave, a stove, and a fridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468277.jpg', 'caption': 'Picture of a microwave mounted under kitchen cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468277.jpg', 'caption': 'A black microwave oven sitting above a stove top oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468277.jpg', 'caption': 'a large black built in microwave over an electric stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468277.jpg', 'caption': 'A kitchen with a microwave, stove, oven and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128812.jpg', 'caption': 'An white oven with cookies being baked inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128812.jpg', 'caption': 'A kitchen with cookies in the oven baking', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128812.jpg', 'caption': 'The cookies are inside an oven in the kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128812.jpg', 'caption': 'an oven with a pan of cookies baking inside it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128812.jpg', 'caption': 'A white oven with a stove on top of it sitting in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278890.jpg', 'caption': 'A woman using a smart phone with her two hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278890.jpg', 'caption': 'A blurry picture of a person texting on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278890.jpg', 'caption': 'a close up of a person looking at a cell phone in the store ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278890.jpg', 'caption': 'A picture of someone doing something on their phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278890.jpg', 'caption': 'A person is holding a pnk and black object.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433574.jpg', 'caption': 'A person in a wheelchair plays music on a CD player while talking on a wireless telephone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433574.jpg', 'caption': \"A man in a wheelchair holding a phone to his ear, in front of a CD player and CD's on the side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433574.jpg', 'caption': 'A man sitting at a table in a wheelchair while on a phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433574.jpg', 'caption': 'A man sitting in front of a Ghetto Blaster while talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433574.jpg', 'caption': 'a person sitting in a hair talking on a cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458073.jpg', 'caption': 'A table on which a typewriter, books are kept and other gadgets are there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458073.jpg', 'caption': 'A table with several pieces of classic audio equipment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458073.jpg', 'caption': 'A black and white picture showing an office with a radio, and a desk with a typewriter on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458073.jpg', 'caption': 'An old turn table record player and a microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458073.jpg', 'caption': 'an old black and white photo of a desk with a microphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133034.jpg', 'caption': 'The phone is laying on the desk with all of the other stuff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133034.jpg', 'caption': 'A view of a cell phone and a watch on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133034.jpg', 'caption': 'A cell phone on disorganized work space with other things', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133034.jpg', 'caption': 'Two cell phones, a camera, a watch, a passport, chapstick, and a clip of money litter the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133034.jpg', 'caption': 'there are two phones and a watch on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476731.jpg', 'caption': 'An unknown man making a call on his cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476731.jpg', 'caption': 'a man with red shirt talking on a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476731.jpg', 'caption': 'A man in a red shirt is talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476731.jpg', 'caption': 'A man is talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476731.jpg', 'caption': 'A man with a red shirt standing back to is holding a cell phone up to his ear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311964.jpg', 'caption': 'Young boys and girls taking pictures with their cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311964.jpg', 'caption': 'a child using a smart phone next to other kids ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311964.jpg', 'caption': 'A young child taking a photo with a mobile phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311964.jpg', 'caption': 'Several children take pictures with their cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311964.jpg', 'caption': 'a boy is taking a picture with a flip phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251064.jpg', 'caption': 'A woman holding up a smart phone to her face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251064.jpg', 'caption': 'A closeup of a phone covering a person one eye', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251064.jpg', 'caption': 'a person looking through the lens of a cellular phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251064.jpg', 'caption': 'A close-up of a persons face who has their eyes closed and face scrunched up, with a cellular phone covering on eye.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251064.jpg', 'caption': 'A woman with a scrunched up face and a camera covering one of her eyes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542284.jpg', 'caption': 'A little girl talking on a cell phone while sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542284.jpg', 'caption': 'A girl sitting in a chair talking on a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542284.jpg', 'caption': 'A girl on a cell phone sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542284.jpg', 'caption': 'A pretty young blond girl talking on her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542284.jpg', 'caption': 'A girl talking a phone sitting in a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121817.jpg', 'caption': 'A woman and a man sitting to each other blue couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121817.jpg', 'caption': 'Several people sitting in a room one of them looking at a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121817.jpg', 'caption': 'A man and woman posing for a picture while another person uses his cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121817.jpg', 'caption': 'Mature man with women sitting apart from man with cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121817.jpg', 'caption': 'A couple pose for a photo on a couch while a man checks his phone in the corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548179.jpg', 'caption': 'A very small cute kid with a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548179.jpg', 'caption': 'a toddler listening to someone on a cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548179.jpg', 'caption': 'a kid with a phone putting it on the ear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548179.jpg', 'caption': 'A child holding a flip phone and looking up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548179.jpg', 'caption': 'A boy holding a cell phone to his ear while looking up. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226069.jpg', 'caption': 'A pink cellphone and white palm pilot on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226069.jpg', 'caption': 'A pink phone is sitting next to a white phone on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226069.jpg', 'caption': 'An old style phone next to a newer phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226069.jpg', 'caption': 'Two types of devices sitting next to each other on a woook table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226069.jpg', 'caption': 'An older Nokia sits next to another newer phone on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087920.jpg', 'caption': 'A lady is riding a bicycle while talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087920.jpg', 'caption': 'A woman rides her bike and talks on the phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087920.jpg', 'caption': 'Woman on cell phone bicycling down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087920.jpg', 'caption': 'A woman on a bike while on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087920.jpg', 'caption': 'A woman riding a bicycle making a call on the road near a building with cars parked outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525297.jpg', 'caption': \"A person holding a cell phone with a picture of grazing cows on it's display.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525297.jpg', 'caption': 'Reality and fantasy meet in this phone image of grazing cattle unaware of What Lies Above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525297.jpg', 'caption': 'Someone displaying a silly image on a smartphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525297.jpg', 'caption': 'The YouTube video is shown on the mobile phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525297.jpg', 'caption': 'a hand is holding a small video player ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381607.jpg', 'caption': 'A woman sits on a bench and talks on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381607.jpg', 'caption': 'A woman in a short dress talking on a phone while sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381607.jpg', 'caption': 'A woman in leather boots sitting on a bench on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381607.jpg', 'caption': 'A woman sitting on a bench while talking on her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381607.jpg', 'caption': 'a woman sits on bench while using a cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029080.jpg', 'caption': 'A sitting man holding a cell phone near a ship.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029080.jpg', 'caption': 'A man sitting on a ships mooring anchor at the dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029080.jpg', 'caption': 'A man is sitting outside while holding a closed umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029080.jpg', 'caption': 'A man that is sitting down near a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029080.jpg', 'caption': 'A man sitting on a boat anchor looking at his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390292.jpg', 'caption': 'A woman sitting in a chair beneath a sign saying not to sit there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390292.jpg', 'caption': 'A young woman is sitting in a chair on her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390292.jpg', 'caption': 'A woman using a smart phone while sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390292.jpg', 'caption': 'A girl taking a self portrait as she sits in a place marked \"Do Not Sit Here.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390292.jpg', 'caption': 'A girl is messing with her cellphone in a chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033576.jpg', 'caption': 'a man walks and talks on his cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033576.jpg', 'caption': 'A business man in a suit walks while he talks on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033576.jpg', 'caption': 'A man walking down a street next to tall buildings talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033576.jpg', 'caption': 'A man walks down a brick sidewalk while talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033576.jpg', 'caption': 'A man walking on a sidewalk talking on a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262235.jpg', 'caption': 'A beautiful young lady talking on a phone while smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262235.jpg', 'caption': 'A woman with a lanyard and name tag while on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262235.jpg', 'caption': 'A woman standing in a corner by a curtain taking a cell phone call. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262235.jpg', 'caption': 'A woman smiling while talking on her cell phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262235.jpg', 'caption': 'A woman is sitting in a corner talking on the telephone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376450.jpg', 'caption': 'While in a restaurant a young man is playing with his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376450.jpg', 'caption': 'A male fiddles with a smart phone in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376450.jpg', 'caption': 'A cluttered restaurant has a boy at a table with a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376450.jpg', 'caption': 'A young man using a smart phone in a cafe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376450.jpg', 'caption': 'A young man looking at his cell phone while seated at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071914.jpg', 'caption': 'A mini fridge with an open door and a white interior.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071914.jpg', 'caption': 'A freezer on top of a refrigerator in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071914.jpg', 'caption': 'A freezer was left open with little food inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071914.jpg', 'caption': 'An freezer with the door open and little food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071914.jpg', 'caption': 'a kitchen mini refrigerate black square ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160186.jpg', 'caption': 'a man in black opening a fridge smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160186.jpg', 'caption': 'A guy in all black holding a refrigerator door open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160186.jpg', 'caption': 'The man is standing half way in the refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160186.jpg', 'caption': 'A man is standing partially inside an open refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160186.jpg', 'caption': 'a male in a black shirt and a refrigerator', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527603.jpg', 'caption': 'A kitchen with a dishwasher, refrigerator and pantry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527603.jpg', 'caption': 'A kitchen with a refrigerator that still, has stickers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527603.jpg', 'caption': 'The kitchen has dark colored cabinets but clean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527603.jpg', 'caption': 'A room with a refrigerator and a larger object with a door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527603.jpg', 'caption': 'Picture of a fridge in a kitchen next to grey items', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485951.jpg', 'caption': 'A kitchen with marble counter tops and black appliances', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485951.jpg', 'caption': 'A kitchen has granite, cabinets, an electric stove, refrigerator, and sink in the kitchen island', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485951.jpg', 'caption': 'An empty kitchen has a large island in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485951.jpg', 'caption': 'an image of kitchen setting with black appliances', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485951.jpg', 'caption': 'Kitchen with an island sink, stove, and a refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544883.jpg', 'caption': 'a large and old brick building with a clock on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544883.jpg', 'caption': \"A tall brick building with a large clock on it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544883.jpg', 'caption': 'A brown brick wall with windows and a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544883.jpg', 'caption': 'A clock on the front of an old brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544883.jpg', 'caption': 'A clock on a brick building wall of some sort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550893.jpg', 'caption': 'A stone building that has a clock located on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550893.jpg', 'caption': 'A large clock mounted to the side of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550893.jpg', 'caption': 'a clock on top fof building that is very high up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550893.jpg', 'caption': 'The face of a clock against a concrete brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550893.jpg', 'caption': 'A clock on a building has dots for the numbers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391539.jpg', 'caption': 'A woman stands next to a fridge that has several glasses on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391539.jpg', 'caption': 'A woman standing behind a mini fridge, which has two glasses and a bottle on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391539.jpg', 'caption': 'The woman is painting behind her refrigerator in the kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391539.jpg', 'caption': 'Appliances in the middle of a kitchen while it is being painted', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391539.jpg', 'caption': 'A kitchen scene with a person moving a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208380.jpg', 'caption': 'Two vases filled with water and lots of colorful flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208380.jpg', 'caption': 'A couple of glass vases with flowers on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208380.jpg', 'caption': 'A couple of vases that are sitting on a table filled with flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208380.jpg', 'caption': 'Two vases with multi colored flowers in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208380.jpg', 'caption': 'There are two vases of pretty flowers on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170862.jpg', 'caption': \"A round window showing a man's face in the upper corner of a building.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170862.jpg', 'caption': 'A stained glass window on a brick and stone building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170862.jpg', 'caption': 'Beautiful stained glass window surrounded by brick architecture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170862.jpg', 'caption': \"A tall building with a round glass window and a sculpture of a creepy old man's face above it.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170862.jpg', 'caption': \"A round windowoutside of a building with a statue of a man's head on top of it.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020004.jpg', 'caption': 'A picture of a night time scene featuring a building with a large clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020004.jpg', 'caption': 'A tall clock tower lit up in the evening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020004.jpg', 'caption': 'a clock tower with its lights on during the evening ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020004.jpg', 'caption': 'A large clock tower at night beneath a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020004.jpg', 'caption': 'A very tall clock tower illuminated by lighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534845.jpg', 'caption': 'Teddy bear and clothing hanging from clothes lines outside window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534845.jpg', 'caption': 'A stuffed toy is hanging on a laundry line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534845.jpg', 'caption': 'A few items that were left out to air dry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534845.jpg', 'caption': 'some clothes and a teddy bear pinned to an outdoors clothes line ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534845.jpg', 'caption': 'a stuffed bear is hanging out of a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209335.jpg', 'caption': 'clock on the front of an old stone building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209335.jpg', 'caption': 'An old building with a blue door and clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209335.jpg', 'caption': 'A multi-room building presents a clock on its face and several chimneys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209335.jpg', 'caption': 'A clock above an entrance to an historical structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209335.jpg', 'caption': 'a stone building with a clock at the front of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528184.jpg', 'caption': 'a vintage photo of a tower with a clock inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528184.jpg', 'caption': 'a tall tower with two clocks built in to the side of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528184.jpg', 'caption': 'A stone tower clock sitting outside on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528184.jpg', 'caption': 'A very tall tower with with a big clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528184.jpg', 'caption': 'A black and white photograph of a clock tower showing two clock faces on 2 of the sides of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498532.jpg', 'caption': 'A clock sitting on top of a table in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498532.jpg', 'caption': 'a glass window with a clock behind it and trees reflected in the glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498532.jpg', 'caption': 'A number of items on display in a glass window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498532.jpg', 'caption': 'The clock is displayed in the window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498532.jpg', 'caption': 'a glass with a clock sitting behind of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266385.jpg', 'caption': 'A golden block sitting in a room on red carpeting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266385.jpg', 'caption': 'A fancy clock stands in the room with red carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266385.jpg', 'caption': 'A fancy antique standing clock is on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266385.jpg', 'caption': 'We are looking at a closeup of an ornate clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266385.jpg', 'caption': 'a big gold grand father clock sitting in the inside of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471691.jpg', 'caption': 'A pair of glasses hung on the side of a vase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471691.jpg', 'caption': 'an image of a vase next to a pair of glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471691.jpg', 'caption': 'Pair of glasses on end with earpiece resting inside glass vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471691.jpg', 'caption': 'The leg of a pair of glasses is stuck inside a clear vase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471691.jpg', 'caption': 'The eye piece of the eyeglasses is inside the glass vase.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367528.jpg', 'caption': 'A table with a bowl, pitcher vase, and coffee mug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367528.jpg', 'caption': 'there is a red tea pot that has flowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367528.jpg', 'caption': 'A display of flowers sits on a living room table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367528.jpg', 'caption': 'A red coffeepot with flowers on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367528.jpg', 'caption': 'some cute pink flowers sitting in a red watering can', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448309.jpg', 'caption': 'A dining room with table, chairs, windows and doors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448309.jpg', 'caption': 'It must be nice to have a dining room that overlooks the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448309.jpg', 'caption': 'Home dining area with white walls and furnishings overlooking water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448309.jpg', 'caption': 'Bright white eating area with lots of windows facing a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448309.jpg', 'caption': 'A long white table sits in front of glass double doors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218204.jpg', 'caption': 'A wooden table topped with glasses with plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218204.jpg', 'caption': 'there are many glass vases with flowers in them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218204.jpg', 'caption': 'multiple clear vases with tulips in them on table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218204.jpg', 'caption': 'SEVERAL CLEAR VASES ARE ON THE TABLE WITH TULIPS IN EACH ONE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218204.jpg', 'caption': 'A few vases sitting on a table with flowers in them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048281.jpg', 'caption': 'A woman in a red shirt holding a pink vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048281.jpg', 'caption': 'The woman has a nice bouquet of flowers and a pink vase to put them in. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048281.jpg', 'caption': 'A happy young lady that is showing off her latest vase that she bought.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048281.jpg', 'caption': 'Lady holding a pink vase with a bouquet of flowers behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048281.jpg', 'caption': 'a lady holding a vase for her flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150986.jpg', 'caption': 'A close shot of someone holding a small pair of scissors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150986.jpg', 'caption': 'A person holding a pair of small metal scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150986.jpg', 'caption': 'A person holding a small pair of scissors by a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150986.jpg', 'caption': 'Someone is holding a small scissors in their hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150986.jpg', 'caption': 'A person sitting next to a desk holds onto a little pair of scissors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382758.jpg', 'caption': 'Scissors on the counter next to radio with spindle on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382758.jpg', 'caption': 'A night table set with tissues, a clock and sewing supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382758.jpg', 'caption': 'A radio sitting on top of a counter next to a pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382758.jpg', 'caption': 'A stand with various items on it including thread on scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382758.jpg', 'caption': 'A full view of some materials laying on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001647.jpg', 'caption': 'A piece of bread with wrapping around it with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001647.jpg', 'caption': 'A pair of scissors next to a rock wrapped in paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001647.jpg', 'caption': 'A scissors, a rock and a piece of paper displayed on a flat surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001647.jpg', 'caption': 'A pair of scissors and crumpled paper sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001647.jpg', 'caption': 'A depiction of rock, paper, scissors with scissors, a rock and crumpled paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001852.jpg', 'caption': 'A piece of white hair, scissors and a rose.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001852.jpg', 'caption': 'A rose with scissors and a lock of hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001852.jpg', 'caption': 'a pair of scissors leaning against a red flower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001852.jpg', 'caption': 'Scissors, a flower and a lock of hair sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001852.jpg', 'caption': 'A roll of cotton and a pair of scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217760.jpg', 'caption': 'A leather satchel opened up containing various cutting tools.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217760.jpg', 'caption': 'There is a black case with metal scissors in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217760.jpg', 'caption': 'A black case filled with scissors and wire cutters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217760.jpg', 'caption': 'Scissors and tools lay in a black case on a green surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217760.jpg', 'caption': 'Shiny silver tools are sitting inside a black case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147236.jpg', 'caption': 'a close up of a pair of scissors on a counter top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147236.jpg', 'caption': 'A large pair of old scissors sits on a table near a wooden box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147236.jpg', 'caption': 'There are a very large pair scissors on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147236.jpg', 'caption': 'A large, black scissors sits out on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147236.jpg', 'caption': 'a large pair of scissors sitting on a table in a button storage area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473919.jpg', 'caption': 'a group of stuffed animals sit next to each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473919.jpg', 'caption': 'A shelf of teddy bears that say Feliz Navidad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473919.jpg', 'caption': 'A stuffed Christmas teddy bear lays on a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473919.jpg', 'caption': 'A shelf filled with lots of stuffed teddy bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473919.jpg', 'caption': 'Many stuffed bears are in the toy rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482720.jpg', 'caption': \"a teddy bear sitting by some blocks like he's playing with them\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482720.jpg', 'caption': 'Stuffed bear and toy set sitting on floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482720.jpg', 'caption': 'A teddy bear and wooden toy on a brown floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482720.jpg', 'caption': 'Stuffed bear with toy hammer and wooden pegs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482720.jpg', 'caption': 'A teddy bear sitting on the floor in front of a block type game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167452.jpg', 'caption': 'The man hold the electric guitar in front of the ornate teddy bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167452.jpg', 'caption': 'A man holding a wooden guitar next to a pile of stuffed animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167452.jpg', 'caption': 'A guitarist eyes a collection of stuffed animals', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167452.jpg', 'caption': 'A guitar player stares suspiciously at a group of stuffed animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167452.jpg', 'caption': 'A man playing with a guitar in front of teddy bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191724.jpg', 'caption': 'A breakfast plate includes fried hotdogs, eggs, cheese on bread and a scoop of potato.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191724.jpg', 'caption': 'An up close picture of some food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191724.jpg', 'caption': 'A plate with breakfast food on it, including eggs sausage, bread and other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191724.jpg', 'caption': 'A platter of food that includes eggs, hot dogs, and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191724.jpg', 'caption': 'A white plate topped with food sitting on a black table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136911.jpg', 'caption': 'The large platter has a bagel, fruit, butter and sour cream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136911.jpg', 'caption': 'a plate with a bowl of fruit, a bagel, and some butter and cream cheese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136911.jpg', 'caption': 'A bol of fruit and ice cream sit on a plate with a bagel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136911.jpg', 'caption': 'A plate with a bagel some fruit and cream cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136911.jpg', 'caption': 'a plate containing different varieties of food each in their own bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082889.jpg', 'caption': 'A tray of food sits on an outdoor table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082889.jpg', 'caption': 'a black table with purple tray with a drink and food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082889.jpg', 'caption': 'There is a tray full of food and a cup of water on the tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082889.jpg', 'caption': 'Eggs, bacon and sausage in a paper trough. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082889.jpg', 'caption': 'Breakfast foods on a plastic tray at an outdoor cafe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207898.jpg', 'caption': 'A plate that has different food on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207898.jpg', 'caption': 'Breakfast items served at table with hot and cold beverages.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207898.jpg', 'caption': 'Rice with red sauce with eggs over the top and orange slices on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207898.jpg', 'caption': 'A plate of rice and ac couple of sunny side eggs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207898.jpg', 'caption': 'A plate that has different kinds of food in a pile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216710.jpg', 'caption': 'a couple of plates that have some food on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216710.jpg', 'caption': 'a close up of a plate of food on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216710.jpg', 'caption': 'Pastries on a wooden table top in kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216710.jpg', 'caption': 'Many ingredients are placed on a table for cooking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216710.jpg', 'caption': 'A table with various meets, breads and tomatoes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372654.jpg', 'caption': 'There is a group of people that are sitting at the table eating food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372654.jpg', 'caption': 'People are eating at a very large gathering.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372654.jpg', 'caption': 'a crowded restaurant with people having something to eat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372654.jpg', 'caption': 'People are sitting around a table and sharing a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372654.jpg', 'caption': 'A group of women eating at a dinner table and conversating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547013.jpg', 'caption': 'people sitting around a table eating dinner at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547013.jpg', 'caption': 'A group of people sitting around a table eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547013.jpg', 'caption': 'A group of people eating food at a dinner table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547013.jpg', 'caption': 'A group of people enjoying a meal at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547013.jpg', 'caption': 'there are many people sitting at a table eating', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378096.jpg', 'caption': 'Two asian people pose for a picture while sharing drinks at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378096.jpg', 'caption': 'Two people drinking alcohol that are smiling for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378096.jpg', 'caption': 'A couple enjoying wine at a dining table.and food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378096.jpg', 'caption': 'A couple posing for a picture at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378096.jpg', 'caption': 'The Asian couple is sitting at the table enjoying wine with dessert', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561523.jpg', 'caption': 'Three flutes of champagne sit on a table with a white table cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561523.jpg', 'caption': 'some people at a table some menus and drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561523.jpg', 'caption': 'Three wine glasses are on a restaurant table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561523.jpg', 'caption': 'A group of wine glasses sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561523.jpg', 'caption': 'A table has a menu and wine glasses on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009007.jpg', 'caption': 'The man grins in a restaurant holding a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009007.jpg', 'caption': 'a man sitting at a table holding a glass of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009007.jpg', 'caption': 'A handsome man holds a glass of white wine and looks at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009007.jpg', 'caption': 'A man with a glass of drink smiles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009007.jpg', 'caption': 'Man takes a picture while holding a glass of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323442.jpg', 'caption': 'People enjoying a meal and wine under white umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323442.jpg', 'caption': 'A couple that are sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323442.jpg', 'caption': 'A couple of people with umbrellas sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323442.jpg', 'caption': 'Two people smile sitting at a table covered with wine glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323442.jpg', 'caption': 'two people sitting at a table with many wine glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001722.jpg', 'caption': 'A person riding a bike in the rain while holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001722.jpg', 'caption': 'a man riding a bike in the pouring rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001722.jpg', 'caption': 'A man on bicycle holding an umbrella passing by a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001722.jpg', 'caption': 'An old poor market is alone on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001722.jpg', 'caption': 'A man riding a bike with an umbrella is going past a shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447119.jpg', 'caption': 'A man riding a bike across a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447119.jpg', 'caption': 'A man that is sitting on a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447119.jpg', 'caption': 'a person on a bike that is going across the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447119.jpg', 'caption': 'A person riding a bicycle on a road with cars. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447119.jpg', 'caption': 'a person riding a bike on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031092.jpg', 'caption': 'A person on a motorcycle is next to parked bicycles on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031092.jpg', 'caption': 'a guy on a bike sitting next to a bicycle ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031092.jpg', 'caption': 'A person parked on the side of the street on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031092.jpg', 'caption': 'An individual sitting on a crotch-rocket next to a parked bicycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031092.jpg', 'caption': 'the motorcycle is next to the bikes on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490381.jpg', 'caption': 'Various people walking on a street in front of a wall advertisement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490381.jpg', 'caption': 'A young boy holding a skateboard behind his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490381.jpg', 'caption': 'People stand outside a large ad for Gap, featuring a young boy ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490381.jpg', 'caption': 'A group of pedestrians are walking by an advertisement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490381.jpg', 'caption': 'A group of people walking down a sidewalk by a large advertisement on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451345.jpg', 'caption': 'a lady sitting on a concrete picnic table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451345.jpg', 'caption': 'A sexy young woman sitting at a bench with a paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451345.jpg', 'caption': 'A very fit looking lady sitting alone at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451345.jpg', 'caption': 'Back view of girl sitting at a picnic bench reading.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451345.jpg', 'caption': 'Woman sitting on bench reading in large open space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340665.jpg', 'caption': 'A woman holding an umbrella standing next to a black wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340665.jpg', 'caption': 'A woman is standing under her umbrella in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340665.jpg', 'caption': 'A woman holding a brown umbrella standing behind another umbrella on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340665.jpg', 'caption': 'Woman with umbrella standing on sidewalk in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340665.jpg', 'caption': 'Woman with umbrella on a rainy day, near a broken, abandoned umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275161.jpg', 'caption': 'People are hiding under colorful umbrellas on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275161.jpg', 'caption': 'Three umbrellas with various patterns and a building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275161.jpg', 'caption': 'people walking on a city street holding open umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275161.jpg', 'caption': 'an image of polka dot umbrella being held', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275161.jpg', 'caption': 'A number of umbrellas decorated in different patterns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373713.jpg', 'caption': 'Three men sit at a conference discussing a topic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373713.jpg', 'caption': 'Three people sitting in an office with a big screen on wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373713.jpg', 'caption': 'three men on computers having a discussion with each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373713.jpg', 'caption': 'A group of people sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373713.jpg', 'caption': 'Three people with laptops in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095595.jpg', 'caption': 'a person in a white t shirt cooking on a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095595.jpg', 'caption': 'A person cooking food at a kitchen stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095595.jpg', 'caption': 'A person appears to be cooking on their stove ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095595.jpg', 'caption': 'A person cooking in frying pan on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095595.jpg', 'caption': 'A man stands in front of his stove preparing a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196742.jpg', 'caption': 'A man holding a microphone while sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196742.jpg', 'caption': 'A man with brown blazer and glasses holding a microphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196742.jpg', 'caption': 'A man holding up a microphone talking . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196742.jpg', 'caption': 'A balding man is holding a black microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196742.jpg', 'caption': 'A man is sitting down and talking on a microphone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086696.jpg', 'caption': 'A wooden center island in a kitchen next to two flat screen TVs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086696.jpg', 'caption': 'A staged kitchen is ready for filming on set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086696.jpg', 'caption': 'a fake kitchen area with a tv and a counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086696.jpg', 'caption': 'A room that has various types of electronics in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086696.jpg', 'caption': 'A car a tripod is set up near a small kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120535.jpg', 'caption': 'Two television that are sitting on stands in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120535.jpg', 'caption': 'this is a room with several tvs and a man', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120535.jpg', 'caption': 'A room with a desk, tables, and television screens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120535.jpg', 'caption': 'a large piece of wood furniture in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120535.jpg', 'caption': 'The view of a small kitchen display between two television screens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381615.jpg', 'caption': 'A window in a kitchen filled with green plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381615.jpg', 'caption': 'Plants sitting near an open window inside a house. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381615.jpg', 'caption': 'Several potted plants in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381615.jpg', 'caption': 'A dining room window with many potted and hanging plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381615.jpg', 'caption': 'A chair and some plants are sitting next to the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064088.jpg', 'caption': 'An older woman walking behind a bus on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064088.jpg', 'caption': 'an older woman walking in the street and a bus ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064088.jpg', 'caption': 'An older woman in the street has a bus with a face advertisement behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064088.jpg', 'caption': 'Woman crossing a city street behind a commercial bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064088.jpg', 'caption': 'A woman crossing the street behind a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478077.jpg', 'caption': 'A microwave oven sitting on top of a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478077.jpg', 'caption': 'A stainless steel microwave on a kitchen counter top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478077.jpg', 'caption': 'Microwave sitting on a counter with other kitchen furnishings around it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478077.jpg', 'caption': 'A kitchen counter has a microwave, sink, and dishwasher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478077.jpg', 'caption': 'a kitchen counter with a microwave and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309033.jpg', 'caption': 'A large kitchen with a stove and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309033.jpg', 'caption': 'A kitchen with a stove top oven next to a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309033.jpg', 'caption': 'The large kitchen has wooden cabinets and drawers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309033.jpg', 'caption': 'A large kitchen has lots of brown cabinets and a silver stove and dishwasher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309033.jpg', 'caption': 'The kitchen is clean and ready to use. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059171.jpg', 'caption': 'A couple of birds fly through a blue cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059171.jpg', 'caption': 'Group of three people sailing kites up in the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059171.jpg', 'caption': 'A beautiful blue and pink sky overlooking the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059171.jpg', 'caption': 'Group of people are flying kites on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059171.jpg', 'caption': 'This is a gorgeous sunset at a beach with a parasailor in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425727.jpg', 'caption': 'The person stands in a field flying a yellow kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425727.jpg', 'caption': 'A man is flying a kite at a park outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425727.jpg', 'caption': 'The woman is flying a yellow kite outside in the day,.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425727.jpg', 'caption': 'A young woman standing on top of a green field flying a kite;', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425727.jpg', 'caption': 'A man flying a kite on a cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182279.jpg', 'caption': 'A couple of people standing in a field flying a giant kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182279.jpg', 'caption': 'A large blue bird balloon flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182279.jpg', 'caption': 'Two people are flying a large character kite on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182279.jpg', 'caption': 'Two people in a grassy field with a colorful owl floating in the air near them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182279.jpg', 'caption': 'Men flying a kite that looks like a big blue bird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467297.jpg', 'caption': 'a woman is standing next to an oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467297.jpg', 'caption': 'A woman getting ready to cook some food in a small kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467297.jpg', 'caption': 'A woman that is standing near an open oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467297.jpg', 'caption': 'The woman in the kitchen is tending to her food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467297.jpg', 'caption': 'A woman standing in a kitchen baking bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028506.jpg', 'caption': 'A kitchen with many pots and pans hanging on the wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028506.jpg', 'caption': 'A kitchen with pots hanging over the stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028506.jpg', 'caption': 'a long line of pans that are hanging on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028506.jpg', 'caption': 'there are many pots that are hanging on the wall in the kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028506.jpg', 'caption': 'Hanging frying pans in small, tidy commercial kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331883.jpg', 'caption': 'A person laying on an inflatable mattress with two sleeping bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331883.jpg', 'caption': 'A man lying on an inflatable mattress on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331883.jpg', 'caption': 'A shirtless man is lying on a raft in a dirty room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331883.jpg', 'caption': 'A man a sleep on a mattress inside of a sleeping bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000331883.jpg', 'caption': 'A man sleeping in and unfurnished room on a blow up mattress with a sleeping bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420490.jpg', 'caption': 'A kitchen with an island and window over the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420490.jpg', 'caption': 'Kitchen and dinning room view of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420490.jpg', 'caption': 'A fancy, sunny kitchen with bowlfuls of watermelon slices on the counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420490.jpg', 'caption': 'A kitchen gets lots of sunlight, with watermelon on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420490.jpg', 'caption': 'Watermelon and plates sit on a kitchen island in morning', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454203.jpg', 'caption': 'A long, narrow yellow kitchen with black and white floor tiles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454203.jpg', 'caption': 'yellow kitchen with black and white floor and pendant light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454203.jpg', 'caption': 'The kitchen had a yellow wall and checkered floor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454203.jpg', 'caption': 'a yellow walled kitchen with a black and white checkered floor', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000477688.jpg', 'caption': 'A group of motorcyclists waiting at the beginning of a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477688.jpg', 'caption': 'Group of police officers riding on yellow motorcycles with people looking on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477688.jpg', 'caption': 'Police riding motorcycle down a road next to people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477688.jpg', 'caption': 'Three police motorcycles at a crosswalk talking to pedestrians.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357758.jpg', 'caption': 'A man riding on the back of a blue motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357758.jpg', 'caption': 'A man on a blue motorcycle on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357758.jpg', 'caption': 'a person sitting on a parked motorcycle near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357758.jpg', 'caption': 'A man sits on a motorcycle on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357758.jpg', 'caption': 'A rider in jeans, a jacket and a helmet sits on a bright blue motorcycle outside Flying Tiger Motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418288.jpg', 'caption': 'The front of a motor cycle against a black and white tiled floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418288.jpg', 'caption': 'A motorbike parked on a bay with a car beside it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418288.jpg', 'caption': 'The handlebars of a motorcycle with a bow on it are viewed up close. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418288.jpg', 'caption': 'A vintage green motorcycle handle bar with a bow on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418288.jpg', 'caption': 'A picture of the handle bars on a motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039504.jpg', 'caption': 'A man dressed in mostly all black riding on a black motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039504.jpg', 'caption': 'A motorcyclist wearing helmet and goggles on his motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039504.jpg', 'caption': 'A person on a racing bike wearing a helmet and backpack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039504.jpg', 'caption': 'A man riding a motorcycle in the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039504.jpg', 'caption': 'A person riding a motorcycle on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315448.jpg', 'caption': 'A person is riding an orange motorcycle doing a hand motion', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315448.jpg', 'caption': 'A person on a black and copper motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315448.jpg', 'caption': 'Guy riding his gold motorcycle giving a signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315448.jpg', 'caption': 'A woman on an orange motorcycle with a helmet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315448.jpg', 'caption': 'Person tiding an orange motorcycle with one had raised.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053344.jpg', 'caption': 'a person riding a motorcycle on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053344.jpg', 'caption': 'A man wearing a helmet rides his motorcycle down a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053344.jpg', 'caption': 'A man riding a motorcycle down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053344.jpg', 'caption': 'A PERSON WEARING A HELMET IS RIDING A DELUXE MOTORCYCLE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053344.jpg', 'caption': 'A person riding a motorcycle on a roadway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245450.jpg', 'caption': 'A subway train with a row of orange and white seats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245450.jpg', 'caption': 'Three chairs under a window on a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245450.jpg', 'caption': 'inside a subway with a view of the door windows and seats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245450.jpg', 'caption': 'A full view of a train in a subway station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245450.jpg', 'caption': 'A seat and door on an empty train. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178671.jpg', 'caption': 'A bedroom with a large bed sitting under a painting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178671.jpg', 'caption': 'A bedroom that has a door to the outside in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178671.jpg', 'caption': 'A couple of folded pillow cases are placed on the made bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178671.jpg', 'caption': 'a white bed a green wall a television a chair and lamps', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178671.jpg', 'caption': 'A green hotel room with a large bed set with two sets of pajamas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195894.jpg', 'caption': 'A large bedroom with big windows and a patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195894.jpg', 'caption': 'A hotel room with a balcony and computer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195894.jpg', 'caption': 'A spacious bedroom with access to a balcony.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195894.jpg', 'caption': 'a bed room with a bed and large clear doors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195894.jpg', 'caption': 'A hotel room with a large bed and two giant windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476444.jpg', 'caption': 'A small TV on the hard wood floor of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476444.jpg', 'caption': 'A black tv is on the wood floor in an empty room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476444.jpg', 'caption': 'Looking into a large window at a television in the corner on a wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476444.jpg', 'caption': 'a tv in a room behind a window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476444.jpg', 'caption': 'A view from the outside of a window of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285120.jpg', 'caption': 'An airplane is parked on a runway and someone is standing nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285120.jpg', 'caption': 'a airplane tha tis parked on a concrete runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285120.jpg', 'caption': 'A man is walking by a plane on an airport field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285120.jpg', 'caption': 'an aircraft that is on a airplane runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285120.jpg', 'caption': 'A man standing on top of a tarmac next to a small airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126876.jpg', 'caption': 'A picture of a plane is flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126876.jpg', 'caption': 'An airplane with two propellor engines flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126876.jpg', 'caption': 'A propeller plane flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126876.jpg', 'caption': 'A small airplane is flying through a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126876.jpg', 'caption': 'A propeller plane flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411841.jpg', 'caption': 'A large jetliner sitting in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411841.jpg', 'caption': 'A plane is on the tarmac at Naha Airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411841.jpg', 'caption': 'a red and white tail of a large plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411841.jpg', 'caption': 'An airport with an airplane that has a red tale', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411841.jpg', 'caption': 'An airplane is parked in front of a large building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457054.jpg', 'caption': 'A man driving a car across an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457054.jpg', 'caption': 'two airport workers transferring cargo from one plane to another', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457054.jpg', 'caption': 'people are transporting something to another area at the airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457054.jpg', 'caption': 'A worker driving a cart pulling a trailer loaded with cargo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457054.jpg', 'caption': 'Airport vehicles carry items and other equipment to parked planes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102637.jpg', 'caption': 'An airliner is descending over the water to an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102637.jpg', 'caption': 'air liner flying over a large body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102637.jpg', 'caption': 'A large jetliner flying over the ocean and mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102637.jpg', 'caption': 'A jet airliner flying over a body of water with a barrier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102637.jpg', 'caption': 'An air plane jet liner flying over the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101270.jpg', 'caption': 'Four air planes are flying in the air leaving fog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101270.jpg', 'caption': 'Four airplane flying in formation. Smoke trails are coming out of 3 of the plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101270.jpg', 'caption': 'there are four planes that are flying in a organized pattern', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101270.jpg', 'caption': 'The four airplanes are flying through the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000101270.jpg', 'caption': 'Four planes that are flying and turning in the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527644.jpg', 'caption': 'A jet is flying through the air leaving smoke behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527644.jpg', 'caption': 'A JET IN THE AIR IS HAS A LOT OF DARK SMOKE COMING FROM IT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527644.jpg', 'caption': 'A plane with smoke coming from the tips of both wings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527644.jpg', 'caption': 'An jet plane with smoke coming off the ends of both wings flying through the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527644.jpg', 'caption': 'a jet flying in the sky with smoke ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008016.jpg', 'caption': 'A fighter jet flying through a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008016.jpg', 'caption': 'The yellow fighter jet is turned sideways in the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008016.jpg', 'caption': 'A model plane is flying through a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008016.jpg', 'caption': 'a yellow plane flying in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008016.jpg', 'caption': 'A small yellow plane is flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371588.jpg', 'caption': 'Yellow military jet making pass against gray cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371588.jpg', 'caption': 'jet fighter flying in a banked left turn ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371588.jpg', 'caption': 'a fighter jet flies through the blue sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371588.jpg', 'caption': 'A figher jet plane flying on its side through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371588.jpg', 'caption': 'A fighter jet in the air with a cloudy sky in back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215815.jpg', 'caption': 'Two airplanes release smoke while flying near each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215815.jpg', 'caption': 'Two planes are mirror image of each other in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215815.jpg', 'caption': 'two red and black airplanes doing a trick in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215815.jpg', 'caption': 'two planes ride toward each other as smoke trails behind them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215815.jpg', 'caption': 'two old aircrafts flying towards one another in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183895.jpg', 'caption': 'People watching a plane take off from a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183895.jpg', 'caption': 'Airplanes on an airstrip beneath a hazy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183895.jpg', 'caption': 'A large passenger jet taking off from an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183895.jpg', 'caption': 'Two people watching airplanes taking off from the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183895.jpg', 'caption': 'Two people watching a jet airplane coming in for a landing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418106.jpg', 'caption': 'A man stands in front of an airport with many airliners on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418106.jpg', 'caption': 'This is a photo of an airplane on a runway and someones head is in the photo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418106.jpg', 'caption': 'A man is standing near a busy airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418106.jpg', 'caption': 'A view of plane sitting on a runway in the middle of the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418106.jpg', 'caption': 'The view of an airport runway from a distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555023.jpg', 'caption': 'The giraffe is sticking out its long tongue, perhaps tasting the fence rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555023.jpg', 'caption': 'A giraffe sticks out its neck and its tongue', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555023.jpg', 'caption': \"An adult giraffe extending it's tongue over a fence.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555023.jpg', 'caption': 'A giraffe standing next to a wooden fence licking a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555023.jpg', 'caption': 'A giraffe sticking its tongue out over a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030423.jpg', 'caption': 'Four giraffes in the wild eating from trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030423.jpg', 'caption': 'Four giraffes in a grassy plain with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030423.jpg', 'caption': 'Four giraffes are standing in front of some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030423.jpg', 'caption': 'Four giraffes standing in front of trees on a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030423.jpg', 'caption': 'Several giraffe somewhat distant standing on the edge of a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147027.jpg', 'caption': 'A monkey runs past some giraffe standing by the trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147027.jpg', 'caption': 'A herd of giraffe standing next to a small monkey.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147027.jpg', 'caption': 'a monkey runs away from a herd of giraffes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147027.jpg', 'caption': 'Several giraffe and a monkey in a plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147027.jpg', 'caption': 'The giraffes are grouped together on the desert plane. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517029.jpg', 'caption': 'A giraffe grazing from a tree with rock wall in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517029.jpg', 'caption': 'A lone giraffe standing next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517029.jpg', 'caption': 'A single giraffe that is eating some leaves off of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517029.jpg', 'caption': 'The giraffe is eating leaves from the tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517029.jpg', 'caption': 'A very tall giraffe looking at the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170605.jpg', 'caption': 'A sun spot is the only mark in a clear sky with a plane traveling over a snowy expanse with a bunch of detritus on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170605.jpg', 'caption': 'an air plane flying in the sky over a snow covered surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170605.jpg', 'caption': 'A plane flies over a row of snow mobiles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170605.jpg', 'caption': 'An airplane flying over a snow covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170605.jpg', 'caption': 'A plane is flying over a group of recreational snow machines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575904.jpg', 'caption': 'a man using a cross walk to cross a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575904.jpg', 'caption': 'A man walking across the street at an intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575904.jpg', 'caption': 'some people walking across a crosswalk with a car parked by it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575904.jpg', 'caption': 'Pedestrians crossing the street of a downtown area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575904.jpg', 'caption': 'People cross a city street from different sides.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436653.jpg', 'caption': 'A small town street filled with traffic beneath a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436653.jpg', 'caption': 'There is a lot of traffic on the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436653.jpg', 'caption': 'A busy city street with a mountain view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436653.jpg', 'caption': 'Traffic on a busy street is contrasted with a mountain far away.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436653.jpg', 'caption': 'cars driving down a somewhat busy road with a green light ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528232.jpg', 'caption': 'A couple of giraffe standing on top of a field near a rock mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528232.jpg', 'caption': 'Two giraffes are standing in a field with heads down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528232.jpg', 'caption': 'Two giraffes standing near the grass, with their necks bent low.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528232.jpg', 'caption': 'These giraffes are standing together on a dirt path', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528232.jpg', 'caption': 'Two giraffe standing on grass near a rocky wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183306.jpg', 'caption': 'A United jet liner flying through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183306.jpg', 'caption': 'a large blue and white airplane in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183306.jpg', 'caption': 'An airplane is flying in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183306.jpg', 'caption': 'Blue and white propeller airplane flying through the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183306.jpg', 'caption': 'A airplane that is flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303056.jpg', 'caption': 'Adult giraffe with young standing near wall and tree in enclosed area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303056.jpg', 'caption': 'A tall giraffe bending down to snuggle a baby giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303056.jpg', 'caption': 'A mother giraffe and her baby are touching nose to nose. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303056.jpg', 'caption': \"there's a mamma giraffe kissing her baby giraffe \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303056.jpg', 'caption': 'a large giraffe and a small giraffe behind a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556278.jpg', 'caption': 'A street intersection at night with no vehicles on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556278.jpg', 'caption': 'An empty street is lit up at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556278.jpg', 'caption': 'Bright lights flare over an empty city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556278.jpg', 'caption': 'A deserted intersection of main roads in a city at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556278.jpg', 'caption': 'An empty city roadway is lit with street lights and traffic signals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393145.jpg', 'caption': 'A bird sitting on the back of a giraffe next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393145.jpg', 'caption': 'a little bird sitting on the back of a giraffe ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393145.jpg', 'caption': 'The rear end of a giraffe with a bird sitting on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393145.jpg', 'caption': 'A bird is sitting on the behind of a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393145.jpg', 'caption': 'A bird sitting on the back of a giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093393.jpg', 'caption': 'A giraffe is walking up a grassy and rocky hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093393.jpg', 'caption': 'A giraffe stands on a hill covered in rocks and grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093393.jpg', 'caption': 'A giraffe walking on a grassy hill with mountains in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093393.jpg', 'caption': 'A lone giraffe walks on a rocky, grassy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093393.jpg', 'caption': 'A tall giraffe standing on top of a lush green hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259452.jpg', 'caption': 'A city with tall buildings and a large green park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259452.jpg', 'caption': 'Cars driving on a road in front of a city scape on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259452.jpg', 'caption': 'Cars drive on a road just outside of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259452.jpg', 'caption': 'A city landscape with cars, trees, and tall buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259452.jpg', 'caption': 'A picture of an open air zone that looks incredible.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178761.jpg', 'caption': 'A dog and a goat with their noses touching at fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178761.jpg', 'caption': 'A dog greets a sheep that is in a sheep pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178761.jpg', 'caption': 'Two animals get close through a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178761.jpg', 'caption': 'A sheep and a dog touching noses through a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178761.jpg', 'caption': 'a couple of animals that are beside a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565230.jpg', 'caption': 'two airplanes sitting on the air field another going down the runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565230.jpg', 'caption': 'A plane sitting on the runway at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565230.jpg', 'caption': 'The twin engine airliner is being towed on the runway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565230.jpg', 'caption': 'An airplane sitting on the runway at dusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565230.jpg', 'caption': 'Jet airplane parked at an airport at twilight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061520.jpg', 'caption': 'A street going through a city with tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061520.jpg', 'caption': 'Shot of various traffic signs and traffic light in city area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061520.jpg', 'caption': 'A street intersection in some Asian city somewhere in Asia.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061520.jpg', 'caption': 'street signs and a street light hanging on a metal pole above a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061520.jpg', 'caption': 'Large, tall buildings stand close together in an Asian city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537427.jpg', 'caption': 'An airplane is waiting at the jet bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537427.jpg', 'caption': 'a picture of a plane with characters on the side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537427.jpg', 'caption': 'An airplane parked on the tarmac at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537427.jpg', 'caption': 'A plane with drawings on the side waiting for people to board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537427.jpg', 'caption': 'An airplane with Hello Kitty characters on it at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148909.jpg', 'caption': 'A street light sitting next to a building on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148909.jpg', 'caption': 'A red lamp post holds two flags on each side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148909.jpg', 'caption': 'some signs on the road showing the street and direction', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148909.jpg', 'caption': 'Street signs next to a large brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148909.jpg', 'caption': 'A pole with two lights, two signs and a street sign on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414109.jpg', 'caption': 'A giraffe looking at something in some bush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414109.jpg', 'caption': 'A giraffe eating the natural foliage in the wilderness.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414109.jpg', 'caption': 'A giraffe standing in a wooded area, and looking at the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414109.jpg', 'caption': 'A tall giraffe stands in the green shrubs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414109.jpg', 'caption': 'a tall giraffe in tall green grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532338.jpg', 'caption': 'An airplane flies in the sky amid blue sky and big, puffy, white clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532338.jpg', 'caption': 'A plane flies above in a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532338.jpg', 'caption': 'A plane prepares to land on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532338.jpg', 'caption': 'A large passenger jet plane flying directly overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532338.jpg', 'caption': 'A large commercial plane flying overhead in a cloud filled sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105552.jpg', 'caption': 'A Jet2 airplane parked out on the edge of the tarmac', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105552.jpg', 'caption': 'An Air Plane is parked at the station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105552.jpg', 'caption': 'A large airplane parked in a stationary position.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105552.jpg', 'caption': 'there is a gray and red plane on the run way at the airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105552.jpg', 'caption': 'A red jet on a runway loading passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561570.jpg', 'caption': 'A big city street at night with the ghost of a taxi driving through an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561570.jpg', 'caption': 'a see through car gets ready to turn at a street light ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561570.jpg', 'caption': 'A double exposed picture of a brightly lit up part of the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561570.jpg', 'caption': 'A yellow taxi caught in motion making a right turn on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561570.jpg', 'caption': 'A city street at night with light traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556901.jpg', 'caption': 'A plane with water skies for landing gear coming in for a landing at a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556901.jpg', 'caption': 'Float airplanes use a lake as a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556901.jpg', 'caption': 'A small airplane in the sky and another in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556901.jpg', 'caption': 'A plane flying through a sky above a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556901.jpg', 'caption': 'a red and white plane is flying over some water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576191.jpg', 'caption': 'A gray tiger cat sitting underneath a metal bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576191.jpg', 'caption': 'Grey and black cat sitting under a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576191.jpg', 'caption': 'A kitten is sleeping underneath a metallic bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576191.jpg', 'caption': 'a close up of a cat laying on concrete under neath a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000576191.jpg', 'caption': 'Grey tabby cat resting beneath metal bench with eyes closed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448024.jpg', 'caption': 'An orange cat laying in front of a green wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448024.jpg', 'caption': 'A cat laying on the sidewalk near a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448024.jpg', 'caption': 'A cat is laying in front of a bench on a patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448024.jpg', 'caption': 'An orange cat lounging on a floor in front of a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448024.jpg', 'caption': 'An orange cat laying on the ground in front of a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008128.jpg', 'caption': 'A blue and white giraffe reaching for food up in a tall tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008128.jpg', 'caption': 'A blue and white giraffe statue position outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008128.jpg', 'caption': 'A sculpture of a blue giraffe stands erect.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008128.jpg', 'caption': 'a piece of art depicting a blue and white giraffe ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008128.jpg', 'caption': 'A blue and white statue of a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052925.jpg', 'caption': 'a small cat stands on some snowy plank ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052925.jpg', 'caption': 'Cat looking out from atop a frozen bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052925.jpg', 'caption': 'A cat is walking on a wooden deck in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052925.jpg', 'caption': 'A black cat walking on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052925.jpg', 'caption': 'A black cat is on a wood bench in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397045.jpg', 'caption': 'A cat sitting on the back of a bench while looking upward. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397045.jpg', 'caption': 'A cat standing on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397045.jpg', 'caption': 'An orange cat sitting on top of a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397045.jpg', 'caption': 'An orange cat climbing up a green chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397045.jpg', 'caption': 'A orange and white cat stands on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481911.jpg', 'caption': 'Two cats, brown and black cats on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481911.jpg', 'caption': 'An orange cat sitting on the ground with a black cat atop a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481911.jpg', 'caption': 'Two cats cleaning themselves near a park bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481911.jpg', 'caption': 'A couple of cats bathing themselves on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481911.jpg', 'caption': 'A cat sitting on the ground while another cat sits on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115070.jpg', 'caption': 'Two orange cats on steps with a bench in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115070.jpg', 'caption': 'A cat sits on the steps as another climbs up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115070.jpg', 'caption': 'A cat is sitting in front of some steps', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115070.jpg', 'caption': 'A cat that is sitting on some steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115070.jpg', 'caption': 'Two orange tabby cats near a set of stone steps. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067106.jpg', 'caption': 'A cat is sitting on a basket under a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067106.jpg', 'caption': 'A kitty in a basket under a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067106.jpg', 'caption': 'A house cat siting in a basket underneath and bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067106.jpg', 'caption': 'Cat lying in woven basket under wooden bench outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067106.jpg', 'caption': 'A cat that is sitting in a basket under a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096983.jpg', 'caption': 'A cat sitting on a wooden bench outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096983.jpg', 'caption': 'A cat is sitting on a bench outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096983.jpg', 'caption': 'A cat with a concerned look sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096983.jpg', 'caption': 'A cat sitting on a wood bench near leaves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096983.jpg', 'caption': 'A large orange and white cat sitting on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179948.jpg', 'caption': 'A traffic light next to a set of stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179948.jpg', 'caption': 'A street traffic signal posed on the side of a snowy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179948.jpg', 'caption': 'A street light and one way sign point the way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179948.jpg', 'caption': 'Snow on the ground and the steps are clear next to a green signal light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179948.jpg', 'caption': 'A snow covered street corner reads \"one way\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388212.jpg', 'caption': 'A tall giraffe is standing by a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388212.jpg', 'caption': 'A photo of a giraffe standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388212.jpg', 'caption': 'A giraffe stands in an enclosure among trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388212.jpg', 'caption': 'A giraffe standing on the grass near some trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388212.jpg', 'caption': 'A giraffe standing alone with a low fence behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535259.jpg', 'caption': 'Two people sit with a small child, who is wearing a large hat, on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535259.jpg', 'caption': 'Two parents on a bench with a little girl wearing a large hat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535259.jpg', 'caption': \"The woman adjusts the hat of her small child as a man holds the child's hand. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535259.jpg', 'caption': 'Middle aged couple playing with toddler on bench in park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535259.jpg', 'caption': 'Two parents are helping a baby put on a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380057.jpg', 'caption': 'Many posters are placed on a wall near a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380057.jpg', 'caption': 'People are holding signs, maybe protesting, next to traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380057.jpg', 'caption': 'a street sign on a busy city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380057.jpg', 'caption': 'a crowded street filled with people and their signs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380057.jpg', 'caption': 'People holding signs on a one way street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175867.jpg', 'caption': 'A wet rain soaked street surrounded by buildings and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175867.jpg', 'caption': 'A street light on the corner of an empty, wet street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175867.jpg', 'caption': 'there is only one car that is parked on this street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175867.jpg', 'caption': 'A view down a quiet street in St. Louis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175867.jpg', 'caption': 'Vehicles parked along street with dome-topped building and arch in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450728.jpg', 'caption': 'A man in a black shirt rides an elephant as a man walks near it down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450728.jpg', 'caption': 'A man leading an elephant down a street carrying another man', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450728.jpg', 'caption': 'on a road, a man rides an elephant, while another man leads', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450728.jpg', 'caption': 'Men riding and walking an elephant down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450728.jpg', 'caption': 'The men are walking and riding an elephant down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074096.jpg', 'caption': 'There stoplight in front of the buildings is green. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074096.jpg', 'caption': 'Green traffic signal and a do not walk sign in front of high rise buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074096.jpg', 'caption': 'A green light is going and a walk signal has just expired', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074096.jpg', 'caption': 'A traffic light is green at a city intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074096.jpg', 'caption': 'A traffic light flashes green against the backdrop of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365214.jpg', 'caption': 'A book sitting next to a cup of coffee on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365214.jpg', 'caption': 'a bench with a piece of paper and a coffee cup on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365214.jpg', 'caption': 'A notebook and a Dunkin Doughnuts cup are sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365214.jpg', 'caption': 'A white cup and a napkin sitting on a black park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365214.jpg', 'caption': 'A black bench with a coffee cup sitting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212322.jpg', 'caption': 'A bus stops next to a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212322.jpg', 'caption': 'This bus, parked at the curb, is destined for downtown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212322.jpg', 'caption': 'an image of a bus that is going down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212322.jpg', 'caption': 'A metro bus is pulled up to a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212322.jpg', 'caption': 'A bus is parked on the corner of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350860.jpg', 'caption': 'A sign on a bus that welcomes passengers and gives safety instructions. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350860.jpg', 'caption': 'some white black blue and red signs and a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350860.jpg', 'caption': \"A bus interior shows an industrial facade and a car and the word facility from a large window, as well as a portion of the driver's area, and directly behind it a vertical wall with a welcoming sign. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350860.jpg', 'caption': 'A welcome sign on the passenger/driver divider on a city bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350860.jpg', 'caption': 'The view of a welcome sign on a bus ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158414.jpg', 'caption': 'A bus is displaying rider information pamphlets at the front of the bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158414.jpg', 'caption': 'A row of pamphlets are sitting on a shelf at the front of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158414.jpg', 'caption': 'the area for bus route booklets on a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158414.jpg', 'caption': 'A bulletin board filled with blue pamphlets on a city bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158414.jpg', 'caption': 'A holder of bus schedules taken during the travel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020608.jpg', 'caption': 'A shorn sheep behind a chicken wire fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020608.jpg', 'caption': 'A small sheep standing next to a white tub in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020608.jpg', 'caption': 'Sheep and a duck behind a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020608.jpg', 'caption': 'a white goat a duck and some animals on a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020608.jpg', 'caption': 'A lamb has made its way to the food trough alongside a grassy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023380.jpg', 'caption': 'A bus stop is decorated with blue brochures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023380.jpg', 'caption': 'A metal sign is holding Metro route pamphlets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023380.jpg', 'caption': 'A metro station with various route pamphlets in a holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023380.jpg', 'caption': 'The displays houses bus schedules and a route map.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023380.jpg', 'caption': 'a display case holding assorted bus ride guides', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056248.jpg', 'caption': 'Looking out of a commuter bus at a small town grocery', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056248.jpg', 'caption': 'a view of the inside of a public transit bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056248.jpg', 'caption': 'Blue seats in a bus in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056248.jpg', 'caption': 'A city bus with hard blue double seats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056248.jpg', 'caption': 'Some seats in a bus parked near a grocery store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112702.jpg', 'caption': 'A green bus is parked near a city curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112702.jpg', 'caption': 'Metropolitan green and white bus on roadway on sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112702.jpg', 'caption': 'The public bus is proud to be an environmental one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112702.jpg', 'caption': 'a green and white bus sitting by the curb?? ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000112702.jpg', 'caption': 'A bus with a bike rack travelling down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476652.jpg', 'caption': 'A couple of giraffes that are standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476652.jpg', 'caption': 'A couple of giraffes are sitting in the wild. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476652.jpg', 'caption': 'A giraffe habitat with a lot of grass for the to graze.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476652.jpg', 'caption': 'a giraffe leans over into the grass in a habitat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476652.jpg', 'caption': 'This is a picture of three giraffes inside of a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126833.jpg', 'caption': 'A man sitting on a bench near a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126833.jpg', 'caption': 'A person is sitting by themselves on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126833.jpg', 'caption': 'The young man is sitting on the bench alone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126833.jpg', 'caption': 'A man sits on a bench outside under a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126833.jpg', 'caption': 'A man sitting on a bench near a pole with lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062889.jpg', 'caption': 'Many sheep are inside a wire fence near a large hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062889.jpg', 'caption': 'a fence with a mountain in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062889.jpg', 'caption': 'A gated area that has some sheep grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062889.jpg', 'caption': 'A fence leans away from a scenic mountain view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062889.jpg', 'caption': 'A lush green hillside with animals grazing on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267812.jpg', 'caption': 'Several giraffes, including an infant, stand in an exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267812.jpg', 'caption': 'Two giraffes standing near water and different types of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267812.jpg', 'caption': 'a large giraffe and a small giraffe posing in the picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267812.jpg', 'caption': 'A couple of dead stuffed giraffe standing in a museum', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267812.jpg', 'caption': 'three giraffes some trees and plants and blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571925.jpg', 'caption': 'a large giraffe is outside eating from a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571925.jpg', 'caption': 'a giraffe eating some leaves off a tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571925.jpg', 'caption': 'A giraffe is eating something leafy off a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571925.jpg', 'caption': 'A giraffe that is standing in the grass eating from a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571925.jpg', 'caption': 'A giraffe eating from a small tree while standing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144250.jpg', 'caption': 'Two giraffe walking through a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144250.jpg', 'caption': 'A giraffe is standing in the middle of the field with its baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144250.jpg', 'caption': 'A giraffe with their young on a plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144250.jpg', 'caption': 'A giraffe and its baby standing in a field of glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144250.jpg', 'caption': 'A giraffe and its young on an open prairie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079011.jpg', 'caption': 'Three giraffe standing next to each other on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079011.jpg', 'caption': 'Three giraffes stand together in a grassy foothill area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079011.jpg', 'caption': 'a small group of giraffe walking in a grassy area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079011.jpg', 'caption': 'The giraffes walking walking across a flat grassland.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079011.jpg', 'caption': 'Three giraffes stand in the grass by a dirt pile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215826.jpg', 'caption': 'An empty park bench next to a park under a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215826.jpg', 'caption': 'Paint peeling off of a bench with others lined up down the sandy stretch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215826.jpg', 'caption': 'A horizontal close up view of a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215826.jpg', 'caption': 'A close up picture of a park bench with peeling paint.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215826.jpg', 'caption': 'A wrought-iron city park bench seen through the armrests.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309528.jpg', 'caption': 'a man standing on a sidewalk next to an rv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309528.jpg', 'caption': 'a man departing a bus onto the street and another man standing next to the bus from the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309528.jpg', 'caption': 'A man with water bottles watching while another gets off of a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309528.jpg', 'caption': 'A man has two water bottles standing by a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309528.jpg', 'caption': 'a man standing in front of a motor home with blue containers of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096991.jpg', 'caption': 'THERE IS A PARK BENCH FACING A SNOW COVERED MOUNTAIN ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096991.jpg', 'caption': 'a bench sitting next to a river with snow on the sides', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096991.jpg', 'caption': 'BENCH OVERLOOKING SNOW CAPPED MOUNTAINS AND GREEN WATERS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096991.jpg', 'caption': 'Wintery scene of a bench by a mountain lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096991.jpg', 'caption': 'landscape of a bench overlooking a body of water and mountains in winter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120767.jpg', 'caption': 'A pair of children sit on a giraffe while other children stand nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120767.jpg', 'caption': 'Two children are playing on the back of the giraffe statue. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120767.jpg', 'caption': 'Children playing on and around a giraffe sculpture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120767.jpg', 'caption': 'Children sitting on the back of a giraffe statue with other kids nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120767.jpg', 'caption': 'children in a park two are sitting on a play giraffe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514016.jpg', 'caption': 'A bus stopped at a bus stop in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514016.jpg', 'caption': 'A bus and truck on a downtown city street in front of buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514016.jpg', 'caption': 'A bus on the side of the road in a city in front of a tan building with green awnings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514016.jpg', 'caption': 'A view of a bus in front of a large building in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514016.jpg', 'caption': 'A city bus is parked on the far side of an empty city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217825.jpg', 'caption': 'A city bus parked next to a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217825.jpg', 'caption': 'A bus stopped at a curb on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217825.jpg', 'caption': 'A bus is pulled up along a curb with no passengers waiting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217825.jpg', 'caption': 'A bus carrying passengers driving down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217825.jpg', 'caption': 'A bus at a bus stop on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293034.jpg', 'caption': 'A group of people that are standing around giraffes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293034.jpg', 'caption': 'People watching giraffes stand around in a cage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293034.jpg', 'caption': 'A group of people standing around a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293034.jpg', 'caption': 'A group of people looking at two giraffes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293034.jpg', 'caption': 'Giraffes lean over fences toward a group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425874.jpg', 'caption': 'A city street filled with traffic and traffic lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425874.jpg', 'caption': 'A bunch of street lights in a town hanging from ropes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425874.jpg', 'caption': 'Traffic lights are hanging over a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425874.jpg', 'caption': 'A line with stop lights strung on it over a road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425874.jpg', 'caption': 'A very dark image of people and cars by a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141616.jpg', 'caption': 'A mechanical street light and a traffic sign in the street next to a moving car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141616.jpg', 'caption': 'A temporary sign in front of a temporary streetlight at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141616.jpg', 'caption': 'There is a portable street light being used on this street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141616.jpg', 'caption': 'A sign warning people to stop at red lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141616.jpg', 'caption': 'A traffic light and a red sign saying \"WHEN RED LIGHT SHOWS WAIT HERE\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579885.jpg', 'caption': 'A herd of sheep grazing on grass in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579885.jpg', 'caption': 'a field full of sheep on some nice green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579885.jpg', 'caption': 'A bunch of very pretty sheep in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579885.jpg', 'caption': 'an open field with many sheep grazing and nursing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579885.jpg', 'caption': 'A small sheep getting milk from its parent in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404618.jpg', 'caption': 'a black and yellow fire hydrant is near the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404618.jpg', 'caption': 'A black fire hydrant with a yellow top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404618.jpg', 'caption': 'A yellow and black fire hydrant sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404618.jpg', 'caption': 'A yellow and black fire hydrant sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404618.jpg', 'caption': 'A close up of a black and yellow fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296353.jpg', 'caption': 'A white bus has the words, crosstown, on the front while a man walks near the side of the bus which is front of a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296353.jpg', 'caption': 'A close-up of the front of the mass transit bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296353.jpg', 'caption': 'A city bus sitting at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296353.jpg', 'caption': 'A bus loading and unloading passengers near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296353.jpg', 'caption': 'The white-colored 51 Crosstown bus on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182403.jpg', 'caption': 'Many flowers are laying in the dirt in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182403.jpg', 'caption': 'Two flowers peer above the others in front of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182403.jpg', 'caption': 'The flower is starting to grow and bloom in front of the bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182403.jpg', 'caption': 'a small field of white flowers with a bench in the background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182403.jpg', 'caption': 'Small wildflowers are blooming near a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069391.jpg', 'caption': 'A large white public bus parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069391.jpg', 'caption': 'A city bus pulled to a stop at a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069391.jpg', 'caption': 'A bus stopped along the side of the road at a bus stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069391.jpg', 'caption': 'a city bus is parked along a deserted side street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000069391.jpg', 'caption': 'This is a front shot of a public bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239997.jpg', 'caption': 'A large white city bus stopped at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239997.jpg', 'caption': 'A city bus parked doors open on a city corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239997.jpg', 'caption': 'The bus is by the bus stop now.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239997.jpg', 'caption': 'a city bus on the street pulled near a bus stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239997.jpg', 'caption': 'A city bus stops at a city bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233527.jpg', 'caption': 'The bus is parked alongside the road and is empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233527.jpg', 'caption': 'A white city bus traveling down a street next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233527.jpg', 'caption': 'an image of a bus picking up people on its route', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233527.jpg', 'caption': 'a white bus traveling down an empty street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233527.jpg', 'caption': 'A community bus parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035894.jpg', 'caption': 'A black and brown dog laying on a grass covered ground next to a yellow fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035894.jpg', 'caption': 'A dog lying by a fire hydrant next to the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035894.jpg', 'caption': 'a dog laying in the grass by a fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035894.jpg', 'caption': 'Black dog laying down next to a yellow fire hydrant on the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035894.jpg', 'caption': 'A dog rests in the grass next to a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566027.jpg', 'caption': 'A very cute black dog by a yellow fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566027.jpg', 'caption': 'a black dog in the grass beside a yellow fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566027.jpg', 'caption': 'A dog sitting next to a hydrant in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566027.jpg', 'caption': 'a dog sitting in front of a fire hydrant in the grass next to the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566027.jpg', 'caption': 'A dog sitting on the grass in front of a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492163.jpg', 'caption': 'A silver and rusted colored fire hydrant sitting next to a crosswalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492163.jpg', 'caption': 'an old metal fire hydrant sitting by the curb and a crosswalk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492163.jpg', 'caption': 'A fire hydrant is sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492163.jpg', 'caption': 'This fire hydrant is predominately silver in color, a cross walk can be seen in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492163.jpg', 'caption': 'a fire hydrant sits next to a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471350.jpg', 'caption': 'An orange and black fire hydrant at the edge of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471350.jpg', 'caption': 'an orange and black fire hydrant is by a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471350.jpg', 'caption': 'an orange and black fire hydrant sitting near the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471350.jpg', 'caption': 'this is a fire hydrant sitting on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471350.jpg', 'caption': 'An orange fire hydrant on the sidewalk of a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393254.jpg', 'caption': 'A tent in a forest next to a silver and brown RV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393254.jpg', 'caption': 'a camp site and a trailer on the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393254.jpg', 'caption': 'Two pictures of a tent and a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393254.jpg', 'caption': 'Two juxtaposed pictures show a tent and a motor home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393254.jpg', 'caption': 'There is a tent with a photo of a bus under it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145727.jpg', 'caption': 'Running track and playing field in a mountainous landscape', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145727.jpg', 'caption': 'A park with a walking track is pictured with mountains in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145727.jpg', 'caption': 'A track is brightly colored underneath a sky with darkened clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145727.jpg', 'caption': 'The track is round and made of clay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145727.jpg', 'caption': 'an empty red track circling around a quiet park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322285.jpg', 'caption': 'A public bus stopping on a street corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322285.jpg', 'caption': 'A bus with digital sign parked next to a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322285.jpg', 'caption': 'A Hyde park bus pulled over to the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322285.jpg', 'caption': 'A city bus has stopped in front of a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322285.jpg', 'caption': 'A green and white bus number 51 that goes to Hyde Park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197666.jpg', 'caption': 'A close-up view of a green and yellow fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197666.jpg', 'caption': 'The green and yellow fire hydrant is on a residential sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197666.jpg', 'caption': 'there is a fire hydrant that is painted green and yellow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197666.jpg', 'caption': 'a close up of a green and white fire hyrdrant next to a side walk with trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000197666.jpg', 'caption': 'A yellow and green fire hydrant sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321217.jpg', 'caption': 'A bench that is on a hill covered in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321217.jpg', 'caption': 'A skateboard and pole on a snow covered area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321217.jpg', 'caption': 'A view of a bench overlooking a mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321217.jpg', 'caption': 'An object is shown on top of white surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321217.jpg', 'caption': 'A bench is sitting in the snow on the hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274451.jpg', 'caption': 'Several people are standing on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274451.jpg', 'caption': 'School is out and the students cross the street to their bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274451.jpg', 'caption': 'A group of people walking toward a bus.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000559948.jpg', 'caption': 'Skier in red jacket kicking up snow while jumping. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086202.jpg', 'caption': 'A woman skiing poses on a snow slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086202.jpg', 'caption': 'A man riding skis across a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086202.jpg', 'caption': 'Person getting ready to ski down a slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086202.jpg', 'caption': 'A woman is standing on her skis on a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086202.jpg', 'caption': 'Someone smiling while skiing in their skis at a ski slope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048133.jpg', 'caption': 'a bunch of people on skis going through the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048133.jpg', 'caption': 'A group of people are getting ready to ski at a resort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048133.jpg', 'caption': 'Lots of people gathered near a chair lift at the bottom of a ski run.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048133.jpg', 'caption': 'A number of people on skis stand at the bottom of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048133.jpg', 'caption': 'a person riding a snow boar on a snowy surface ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448492.jpg', 'caption': 'A price sign for broccoli is in front of some radishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448492.jpg', 'caption': 'A sign describing broccoli for sale at a market', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448492.jpg', 'caption': 'a bunch of veggies are on display together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448492.jpg', 'caption': 'Vegetables are displayed on the shelves of a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448492.jpg', 'caption': 'Broccoli, onions, radishes and other vegetales in a display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025864.jpg', 'caption': 'A pretty young lady riding a pink scooter on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025864.jpg', 'caption': 'A girl rides a scooter while wearing a red cowgirl hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025864.jpg', 'caption': 'A girl in purple and orange on a scooter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025864.jpg', 'caption': 'The young girl in colorful clothing rides a scooter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025864.jpg', 'caption': 'A young girl is on a little tiny skateboard with handles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003694.jpg', 'caption': 'A man is doing a trick on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003694.jpg', 'caption': 'A man riding a skateboard down the side of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003694.jpg', 'caption': 'A man riding a skateboard performs a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003694.jpg', 'caption': 'A man doing a trick on a skateboard on a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003694.jpg', 'caption': 'a person riding a skate board on a ledge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242368.jpg', 'caption': 'a trey with a bunch of vegetables on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242368.jpg', 'caption': 'THERE ARE VEGETABLES THAT ARE ON THE TABLE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242368.jpg', 'caption': 'A white plate covered in lots of greens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242368.jpg', 'caption': 'A collection of green vegetables sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242368.jpg', 'caption': 'A view of a bunch of different kids of green vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028582.jpg', 'caption': 'Chives, radishes and other vegetables on a white cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028582.jpg', 'caption': 'A table topped with different types of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028582.jpg', 'caption': 'Group of festival sitting on top of a white towel together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028582.jpg', 'caption': 'Broccoli and veggies on a pillow with designs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028582.jpg', 'caption': 'A variation of vegetables are placed on the sheet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110052.jpg', 'caption': 'a person standing on top of skis holding ski poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110052.jpg', 'caption': 'Female skier on a mild slope, posed for photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110052.jpg', 'caption': 'Skier wearing red coat standing on snow covered slope in alpine area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110052.jpg', 'caption': 'A woman poses while skiing down a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110052.jpg', 'caption': 'A skier poses at the top of a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379055.jpg', 'caption': 'An apple and a paper weight on top of wooden blocks before a mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379055.jpg', 'caption': 'a coupe of mirrors with a couple of objects in front of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379055.jpg', 'caption': 'An apple and an artifact on wooden pieces each with tilting mirror behind each of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379055.jpg', 'caption': 'An apple and a nick knack sitting on a wooden block reflected back in a mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379055.jpg', 'caption': 'An apple and a metal object sitting on blocks of wood with mirrors over them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256035.jpg', 'caption': 'a person skiing in the snow during a marathon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256035.jpg', 'caption': 'A person in black skiing down a snow-covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256035.jpg', 'caption': 'A woman cross country skiing in a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256035.jpg', 'caption': 'A woman racing on skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256035.jpg', 'caption': 'A woman wearing black with a number on her leg is moving forward on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526371.jpg', 'caption': 'a person with a hat and some ski poles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526371.jpg', 'caption': 'A person riding skis down a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526371.jpg', 'caption': 'A wintery day with a skier pulling a sled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526371.jpg', 'caption': 'A person who is on snow skis, going down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526371.jpg', 'caption': 'A person wearing a hat is in the snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025005.jpg', 'caption': 'A male competitive speed skier coming around a curve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025005.jpg', 'caption': 'a Olympic snow skier wearing red and white in a competition', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025005.jpg', 'caption': 'A cross country skier skies on a field of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025005.jpg', 'caption': 'A skier in white clothing is attempting to go faster. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025005.jpg', 'caption': 'a man that is skiing down a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190041.jpg', 'caption': 'A man riding a skateboard down a brick sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190041.jpg', 'caption': 'a guy skateboarding down a long stretch of sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190041.jpg', 'caption': 'A fuzzy image of some people on skate boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190041.jpg', 'caption': 'A man skateboards on a sidewalk at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190041.jpg', 'caption': 'A very dark scene of a man with his skateboard and shadow on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295092.jpg', 'caption': 'A man riding skis down a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295092.jpg', 'caption': 'A cross country skier on a snowy course', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295092.jpg', 'caption': 'A skier in a black suit and orange toboggan. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295092.jpg', 'caption': 'A skier in an orange hat skiing across the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295092.jpg', 'caption': 'a person skiing down a hill in a black outfit ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110156.jpg', 'caption': 'A group of young and old are skiing on the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110156.jpg', 'caption': 'Family posing on the ski slopes wearing skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110156.jpg', 'caption': 'Three adult and two child skiers posing on a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110156.jpg', 'caption': 'A family of snow skiers lined up for a picture before their run.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110156.jpg', 'caption': 'A family poses for a photo while skiing on a snowy mountainside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562241.jpg', 'caption': 'A group of people riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562241.jpg', 'caption': 'A young boy stumbles as he skies down a mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562241.jpg', 'caption': 'A skier crashes while a group of seven travels in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562241.jpg', 'caption': 'A man is struggling to ski in the heavy snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562241.jpg', 'caption': 'There are people skiing down the snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061953.jpg', 'caption': 'A group of people skiing down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061953.jpg', 'caption': \"A person riding on ski's down a slope.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061953.jpg', 'caption': 'Two young men on skis with view of people on a ski lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061953.jpg', 'caption': 'People are skiing down a long ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061953.jpg', 'caption': 'A group of skiers going down a snow covered hill next to the ski lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373486.jpg', 'caption': 'A man on a skateboard who is performing a trick. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373486.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373486.jpg', 'caption': 'A skateboarder performing a trick on a stairwell.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373486.jpg', 'caption': 'The boy is skateboarding down the long steps', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373486.jpg', 'caption': 'a man is flying over some steps on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113095.jpg', 'caption': 'A skateboarder rides his skateboard across a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113095.jpg', 'caption': 'A young man riding on his skateboard down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113095.jpg', 'caption': 'A man riding a skateboard down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113095.jpg', 'caption': 'The boy is skating during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113095.jpg', 'caption': 'a man skate boarding down an empty street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459301.jpg', 'caption': 'A man holding two ski poles and two skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459301.jpg', 'caption': 'a person is out in the snow with some skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459301.jpg', 'caption': 'Adult skier standing in snow covered field while holding equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459301.jpg', 'caption': 'A person with some skis posing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459301.jpg', 'caption': 'Girl standing in snowy area holding a ski and ski poles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373289.jpg', 'caption': 'A person riding a skateboard on top of a tennis court at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373289.jpg', 'caption': 'A man on a skateboard in the dark', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373289.jpg', 'caption': 'The skateboarder in pink rides on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373289.jpg', 'caption': 'A skateboarder dressed in pink and black at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373289.jpg', 'caption': 'A young person riding a skateboard about to preform a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329932.jpg', 'caption': 'Dude grinding on the edge of the ramp with his skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329932.jpg', 'caption': 'A skateboarder hangs his skateboard on the lip of a ramp to make a turn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329932.jpg', 'caption': 'A skateboarder is balanced on the lip of a half pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329932.jpg', 'caption': 'A guy on a skate board on top of a big ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329932.jpg', 'caption': 'A kid wearing black and white is on the ledge of a skateboard ramp on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311690.jpg', 'caption': 'A plate topped with lots of greens next to a bottle of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311690.jpg', 'caption': 'An up close image of a broccoli dish on a plate next to a glass of white wine and a bottle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311690.jpg', 'caption': 'A meal is on a plate beside a wine glass and bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311690.jpg', 'caption': 'A food entree is served on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311690.jpg', 'caption': 'A plate of food and a bottle of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316240.jpg', 'caption': 'Multiple images are seen showing forest scenes and a small cottage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316240.jpg', 'caption': 'A collection of different plants and fields, with a tomato plant being the most prominent. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316240.jpg', 'caption': 'Various types of pictures that are of different plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316240.jpg', 'caption': 'Colorful collection of pictures of a wooded area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316240.jpg', 'caption': 'A collage of several photos show outdoor scenes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186026.jpg', 'caption': 'A little child riding skis down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186026.jpg', 'caption': \"A person riding a pair of ski's down a hill.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186026.jpg', 'caption': 'A child stands on skis on a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186026.jpg', 'caption': 'A child skis down a gentle slope without poles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186026.jpg', 'caption': 'a person riding skis on a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323119.jpg', 'caption': 'a close up of a basket of fruit on a bike ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323119.jpg', 'caption': 'A bicycle with a basket filled with fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323119.jpg', 'caption': 'The bicycle basket is full of yellow apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323119.jpg', 'caption': 'A black bike with a basket full of fruit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323119.jpg', 'caption': \"A bicycle's front basket is filled with fresh apples.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021776.jpg', 'caption': 'A man slicing up an apple on top of a wooden cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021776.jpg', 'caption': 'An apple is being cut into slices on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021776.jpg', 'caption': 'A man slices an apple on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021776.jpg', 'caption': 'A person is cutting an apple on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021776.jpg', 'caption': 'a close up of a person cutting apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316514.jpg', 'caption': 'a bowl full of mixed vegetables and pieces', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316514.jpg', 'caption': 'some sliced veggies sittting in a bowl ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316514.jpg', 'caption': 'a steel bowl with julienne carrots and other vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316514.jpg', 'caption': 'some chopped up vegetables in a metal bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316514.jpg', 'caption': 'Several different kinds of julienned vegetables in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034234.jpg', 'caption': 'A man is standing with a skateboard in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034234.jpg', 'caption': 'A man standing holding a skateboard vertical in one hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034234.jpg', 'caption': 'A man standing on the street holding a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034234.jpg', 'caption': 'A man with a hat on backwards stands with a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034234.jpg', 'caption': 'A man is standing outside with his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092634.jpg', 'caption': 'A white plate topped with a pile of fries next to a cut in half sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092634.jpg', 'caption': 'A patty melt is shown with french fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092634.jpg', 'caption': 'Grilled cheeseburger with a pickle on the side with a side of fries. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092634.jpg', 'caption': 'A sandwich, fries and pickle sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092634.jpg', 'caption': 'A large plate of french fries and a sandwich .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460131.jpg', 'caption': 'A big pile of assorted fresh produce close together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460131.jpg', 'caption': 'A table with all kinds of different vegetables on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460131.jpg', 'caption': 'A pile of different colored vegetables sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460131.jpg', 'caption': 'Assorted vegetables and greens on a table cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460131.jpg', 'caption': 'A big pile of vegetables sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232432.jpg', 'caption': '3 dogs sitting in front of a fruit and veggie stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232432.jpg', 'caption': 'There are three dogs sitting Together under a umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232432.jpg', 'caption': 'Three dogs sitting side by side in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232432.jpg', 'caption': 'A group of dogs in front of a wooden crate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232432.jpg', 'caption': 'Three dogs standing in front of a counter at a shop wearing leashes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553912.jpg', 'caption': 'LOTS OF PEOPLE AND VEHICLES ON A BUSY CITY STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553912.jpg', 'caption': 'People skateboarding and riding bikes on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553912.jpg', 'caption': 'A man wearing a jacket walking across a street at a cross walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553912.jpg', 'caption': 'A man standing in the crosswalk at a busy intersection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553912.jpg', 'caption': 'Person in gray hooded jacket attempting t cross busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063650.jpg', 'caption': 'two people riding skate boards on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063650.jpg', 'caption': 'Many people skateboard through an intersection, stopping traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063650.jpg', 'caption': 'These skateboarders need to be careful with all of the street traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063650.jpg', 'caption': 'Skateboarders ride beside people crossing a crowded street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063650.jpg', 'caption': 'A group of skateboarders riding down a busy street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447364.jpg', 'caption': 'Kneeling on the skateboard, the rider uses their arms to propel them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447364.jpg', 'caption': 'Little boy riding a skateboard down the side walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447364.jpg', 'caption': 'A boy sitting on a skateboard with his hands behind is back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447364.jpg', 'caption': 'A boy is sitting on a skateboard and pushing himself along.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447364.jpg', 'caption': 'A young boy kneels down on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528276.jpg', 'caption': 'the man is riding a skateboard around the empty lots', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528276.jpg', 'caption': 'The skaters are trying their tricks on the abandoned street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528276.jpg', 'caption': 'A man riding a skateboard down a walk way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528276.jpg', 'caption': 'A man riding on a skateboard on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528276.jpg', 'caption': 'A man is riding a skateboard in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232115.jpg', 'caption': 'assorted desserts sitting on an outdoors table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232115.jpg', 'caption': 'A table with different foods and dishes on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232115.jpg', 'caption': 'there is a tray with different layers of sweets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232115.jpg', 'caption': 'a table that is outside with food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232115.jpg', 'caption': 'A four tiered dessert plate full of dessert on a table outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439651.jpg', 'caption': 'A cup of coffee sitting next to a computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439651.jpg', 'caption': 'a desk that has a keyboard and a cup on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439651.jpg', 'caption': 'Black and white photograph of a cup of coffee and a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439651.jpg', 'caption': 'a desk with a cup and a keyboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439651.jpg', 'caption': 'a coffee cup is next to a white keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579326.jpg', 'caption': 'A pile of broccoli and carrots sitting on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579326.jpg', 'caption': 'A bunch of different vegetables on a white cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579326.jpg', 'caption': 'Vegetables and greens laid out on a cloth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579326.jpg', 'caption': 'A batch of lettuce and carrots sitting on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579326.jpg', 'caption': 'Green leafy vegetables and carrots laying on a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276133.jpg', 'caption': 'A group of carrots sit in a glass dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276133.jpg', 'caption': 'some carrots are in a glass tray on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276133.jpg', 'caption': 'Baked carrots in glass pan on counter with green napkin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276133.jpg', 'caption': 'A bunch of carrots in a roasting pan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276133.jpg', 'caption': 'Some roasted carrots are in a glass dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433705.jpg', 'caption': 'A pile of tomatoes, carrots, squash, lettuce and spinach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433705.jpg', 'caption': 'An arrangement of fresh produce including tomatoes, kale, and cabbage on a white tablecloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433705.jpg', 'caption': 'A tray with tomatoes, oranges, kales, cabbage and other vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433705.jpg', 'caption': 'A bunch of various vegetables on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433705.jpg', 'caption': 'A variety of vegetables adorns a cloth covered tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348854.jpg', 'caption': 'A batch of very deformed looking carrots among a group of different types of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348854.jpg', 'caption': 'Fresh carrots hang tied together on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348854.jpg', 'caption': 'There are some oddly shaped carrots hanging up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348854.jpg', 'caption': 'Some carrots that have grown in an irregular twisty shape hang from a post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348854.jpg', 'caption': 'Oddly shaped carrots hanging in front of other vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248051.jpg', 'caption': 'A man riding a skateboard on top of a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248051.jpg', 'caption': 'A man executing a skateboard trick into the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248051.jpg', 'caption': 'A man in white shirt doing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248051.jpg', 'caption': 'A young man in a white shirt skateboarding on an empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248051.jpg', 'caption': 'A person that is skateboarding on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026611.jpg', 'caption': 'Carrots in a bowl on a metal surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026611.jpg', 'caption': 'A lot of peeled carrots inside a round metal bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026611.jpg', 'caption': 'A bunch of carrots that are in a container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026611.jpg', 'caption': 'an image of a pot of carrots with stalks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026611.jpg', 'caption': 'A silver bowl containing many carrots with long, green stems', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476569.jpg', 'caption': 'Three people are skiing in the snow near a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476569.jpg', 'caption': 'A mom and her two children on snow skis getting ready to go downhill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476569.jpg', 'caption': 'One adult and two children pose for a picture in their ski equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476569.jpg', 'caption': 'Three people on skis in the snow together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476569.jpg', 'caption': 'A woman with two children on skis on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321663.jpg', 'caption': 'The colorfully dressed woman is skiing through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321663.jpg', 'caption': 'A woman in a blue clown wig skiing down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321663.jpg', 'caption': 'A person in a costume skiing down a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321663.jpg', 'caption': 'A woman in red snow skiing down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321663.jpg', 'caption': 'Person in blue hat is skiing in a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181265.jpg', 'caption': 'a bride and groom prepare to cut the wedding cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181265.jpg', 'caption': 'a man and woman are standing next to a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181265.jpg', 'caption': 'A couple at their wedding reception cutting the cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181265.jpg', 'caption': ' A man standing next to a bride in front of a wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181265.jpg', 'caption': 'A man in uniform and a woman in a bridal gown stand near a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241638.jpg', 'caption': 'A young boy riding skis down a slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241638.jpg', 'caption': 'A person wearing a colorful helmet and skiing down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241638.jpg', 'caption': 'a person on skis with a multicolored cat skiing down a snowy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241638.jpg', 'caption': 'A man is downhill skiing in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241638.jpg', 'caption': 'A person is skiing while wearing an Indian headdress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431323.jpg', 'caption': 'Several peeled vegetables are sitting in a baking dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431323.jpg', 'caption': 'On a metal pan are some skinned vegetables, and fruits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431323.jpg', 'caption': 'The vegetables have been cut and are now in the pan. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431323.jpg', 'caption': 'A pan has fruit and vegetables on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431323.jpg', 'caption': 'A large metal pan filled with peeled food items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431891.jpg', 'caption': 'Bunches of carrots and broccoli on display stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431891.jpg', 'caption': 'A pile of carrots next to other green and purple vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431891.jpg', 'caption': 'Vegetables are stacked up high on a market stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431891.jpg', 'caption': 'A row of broccoli heads, carrot bushels, and radish bushels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431891.jpg', 'caption': 'A table full of many carrots and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303956.jpg', 'caption': 'A man flying through the air riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303956.jpg', 'caption': 'Man on a green skateboard kicking his board into the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303956.jpg', 'caption': 'A teen is seen mid-jump while flipping his skateboard in an indoor skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303956.jpg', 'caption': 'A man on a skateboard in mid-air on a skate ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303956.jpg', 'caption': 'A guy doing a trick on a skateboard on a indoor half pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522612.jpg', 'caption': 'Guy jumping over the railing while on his skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522612.jpg', 'caption': 'there is a male skateboarder that is doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522612.jpg', 'caption': 'A man is high in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522612.jpg', 'caption': 'a man is in the air on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522612.jpg', 'caption': 'A skateboarder in mid air after a jump ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006415.jpg', 'caption': 'A knife sitting next to carrots on top of a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006415.jpg', 'caption': 'Carrots are being cut into pieces with a large knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006415.jpg', 'caption': 'A butcher knife next to carrots cut to various sizes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006415.jpg', 'caption': 'Carrots are sitting on a counter in different stages of cutting with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006415.jpg', 'caption': 'A knife and progressively finely chopped up carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547000.jpg', 'caption': 'A man walking across a field covered in white snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547000.jpg', 'caption': 'A man skis through the snow on a hazy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547000.jpg', 'caption': 'A person with skis on riding through a snowy plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547000.jpg', 'caption': 'The area is completely covered in snow with one guy walking through it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547000.jpg', 'caption': 'A man who is walking in the snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388989.jpg', 'caption': 'A boy does a jump with a skateboard while a girl watches. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388989.jpg', 'caption': 'Young skateboarder displaying aerial skills with young girl looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388989.jpg', 'caption': 'a skateboarder catches a lot of air in front of a girl ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388989.jpg', 'caption': 'A kid that is jumping in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388989.jpg', 'caption': 'a couple skateboarders doing trips at a skateboard park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172279.jpg', 'caption': 'A tall green and blue sculpture sitting in a park next to a skateboarder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172279.jpg', 'caption': 'Green and blue plastic containers sitting side by side outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172279.jpg', 'caption': 'A man performs a skateboard trick on a large, twisting structure. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172279.jpg', 'caption': 'A person on a skate board about to descend a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172279.jpg', 'caption': 'Boy on a skateboard coming down from the top of a blue and green statue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462006.jpg', 'caption': 'A woman holding a child on top of her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462006.jpg', 'caption': 'The little asian baby is eating a small carrot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462006.jpg', 'caption': 'A young child is held by an adult while chewing on a carrot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462006.jpg', 'caption': 'a boy plays with his food and his mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462006.jpg', 'caption': 'A lady holding a baby eating a carrot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346880.jpg', 'caption': 'A half eaten hot dog sitting on a paper napkin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346880.jpg', 'caption': 'The hotdog has mustard and bacon on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346880.jpg', 'caption': 'A hotdog on a bun with bacon and mustard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346880.jpg', 'caption': 'A hot dog with mustard and bacon on a napkin next to two mustard packets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346880.jpg', 'caption': 'A hot dog with bacon and mustard packs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004108.jpg', 'caption': 'A table topped with trays full of hot dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004108.jpg', 'caption': 'The table is set up with the food for people to grab what they like. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004108.jpg', 'caption': 'A table of food that includes hotdogs and desserts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004108.jpg', 'caption': 'A table covered in hotdogs, sodas, and cake is pictured.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004108.jpg', 'caption': 'a table with many different food items and a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206751.jpg', 'caption': 'A man holding a giant half a sandwich on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206751.jpg', 'caption': 'there is a man sitting at a table eating a sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206751.jpg', 'caption': 'a person holding a sandwich and sitting at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206751.jpg', 'caption': 'A man eating a sandwich at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206751.jpg', 'caption': 'A person is holding a large sandwich in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399759.jpg', 'caption': 'Woman eating a hot dog standing in front of a fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399759.jpg', 'caption': 'A woman holding a hot dog in front of a water fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399759.jpg', 'caption': 'A woman is posing by a statue with a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399759.jpg', 'caption': 'A woman sits in front of the fountain holding the hot dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399759.jpg', 'caption': 'A lady with a hot dog in front of a statuesque fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211722.jpg', 'caption': 'A moustached skate board rider holds his board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211722.jpg', 'caption': 'A still shot of a skateboarder and his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211722.jpg', 'caption': 'A man stands holding his skateboard on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211722.jpg', 'caption': 'Man holding skateboard standing at curb in populated area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211722.jpg', 'caption': 'A man that is standing on a sidewalk with a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543268.jpg', 'caption': 'A display case inside of a bakery filled with doughnuts and cakes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543268.jpg', 'caption': 'A display with a lot of cold cuts and stuff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543268.jpg', 'caption': 'A coffee shop with many pastries to choose from.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543268.jpg', 'caption': 'a bakery with food on display behind a glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543268.jpg', 'caption': 'The bakery display case of a sandwich shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420666.jpg', 'caption': 'a hotdog with cheese, with a side of chili fries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420666.jpg', 'caption': 'A foam container filled with chili cheese fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420666.jpg', 'caption': 'THERE IS A PLATE OF HOT DOGS AND FRIES ON THE TABLE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420666.jpg', 'caption': 'Some chili cheese fries next to a hotdog with slaw and ketchup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420666.jpg', 'caption': 'Loaded french fries in a container sitting beside a hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489019.jpg', 'caption': 'A person using a skateboard on the side of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489019.jpg', 'caption': 'A man in striped shirt riding a skateboard on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489019.jpg', 'caption': 'A person on a skateboard is riding up on the wall and his shadow towers above him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489019.jpg', 'caption': 'A man riding a skateboard on a ramp in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489019.jpg', 'caption': 'A man riding a skateboard down the side of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292995.jpg', 'caption': 'A tray of hot dogs with different toppings on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292995.jpg', 'caption': 'Various hot dogs with different toppings are on the tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292995.jpg', 'caption': 'Hot dogs sitting on an red tray next to french fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292995.jpg', 'caption': 'A platter full of hot dogs with different toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292995.jpg', 'caption': 'A plate of hot-dogs with multiple toppings like mustard, cheese, chili. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244940.jpg', 'caption': 'A collection of hot dogs topped with a variety of toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244940.jpg', 'caption': 'A photo of a dog dog covered in cheese noodles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244940.jpg', 'caption': 'Two hot dogs with different toppings on a tray with French fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244940.jpg', 'caption': 'Food items displayed on red trays on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244940.jpg', 'caption': 'A hot dog that has some cheese on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518222.jpg', 'caption': 'A young male is riding his skateboard on the ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518222.jpg', 'caption': 'A young boy practicing his balance on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518222.jpg', 'caption': 'The boy in the white t-shirt rides his skateboard on the concrete structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518222.jpg', 'caption': 'A boy riding on a skateboard on the concrete.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518222.jpg', 'caption': 'A person is standing on the street on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159898.jpg', 'caption': 'A man in a white shirt riding on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159898.jpg', 'caption': 'Young boy displaying skateboard skills on cement surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159898.jpg', 'caption': 'Two people ride skateboards on a concrete area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159898.jpg', 'caption': 'a young person riding a skate board on cement ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159898.jpg', 'caption': 'A young man rides a skateboard while others play in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528720.jpg', 'caption': 'A man riding a skateboard next to another man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528720.jpg', 'caption': 'A man with a skateboard and another man on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528720.jpg', 'caption': 'Two guys with skateboards standing on a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528720.jpg', 'caption': 'Black and white photo of two men in hats, one on skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528720.jpg', 'caption': 'Two men are standing at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257198.jpg', 'caption': 'A woman in sunglasses eating a hotdog in grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257198.jpg', 'caption': 'The lady in the sunglasses is holding something toward the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257198.jpg', 'caption': 'A woman wearing some sunglasses holding a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257198.jpg', 'caption': 'A girl looks up at the camera while sitting on grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257198.jpg', 'caption': 'A woman wearing sunglasses, holding a partially eaten hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489739.jpg', 'caption': 'A little girl is sitting in an IKEA kart enjoying a snack. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489739.jpg', 'caption': 'The young girl is eating a hot dog while riding in a shopping cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489739.jpg', 'caption': 'A little girl sitting in a shopping car holding a piece of cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489739.jpg', 'caption': 'A little girl is partaking in a brown bag lunch while riding in a shopping cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489739.jpg', 'caption': 'A little girl is eating a hot dog and riding in a shopping cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113473.jpg', 'caption': 'Woman in sunglasses preparing to take a bite of a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113473.jpg', 'caption': 'A woman is opening her mouth to take a bite of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113473.jpg', 'caption': 'A woman makes a face as she bites into a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113473.jpg', 'caption': 'A woman eating a sandwich with her left hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113473.jpg', 'caption': 'A woman wearing big red glasses eats a sandwich and holds a water bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505899.jpg', 'caption': 'A white plate topped with two donuts on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505899.jpg', 'caption': 'Two donuts on a plate next to a mug. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505899.jpg', 'caption': 'Two donuts and a cup of coffee on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505899.jpg', 'caption': 'A plate with pastries near a mug with a creamy heart in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505899.jpg', 'caption': 'Two donuts are on a plate near a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456446.jpg', 'caption': 'A person is windsurfing near several waves on a hazy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456446.jpg', 'caption': 'A man para sailing through the ocean waves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456446.jpg', 'caption': 'A person is taken in this very picture.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456446.jpg', 'caption': 'A person windsurfs near large and violent waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456446.jpg', 'caption': 'A person is windsurfing amongst some huge waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484485.jpg', 'caption': 'A snowboarder holding a snowboard standing under a sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484485.jpg', 'caption': 'The snowboard is almost as big as the snowboarder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484485.jpg', 'caption': 'There is a person that is holding something in front if a sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484485.jpg', 'caption': 'A woman stands in front of a sign with a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484485.jpg', 'caption': 'An individual is doing something that is uncommonly entrancing. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383706.jpg', 'caption': 'A doughnut with sprinkles is sitting on a piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383706.jpg', 'caption': 'Closeup of a donut with pink frosting and sprinkles on white paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383706.jpg', 'caption': 'Fancy sprinkled donut and napkin on a table in a donut shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383706.jpg', 'caption': 'A doughnut with frosting and sprinkles on a napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383706.jpg', 'caption': 'There is a single frosted donut with sprinkles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571990.jpg', 'caption': 'A large pile of a variety of donuts seen from above', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571990.jpg', 'caption': 'A large stack of a variety of donuts, all set on top of each other to make a pyramid like design.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571990.jpg', 'caption': 'A pile of different flavored donuts topped with chocolate and coconut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571990.jpg', 'caption': 'Overhead shot of a pyramid of assorted cake donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571990.jpg', 'caption': 'Various decorated donuts are stacked on top of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234387.jpg', 'caption': 'Three donuts in a box that is open and on a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234387.jpg', 'caption': 'a box of doughnuts on the back of a bicycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234387.jpg', 'caption': 'Doughnuts sit on the back of a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234387.jpg', 'caption': 'Three donuts sit in a box on the back of a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234387.jpg', 'caption': 'The red bicycle is holding three leftover donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018781.jpg', 'caption': 'A hot dog on a plate with sauerkraut and some small green pickles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018781.jpg', 'caption': 'A hot dog with pickles is on a plate next to some paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018781.jpg', 'caption': 'A hotdog on a plate with two green peppers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018781.jpg', 'caption': 'A plate with a hot dog and fresh pickles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018781.jpg', 'caption': 'A hotdog on a plate with two green things', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574066.jpg', 'caption': 'a glass covered donut fryer frying a ring of donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574066.jpg', 'caption': 'Donuts are being made in an automated machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574066.jpg', 'caption': ' There are donuts being freshly made in a machine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574066.jpg', 'caption': 'Donuts are entering a frying oil in a half circle fashion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574066.jpg', 'caption': 'A photo of donuts frying in oil behind glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541538.jpg', 'caption': 'A piece of pie and donut on plates at a table with three beer mugs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541538.jpg', 'caption': 'A table with mugs of beer, a slice of pie, donut and passports.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541538.jpg', 'caption': 'A table filled with bowls of dessert next to mugs of beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541538.jpg', 'caption': 'A table is set with three mugs of beer, a slice of pie, a donut with a segment cut out, and few other objects.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541538.jpg', 'caption': 'A meal of dessert and beer is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256814.jpg', 'caption': 'A man holding a donut in his right hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256814.jpg', 'caption': 'A person holding a piece of food in between two other people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256814.jpg', 'caption': 'A smiling man holds a doughnut with smiling women next to him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256814.jpg', 'caption': 'a man is holding a doughnut out in front of him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256814.jpg', 'caption': 'Man with a half eaten bagel surrounded by two women.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201498.jpg', 'caption': 'A snowboader falling face first into the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201498.jpg', 'caption': 'A man laying on top of snow with a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201498.jpg', 'caption': 'Someone is one the ground with snowboard on their feet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201498.jpg', 'caption': 'A person with a snow board laying in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201498.jpg', 'caption': 'A view of a snowboarder as they crash into the snowy ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355256.jpg', 'caption': 'A guy seems overly happy about some fried food he is holding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355256.jpg', 'caption': 'A man in grey shit holding a small piece of fried food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355256.jpg', 'caption': 'Man smiling while displaying food item in kitchen area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355256.jpg', 'caption': 'A man holds a piece of food in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355256.jpg', 'caption': 'A man holding up a piece of food .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310059.jpg', 'caption': 'A television playing Battlestar Galactica with pizza on a plate on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310059.jpg', 'caption': 'A television with some food sitting on the floor near it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310059.jpg', 'caption': 'Battlestar Galactica is playing on a flat screen television and there is a plate of pizza on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310059.jpg', 'caption': 'A TV turned on to a video game and some pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310059.jpg', 'caption': 'Food sitting on a white plate below a television with video game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268966.jpg', 'caption': 'A close up of a ring shaped cookie with green icing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268966.jpg', 'caption': 'A hand holding a desert item with green frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268966.jpg', 'caption': 'A person is holding something donut shaped in their hands. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268966.jpg', 'caption': 'a donut that is convered in green icing and powder', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268966.jpg', 'caption': 'A person holding a donut with a green frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479613.jpg', 'caption': 'Three men are at a restaurant table with donuts and beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479613.jpg', 'caption': 'A group of people around the table with doughnuts and soda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479613.jpg', 'caption': 'Three men at a wooden table with drinks and donuts. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479613.jpg', 'caption': 'a group of people sit at a table with doughnuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479613.jpg', 'caption': 'Some people that are eating some food together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395831.jpg', 'caption': 'A pink box filled with donuts next to a bottle of coke.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395831.jpg', 'caption': 'A pink box full of mostly eaten doughnuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395831.jpg', 'caption': 'A pink box of doughnuts, a two liter bottle of Coca Cola, a bottle of liquor and a shot glass are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395831.jpg', 'caption': 'A box of half eaten donuts that is sitting on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395831.jpg', 'caption': 'a close up of a box of doughnuts ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281601.jpg', 'caption': 'A man in a hat eating food with chopsticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281601.jpg', 'caption': 'A man smiles while holding his food at the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281601.jpg', 'caption': 'A man is eating food with a pair of chopsticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281601.jpg', 'caption': 'A man eating dumplings with chop sticks at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281601.jpg', 'caption': 'A man smiles while eating a meal with chop sticks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560470.jpg', 'caption': 'A woman holding up a chocolate doughnut with icing on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560470.jpg', 'caption': 'A woman is holding up a chocolate covered doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560470.jpg', 'caption': 'A woman holding a donut with the letter M on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560470.jpg', 'caption': 'A smiling lady holding up a tasty looking pastry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560470.jpg', 'caption': 'A woman is smiling and holding up a chocolate iced pastry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517133.jpg', 'caption': 'A man holds a box of donuts while eating one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517133.jpg', 'caption': 'A man taking a bite out of a doughnut. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517133.jpg', 'caption': 'A man outside at night eating donuts from a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517133.jpg', 'caption': 'A young man eating doughnuts in a parking lot at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517133.jpg', 'caption': 'Boy eating a donut with a box of Tim Horton donuts in his other hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245540.jpg', 'caption': 'A big pile of pastries with powder stacked on top of one another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245540.jpg', 'caption': 'There is a dozen of sugar coated doughnuts on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245540.jpg', 'caption': 'A bunch of doughnuts stacked on top of each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245540.jpg', 'caption': 'Sugar covered doughnuts are heaped in a pile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245540.jpg', 'caption': 'A close-up of a pile of glazed doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174904.jpg', 'caption': 'A Christmas ornament shaped like a donut on a Christmas tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174904.jpg', 'caption': 'A Christmas decoration designed to look like a chocolate covered bagel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174904.jpg', 'caption': 'A doughnut shaped ornament hanging from a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174904.jpg', 'caption': 'A Christmas ornament in the shape of a bagel hangs from a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174904.jpg', 'caption': 'a Christmas ornament shaped like a doughnut decorated in gold ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184810.jpg', 'caption': 'A man is carrying a surfboard towards the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184810.jpg', 'caption': 'A surfer is carrying his board into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184810.jpg', 'caption': 'A man holding a surf board on a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184810.jpg', 'caption': 'A man laughing while holding a surfboard on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184810.jpg', 'caption': 'A surfer holding a surf board on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198796.jpg', 'caption': 'White plate with small pieces of a sandwich on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198796.jpg', 'caption': 'A plate with a sandwich on it and several pieces of silverware on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198796.jpg', 'caption': 'A plate has potato chips and fish with wooden skewers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198796.jpg', 'caption': 'A unique looking meal is placed on the plate with silverware. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198796.jpg', 'caption': 'A long narrow plat holding a sandwich, waffle chips, and some salad. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550952.jpg', 'caption': 'A group of four surfboards laying on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550952.jpg', 'caption': 'A group of very colorful surf boards in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550952.jpg', 'caption': 'Four colorful surfboards laying on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550952.jpg', 'caption': 'Surfboard laying on sandy beach on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550952.jpg', 'caption': 'Surfboards drying on the beach in the afternoon sun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127842.jpg', 'caption': 'a man surfing a small wave on part of a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127842.jpg', 'caption': 'A man on a surfboard that is on a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127842.jpg', 'caption': 'A man is surfing through the waves of river rapids.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127842.jpg', 'caption': 'A person riding waves on a surfboard on a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127842.jpg', 'caption': 'A man in a wet suit is on a white surfboard on a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007673.jpg', 'caption': 'A person rides a surf board in wavy rapids.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007673.jpg', 'caption': 'A person on a surfboard on rapids in a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007673.jpg', 'caption': 'A man surfs down a small wave in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007673.jpg', 'caption': 'The man in the wetsuit rides his boogie board down the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007673.jpg', 'caption': 'A surfer standing on a board in a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300206.jpg', 'caption': 'a person surfing down a river on a surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300206.jpg', 'caption': 'A man is surfing in a river while another person watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300206.jpg', 'caption': 'A man riding a surfboard on top of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300206.jpg', 'caption': 'A person on a surfboard casually riding calm waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300206.jpg', 'caption': 'A man is surfing in a wave simulator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132953.jpg', 'caption': 'A man in black surfing in wild choppy water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132953.jpg', 'caption': 'A man riding a surfboard in the rapids of a river ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132953.jpg', 'caption': 'Man in a wet suit surfing river rapids ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132953.jpg', 'caption': 'a person surfing in a large deep river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132953.jpg', 'caption': 'A person surfs waves in a river. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130062.jpg', 'caption': 'A man who is on a surfboard in a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130062.jpg', 'caption': 'a man surfing on part of a river ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130062.jpg', 'caption': 'a man surfing on a river with so high waves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130062.jpg', 'caption': 'A man surfing down a rushing rivers wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130062.jpg', 'caption': 'A man on surfboard in a river with another person standing in the river behind him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513220.jpg', 'caption': 'A chili cheese dog with french fries on a plate.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000513220.jpg', 'caption': 'A meatball sub served with french fries on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513220.jpg', 'caption': 'A meatballs sub and french fries on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513220.jpg', 'caption': 'A meatball sandwich and french fries is on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513220.jpg', 'caption': 'Plate of fries and meatball sandwich sits on table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043944.jpg', 'caption': 'A plate of food with sandwiches and some fries on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043944.jpg', 'caption': 'A club sandwich is served with a pile of crinkle cut fries and coleslaw. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043944.jpg', 'caption': 'The sandwich cut into four pieces is next to french fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043944.jpg', 'caption': 'A black plate topped with sandwiches and french fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043944.jpg', 'caption': 'some sandwiches and fries on a black plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527480.jpg', 'caption': 'person in shadow watersking in large body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527480.jpg', 'caption': 'A guy in the water para sailing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527480.jpg', 'caption': 'A man partaking in a water sport in the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527480.jpg', 'caption': 'Man boarding on the water on a lit watery afternoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527480.jpg', 'caption': 'Silhouette of a person hang gliding in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581683.jpg', 'caption': 'A big wedding cake with three white stories. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581683.jpg', 'caption': 'a very large cake with flowers around it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581683.jpg', 'caption': 'On the table is a three tiered wedding cake, wine goblets, and some roses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581683.jpg', 'caption': 'a wedding cake that is 5 layers high and has flowers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581683.jpg', 'caption': 'A large four-tiered whited frosted cake with purple trim displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106338.jpg', 'caption': 'A group of kids and adults eating cake at a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106338.jpg', 'caption': 'Various crowd of people at a party eating cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106338.jpg', 'caption': 'A group of people eating cake at a birthday party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106338.jpg', 'caption': 'a big table that has some plates of food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106338.jpg', 'caption': 'A group of children are enjoying cake at a party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251242.jpg', 'caption': 'A little girl blowing out the candles of a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251242.jpg', 'caption': 'A child blows out the candles on her birthday cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251242.jpg', 'caption': 'The family watches a little girl blow out her birthday candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251242.jpg', 'caption': 'A young girl surrounded by people watching her blowing out the candles on her birthday cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251242.jpg', 'caption': 'Several children and some adults celebrating a birthday party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372024.jpg', 'caption': 'There are men playing a soccer game on the yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372024.jpg', 'caption': 'five soccer players taking a brief time out ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372024.jpg', 'caption': 'People interact during a soccer match with a large crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372024.jpg', 'caption': 'The guys are playing ball in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372024.jpg', 'caption': 'A group of people standing around a field with a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085735.jpg', 'caption': 'A picture of a birthday cake on a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085735.jpg', 'caption': 'A birthday cake sits on a wooden block.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085735.jpg', 'caption': \"Collin's 25th birthday cake wishes him a happy birthday.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085735.jpg', 'caption': 'A white birthday cake with candles on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085735.jpg', 'caption': 'A wooden board with a birthday cake on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564095.jpg', 'caption': 'An adult standing holding surfboard and a child kneeling by water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564095.jpg', 'caption': 'The man carrying a surfboard looks out at the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564095.jpg', 'caption': 'A person standing on top of a roof holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564095.jpg', 'caption': 'a woman holding a surf board and a young boy looking at a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564095.jpg', 'caption': 'A woman stands near water with a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554100.jpg', 'caption': 'There was a sandwich and cheese and meet served.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554100.jpg', 'caption': 'A cutting board with 2 quarters of a sandwich, bacon wraps and cheese cubes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554100.jpg', 'caption': 'A cutting board has slices of sandwich and cheese on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554100.jpg', 'caption': 'A sandwich with a bite out of it and cheese cubes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554100.jpg', 'caption': 'a close up of a sandwich on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151138.jpg', 'caption': 'A man sitting on his surfboard looking out into the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151138.jpg', 'caption': 'Sitting on a surfboard in a wet suit, the surfer takes a break from the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151138.jpg', 'caption': 'A man sitting on a beach looking at the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151138.jpg', 'caption': 'A surfer sits on his surfboard at the shoreline. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151138.jpg', 'caption': 'A person sitting on a surfboard on the edge of the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323291.jpg', 'caption': 'there is a cupcake and a piece o cake on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323291.jpg', 'caption': 'A white plate topped with a slice of cake and a cupcake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323291.jpg', 'caption': 'tow pieces of a desert on a plate on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323291.jpg', 'caption': 'A two part dessert with strawberries and chocolate on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323291.jpg', 'caption': 'A fancy cake and cupcake are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556980.jpg', 'caption': 'A deli sandwich is in its container on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556980.jpg', 'caption': 'A sandwich sitting on top of two bowls of meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556980.jpg', 'caption': 'A sandwich sits on a plastic tray containing ham.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556980.jpg', 'caption': 'A picture of something and it appears like food.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556980.jpg', 'caption': 'A large submarine sandwich sitting on two plastic containers of ham.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098003.jpg', 'caption': 'A slice of pastry with a cream filling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098003.jpg', 'caption': 'A white plate holding a piece of cheese cake on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098003.jpg', 'caption': 'A cake piece in the plate.A spoon is in the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098003.jpg', 'caption': 'There is a small piece of eaten cake on this plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098003.jpg', 'caption': 'Slice of dessert item on monogrammed small plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432334.jpg', 'caption': 'a man that is standing on a beach with a board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432334.jpg', 'caption': 'People are taking their surfboards into the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432334.jpg', 'caption': 'Several surfers are heading out into the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432334.jpg', 'caption': 'Four people walking out into the ocean with surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432334.jpg', 'caption': 'A group of people standing in the water with surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143901.jpg', 'caption': 'a woman holding a birthday cake filled with lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143901.jpg', 'caption': 'A woman holds a birthday cake filled with many lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143901.jpg', 'caption': 'A woman wearing a pink shirt is holding a blue cake with brown stars that has many lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143901.jpg', 'caption': 'A woman carrying a birthday cake with lit candles on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143901.jpg', 'caption': 'A woman holding a lit birthday cake at the base of the stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056651.jpg', 'caption': 'A woman handing another woman a birthday cake filled with candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056651.jpg', 'caption': 'A woman holding a blue birthday cake with stars and candles on it and another woman in front of the cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056651.jpg', 'caption': 'a women recieves a cake that is blue', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056651.jpg', 'caption': 'a fat girl blowing out candles on a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056651.jpg', 'caption': 'One lady is holding a birthday cake while another blows out the candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252495.jpg', 'caption': 'two people riding surf boards with sails ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252495.jpg', 'caption': 'Two people windsurfing on water next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252495.jpg', 'caption': 'A couple of guys are out wind sailing on a lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252495.jpg', 'caption': 'A couple of people riding wind sails on a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252495.jpg', 'caption': 'Two people on boards wind surfing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150874.jpg', 'caption': 'A hotel room filled with beige and blue furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150874.jpg', 'caption': 'a room with a bed and sliding glass doors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150874.jpg', 'caption': 'A large bed in a bedroom next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150874.jpg', 'caption': 'A full view of a beautiful hotel room next to the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150874.jpg', 'caption': 'A ROOM WITH A BED DESK AND VIEW', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029308.jpg', 'caption': 'A bed in a bedroom next to a slide glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029308.jpg', 'caption': 'A nice looking room with a very big bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029308.jpg', 'caption': 'A hotel room in colors of brown and blue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029308.jpg', 'caption': 'A room with a bed, chairs, a table, a mirror and several lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029308.jpg', 'caption': 'A bed that is in a room with a light next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380609.jpg', 'caption': 'A surfer laying on a surf board and paddling with her hands and feet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380609.jpg', 'caption': 'A woman in a santa hat is moving to stand on a surfboard\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380609.jpg', 'caption': 'The girl wearing a Santa hat is on a surf board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380609.jpg', 'caption': 'A girl on a surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380609.jpg', 'caption': 'A woman surfing in the ocean on a surfboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423962.jpg', 'caption': 'Many kids are on the field playing soccer as the adults look on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423962.jpg', 'caption': 'Young boys playing soccer on field with adults looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423962.jpg', 'caption': 'A group of young kids play a soccer match while older men watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423962.jpg', 'caption': 'a group of children playing soccer on an open field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423962.jpg', 'caption': 'It is good to start young children in sports to learn camaraderie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374010.jpg', 'caption': 'A man that is on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374010.jpg', 'caption': 'A man in a wetsuit surfs a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374010.jpg', 'caption': 'A man is surfing on a wave in the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374010.jpg', 'caption': 'A man in shorts and a top is surfing in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374010.jpg', 'caption': 'a person that is standing on a surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573395.jpg', 'caption': 'a group of surfers are riding waves in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573395.jpg', 'caption': 'A group of people are having fun in the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573395.jpg', 'caption': 'A surfer rides a wave as others paddle over the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573395.jpg', 'caption': 'A man riding a white surfboard on top of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573395.jpg', 'caption': 'Group of people surfing in water with waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025358.jpg', 'caption': 'A group of people are watching boys play soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025358.jpg', 'caption': 'a young boy is running at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025358.jpg', 'caption': 'Young children contending over soccer ball during game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025358.jpg', 'caption': 'Some children play soccer while adults watch on the sideline.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025358.jpg', 'caption': 'Young children kicking a soccer ball in a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483001.jpg', 'caption': 'A bedroom suite with a large bed and amazing view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483001.jpg', 'caption': 'A large white bed sitting in a hotel room next to a red couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483001.jpg', 'caption': 'A large room with a ben and some chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483001.jpg', 'caption': 'Large hotel room with a king sized bed and large view of the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483001.jpg', 'caption': 'A large hotel room has a bed, couch, and desks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188862.jpg', 'caption': 'Two boys are playing soccer on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188862.jpg', 'caption': 'Two boys are chasing after a soccer ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188862.jpg', 'caption': 'A pair of children race for the soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188862.jpg', 'caption': 'Two children on a soccer field kicking a soccer ball during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188862.jpg', 'caption': 'Two young boys fighting to get to the soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384375.jpg', 'caption': 'The open drapes show the view from the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384375.jpg', 'caption': 'Resort hotel room with king bed, balcony and sitting area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384375.jpg', 'caption': 'The hotel room is decorated with soft gold and deep rose tones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384375.jpg', 'caption': 'A bedroom that has a bed, a couch, and a chair in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384375.jpg', 'caption': 'A hotel room with twin beds as a kind and rose chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147422.jpg', 'caption': 'A group of people riding surfboards in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147422.jpg', 'caption': 'Surfing students listening intently to their instructor in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147422.jpg', 'caption': 'A man teaches children to surf on a hazy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147422.jpg', 'caption': 'Young girls gather around an instructor for surf lessions', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147422.jpg', 'caption': 'Group of people enjoying a day at the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333656.jpg', 'caption': 'Two persons are practicing surfing on sand.One man is standing nearby. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333656.jpg', 'caption': 'Two people are being trained by an instructor in order to learn how to surf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333656.jpg', 'caption': 'A man that is standing next to two people laying on surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333656.jpg', 'caption': 'Two young people are having fun learning how to surf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333656.jpg', 'caption': 'A surf teacher and two students practice on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368280.jpg', 'caption': 'Two teams of small children are playing a soccer game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368280.jpg', 'caption': 'A group of young kids kicking around a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368280.jpg', 'caption': 'A bunch of young children playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368280.jpg', 'caption': 'a group of little kids play a game of soccer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368280.jpg', 'caption': 'a couple of kids are kicking a ball in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286760.jpg', 'caption': 'Cake iced sitting on top of cake stand with bowl next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286760.jpg', 'caption': 'A cake with frosting sitting on a pedestal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286760.jpg', 'caption': 'A cake is kept on a stand and some fruits in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286760.jpg', 'caption': 'A white cake sitting on top of a green cake plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286760.jpg', 'caption': 'A cake on a cake pedestal sitting on a counter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108674.jpg', 'caption': 'A bed and a window in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108674.jpg', 'caption': 'Dark lit bedroom with a white bed and an open window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108674.jpg', 'caption': 'a photo of a bed in front of a big window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108674.jpg', 'caption': 'A poster bed in front of a three-arched window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108674.jpg', 'caption': 'A bedroom scene with focus on the bed and the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297444.jpg', 'caption': 'A birthday cake with candles on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297444.jpg', 'caption': 'A chocolate birthday cake covered with decorations and candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297444.jpg', 'caption': 'a close up of a cake on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297444.jpg', 'caption': 'Chocolate cake with lettering on the top of it on blue table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297444.jpg', 'caption': 'A chocolate cake for a ninety second birthday.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132987.jpg', 'caption': 'Two men who maybe spear fishing one is on a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132987.jpg', 'caption': 'Surfers with paddles riding waves in open ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132987.jpg', 'caption': 'two men wearing all black doing a water sport ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132987.jpg', 'caption': 'A person on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132987.jpg', 'caption': 'A man is on his surf board riding the wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004700.jpg', 'caption': 'A group of boys playing soccer on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004700.jpg', 'caption': 'a group of little kids playing soccer on a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004700.jpg', 'caption': 'kids playing football in the field with a red ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004700.jpg', 'caption': 'Children on beright sunny day playing soccer who appear to be about 5 years old. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004700.jpg', 'caption': 'Many young children play soccer on a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113440.jpg', 'caption': 'A knife being used to cut a dessert on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113440.jpg', 'caption': \"A chef's knife slicing through a stuffed dish.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113440.jpg', 'caption': 'A cake made to look like a turkey is being cut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113440.jpg', 'caption': 'A cake is being cut on top of a turntable on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113440.jpg', 'caption': 'There is a cut cake that is in tge counter top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188768.jpg', 'caption': 'A cake shaped like a stuffed and roasted chicken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188768.jpg', 'caption': 'A person cutting into a plate of food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188768.jpg', 'caption': 'a cake made to look like a turkey ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188768.jpg', 'caption': 'a fake turkey with fake vegetables in a pan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188768.jpg', 'caption': 'A person cutting through a cake shaped and decorated like a roasted chicken.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452724.jpg', 'caption': 'Nice large hotel room separated into two parts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452724.jpg', 'caption': 'A hotel bed and sitting area with chairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452724.jpg', 'caption': 'A hotel room filled with furniture and a sliding glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452724.jpg', 'caption': 'A large room with a room divider, showing a bedroom on one side and a sitting area on the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452724.jpg', 'caption': 'There is a living room suite in a large hotel room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192809.jpg', 'caption': 'A small vanilla birthday cake topped with strawberries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192809.jpg', 'caption': 'Four candles have been lit on this birthday cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192809.jpg', 'caption': 'A cake seems to be lit with candles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192809.jpg', 'caption': 'a cake with lit candles sitting on a kitchen table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192809.jpg', 'caption': 'A cake with lit candles on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140843.jpg', 'caption': 'Two soccer teams playing a soccer match in a stadium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140843.jpg', 'caption': 'a group of guys on the soccer field playing in front of a crowd', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140843.jpg', 'caption': 'a bunch of soccer players are playing a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140843.jpg', 'caption': 'Two soccer teams wear different colored uniforms while playing a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140843.jpg', 'caption': 'The soccer players are competing for control of the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557323.jpg', 'caption': 'A man dressed in green kicks a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557323.jpg', 'caption': 'a male soccer player in green fans and a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557323.jpg', 'caption': 'A soccer player running and kicking a soccer ball during a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557323.jpg', 'caption': 'A soccer player in a green uniform is trying to control the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557323.jpg', 'caption': 'a soccer player getting ready to kick a soccer ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392998.jpg', 'caption': 'A surfer falling backwards off a surfboard on a little wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392998.jpg', 'caption': 'A man on a surfboard falling back into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392998.jpg', 'caption': 'A Surfer riding his surfboard through the waves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392998.jpg', 'caption': 'A man surfing on a surf board in the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392998.jpg', 'caption': 'A man riding a surfboard in the ocean on a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314779.jpg', 'caption': 'A neat hotel room with a bed, some furniture, and a patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314779.jpg', 'caption': 'A living area with bed, two chairs and a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314779.jpg', 'caption': 'A hotel room with a king sized bed and a balcony', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314779.jpg', 'caption': 'A bed sitting between two lamps in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314779.jpg', 'caption': 'A hotel bedroom with balcony overlooking the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560908.jpg', 'caption': 'A hotel room scene with a double bed and a view of the patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560908.jpg', 'caption': 'A very big room with a big bed and some windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560908.jpg', 'caption': 'A really nice hotel room with a gorgeous view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560908.jpg', 'caption': 'A suite with a large bed and balcony view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560908.jpg', 'caption': 'A nice clean bedroom with a great view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518818.jpg', 'caption': 'two colorful pillows on a made bed with a backboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518818.jpg', 'caption': 'An orange bed with two decorative pillows on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518818.jpg', 'caption': 'A bed with white sheets, an orange headboard and bedspread and colorful pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518818.jpg', 'caption': 'An orange and white bed spread with yellow and floral accent pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518818.jpg', 'caption': 'A bed with an orange bed sheet and pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426238.jpg', 'caption': 'A group of three people splashing on top of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426238.jpg', 'caption': 'two men and a child play in the waves on boogie boards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426238.jpg', 'caption': 'A few people are in the ocean splashing around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426238.jpg', 'caption': 'Some people in the ocean splash with some wakeboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426238.jpg', 'caption': 'A group of people splashing in the water in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357379.jpg', 'caption': 'a person with a wake board in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357379.jpg', 'caption': 'A woman is walking in the ocean surf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357379.jpg', 'caption': 'A woman approaching a wave to surf on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357379.jpg', 'caption': 'A person in the water with a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357379.jpg', 'caption': 'a girl in with a body board in some water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124927.jpg', 'caption': 'A person on a beach with a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124927.jpg', 'caption': 'a person holding a surf board on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124927.jpg', 'caption': 'Man standing on shoreline by ocean holding surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124927.jpg', 'caption': 'A man with a surfboard stands on the edge of the surf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124927.jpg', 'caption': 'a man that is holding a surfboard walking on some sand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413600.jpg', 'caption': 'A large bed sitting in a bedroom with a giant head board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413600.jpg', 'caption': 'A large bed in a hotel bedroom with a variety of pillows. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413600.jpg', 'caption': 'A room with a bed, lamp, curtains and pillows in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413600.jpg', 'caption': 'a bed room with a neatly made bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413600.jpg', 'caption': 'a well-made bed with many pillows in front of a window looking out into a night scene', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221000.jpg', 'caption': 'The woman sits in bed as a child stands at the foot of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221000.jpg', 'caption': 'A young girl at the foot of a hospital bed with a woman in the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221000.jpg', 'caption': 'A woman is in a hospital bed holding a baby, with a girl standing at the end of her bed. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221000.jpg', 'caption': 'A woman sitting on a medical bed in a hospital.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221000.jpg', 'caption': 'A woman in hospital gown lays in bed with a child by her bedside and another woman sweeps in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476233.jpg', 'caption': 'A couple of young men playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476233.jpg', 'caption': 'Men playing with orange soccer ball on grass and dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476233.jpg', 'caption': 'Little boys playing soccer in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476233.jpg', 'caption': 'Several kids in a park playing soccer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476233.jpg', 'caption': 'Some children who are playing soccer with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330897.jpg', 'caption': 'a pepperoni pizza on a white platter and a person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330897.jpg', 'caption': 'A homemade pizza with sausage and peppers on plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330897.jpg', 'caption': 'a small pizza sits on a plate in front of a person ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330897.jpg', 'caption': 'A pepperoni and pepper pizza on a plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330897.jpg', 'caption': 'A serving plate with a pepperoni and bell pepper pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202436.jpg', 'caption': 'A sleek bedroom has gray walls and a white and orange bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202436.jpg', 'caption': 'A bed sitting in the middle of a small room. It has an assortment of pillows on the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202436.jpg', 'caption': 'A bed with lots of pillows next to a table with a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202436.jpg', 'caption': 'A small grey bedroom with orange accents and a canopy bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202436.jpg', 'caption': 'a white bed with orange and white pillows and some pictures', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550432.jpg', 'caption': 'A man standing on a beach while holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550432.jpg', 'caption': 'a male in a swimsuit standing in the ocean with a red surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550432.jpg', 'caption': 'A lone surfer is carrying is board out to the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550432.jpg', 'caption': 'A man holds a red surfboard on a wavy shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550432.jpg', 'caption': 'a man is walking with a surfboard at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241129.jpg', 'caption': 'Two hot women laying in bed together next to pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241129.jpg', 'caption': 'Two young fully clothed ladies on a made-up bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241129.jpg', 'caption': 'Two women laying next to each other on the bed .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241129.jpg', 'caption': 'Two girls in their pajamas lounging on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241129.jpg', 'caption': 'Two girls smiling while sitting on a bed with tv in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226988.jpg', 'caption': 'A woman taking a picture of her lunch at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226988.jpg', 'caption': 'A girl taking a photograph of pizza on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226988.jpg', 'caption': 'Woman photographing a meal on paper plates on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226988.jpg', 'caption': 'Person eating pizza that is on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226988.jpg', 'caption': 'A girl with a camera photographing some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425620.jpg', 'caption': 'Two children in a bunk bed with white blankets ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425620.jpg', 'caption': 'Two little kids enjoy the bunk bed, one on top and one on the bottom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425620.jpg', 'caption': 'Two young children smiling in their bunk beds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425620.jpg', 'caption': 'a young child sits on top of a bunk bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425620.jpg', 'caption': 'Two kids are in their individual bunk beds. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416101.jpg', 'caption': 'A male tennis player holds balls and the racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416101.jpg', 'caption': 'A person on a court with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416101.jpg', 'caption': 'a man that is on a tennis court with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416101.jpg', 'caption': 'a male tennis player gathering his balls ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416101.jpg', 'caption': 'a man is standing on a court with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565389.jpg', 'caption': 'a bunch of people at a table with food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565389.jpg', 'caption': 'Group of many people enjoying each other and dinner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565389.jpg', 'caption': 'Group of people sitting around a wooden dinner table talking. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565389.jpg', 'caption': 'a group of people at a table with many plates of food ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565389.jpg', 'caption': 'A large group of people eating around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384983.jpg', 'caption': 'A pizza buffet with one slice taken out of a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384983.jpg', 'caption': 'Multiple style pizzas sitting under a heating lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384983.jpg', 'caption': 'Several different types of pizza are sitting in a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384983.jpg', 'caption': 'Pizza on a tray in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384983.jpg', 'caption': 'A pan pizza and a thin crust pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556703.jpg', 'caption': 'A small pizza is displayed on a small plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556703.jpg', 'caption': 'A close up of a small piece of pizza on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556703.jpg', 'caption': 'A plate of pizza that is on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556703.jpg', 'caption': 'A small pastry with cheese plated upon a white dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556703.jpg', 'caption': 'Small pizza looking meal set on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152866.jpg', 'caption': 'Several slices of pizza on a white paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152866.jpg', 'caption': 'Several slices of pizza with pepperoni sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152866.jpg', 'caption': 'Slices of peperoni pizza on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152866.jpg', 'caption': 'There are four slices of pizza on the plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152866.jpg', 'caption': 'Four pieces of pepperoni pizza on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275657.jpg', 'caption': 'The person is holding a forking and eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275657.jpg', 'caption': 'A delicious meal with veggie and meats to eat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275657.jpg', 'caption': 'a man with a fork ready to eat a pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275657.jpg', 'caption': 'A table topped with plates of food and a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275657.jpg', 'caption': 'a person at a dinner table eating salad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438531.jpg', 'caption': 'a child on a couch using a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438531.jpg', 'caption': 'Boy in beanbag chair looking at macbook air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438531.jpg', 'caption': 'a little girl sits on a couch while using a laptop ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438531.jpg', 'caption': 'a girl with a laptop on her lap sitting on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438531.jpg', 'caption': 'a little girl sits on the couch while using a laptop ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451683.jpg', 'caption': 'Large pizza covered in pepperoni, olives, peppers, onion, and mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451683.jpg', 'caption': 'Pizza with everything on it sitting on counter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451683.jpg', 'caption': 'A pizza with one folded edge sits inside of a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451683.jpg', 'caption': 'A very big pizza that was just made to order.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000451683.jpg', 'caption': 'A whole pizza with many toppings in a pizza box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095062.jpg', 'caption': 'A pizza and grapes sit on a tray next to a drink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095062.jpg', 'caption': 'some thick crust pizza and some green grapes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095062.jpg', 'caption': 'a pizza sliced up on a paper plate next so some grapes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095062.jpg', 'caption': 'a plate of pizza next to a bag of grapes on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095062.jpg', 'caption': 'A personal pizza, grapes, and a beverage sit on a tray table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007787.jpg', 'caption': 'Fresh pizza sits on plates, ready to be eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007787.jpg', 'caption': 'The pizza sits on a platter on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007787.jpg', 'caption': 'two plates of pizza with different toppings and a stack of white plates in the middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007787.jpg', 'caption': 'A table with a stack of plates and pizza to be served', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007787.jpg', 'caption': 'A large pizza on a counter with dishes stacked nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024197.jpg', 'caption': 'Pizza on a wooden table being cut into slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024197.jpg', 'caption': 'A table with a deep dish pizza that includes pepperoni.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024197.jpg', 'caption': 'A fully cooked pizza that has been cut into pieces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024197.jpg', 'caption': 'A pizza and spatula sitting on a table by plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024197.jpg', 'caption': 'A serving knife rests on a deep dish pizza on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371135.jpg', 'caption': 'A woman hitting a tennis ball on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371135.jpg', 'caption': 'A woman swinging a tennis racquet towards a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371135.jpg', 'caption': 'A female tennis player finishes her swing after hitting the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371135.jpg', 'caption': 'A woman bending slightly to hit a tennis all with a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371135.jpg', 'caption': 'a female in a red shirt is playing tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427980.jpg', 'caption': 'A beautiful young woman eating a giant slice of cheese pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427980.jpg', 'caption': 'an image of a girl eating a large slice of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427980.jpg', 'caption': 'A person biting into a large piece of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427980.jpg', 'caption': 'A women eating a very large piece of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427980.jpg', 'caption': 'A woman with long hair eating a slice of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189136.jpg', 'caption': 'a little girl eating pizza and playing with a fake aquarium ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189136.jpg', 'caption': 'This child is sitting at a table and looking to her left.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189136.jpg', 'caption': 'A young girl sitting in a food court with a bottle and plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189136.jpg', 'caption': 'A baby girl sitting at a white table with a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189136.jpg', 'caption': 'A little girl having lunch with a thermos and pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376575.jpg', 'caption': 'A pretty young lady sitting on top of a red couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376575.jpg', 'caption': 'A woman is reading a book in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376575.jpg', 'caption': 'A woman is on a couch reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376575.jpg', 'caption': 'A woman sitting on a couch reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376575.jpg', 'caption': 'A woman sitting on a couch with the television on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394474.jpg', 'caption': 'A woman and a kid in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394474.jpg', 'caption': 'A woman sitting next to a child while holding a smart phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394474.jpg', 'caption': 'A woman sits on a couch with a child sitting next to her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394474.jpg', 'caption': 'a women sitting next to a child on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394474.jpg', 'caption': 'A woman sits next to her small child who is holding pens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466052.jpg', 'caption': 'A coffee mug sits in the corner on a counter with several items in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466052.jpg', 'caption': 'A cup of teeth cleaning instruments and toothpaste says \"Of Course You Can\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466052.jpg', 'caption': 'A coffee cup filled with tooth paste and toothbrushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466052.jpg', 'caption': 'a coffee mug filled with a tube of toothpaste and toothbrushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466052.jpg', 'caption': 'a mug holding two brushes and toothpaste on the counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428698.jpg', 'caption': 'a living room that has some furniture in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428698.jpg', 'caption': 'A large room with white, tan and green chairs and a wooden floor and a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428698.jpg', 'caption': 'Nice living room with furniture all around the hardwood floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428698.jpg', 'caption': 'A living room filled with furniture in front of a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428698.jpg', 'caption': 'Some sofas, chairs and tables are in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504125.jpg', 'caption': 'Hotel room with shag carpet and a little table on the balcony', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504125.jpg', 'caption': 'A view of a living room and patio during the night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504125.jpg', 'caption': 'A living room area with a balcony that has a small sitting area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504125.jpg', 'caption': 'A room that has a door to the outside in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504125.jpg', 'caption': 'A living room with a white sofa and rug, a picture on the wall, and a table by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132121.jpg', 'caption': 'A large hotel room with a television on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132121.jpg', 'caption': 'A room with a bed, two chairs, desk, television and balcony.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132121.jpg', 'caption': 'Elegant hotel room with a beautiful balcony landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132121.jpg', 'caption': 'The large room has a bed, two chairs, and a desk in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132121.jpg', 'caption': 'a bed room with a bed a tv and a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554859.jpg', 'caption': 'An empty room with a table, a desk, and chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554859.jpg', 'caption': 'an offuce full of chairs and some tables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554859.jpg', 'caption': 'A room with a large window that is fully furnished.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554859.jpg', 'caption': \"A living room filled with furniture and a framed poster on it's wall.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554859.jpg', 'caption': 'Several chairs and tables are in a bright room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581450.jpg', 'caption': 'A living room filled with lots of furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581450.jpg', 'caption': 'A very big nice looking room with pretty furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581450.jpg', 'caption': 'A couch and a chair in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581450.jpg', 'caption': 'a room with a bed and a couch in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581450.jpg', 'caption': 'A large room that doubles as living room and bedroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553815.jpg', 'caption': 'Soccer players in uniform stand on a playing field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553815.jpg', 'caption': 'Opposing soccer players look at each other during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553815.jpg', 'caption': 'A soccer game with a team wearing blue and a team wearing orange. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553815.jpg', 'caption': 'A group of athletes are waiting to compete on a playing field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553815.jpg', 'caption': 'The players are waiting for the next period to begin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011796.jpg', 'caption': 'A kid that is holding a toothbrush in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011796.jpg', 'caption': 'Baby running towards camera with toothbrush in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011796.jpg', 'caption': 'a young baby is smiling and holding a tooth brush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011796.jpg', 'caption': 'A baby holding a toothbrush while smiling at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011796.jpg', 'caption': 'a small boy in a white shirt is holding a yellow toothbrush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226220.jpg', 'caption': 'A cat is sleeping on the arm of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226220.jpg', 'caption': 'a cat sleeping on the arm of a sofa', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226220.jpg', 'caption': 'A cat is sleeping on the arm of a couch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226220.jpg', 'caption': 'A tired cat falls asleep on the arm of a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226220.jpg', 'caption': 'A cat laying on a couch in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413900.jpg', 'caption': 'Men are playing a video game on a wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413900.jpg', 'caption': 'a bunch of people play some video games ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413900.jpg', 'caption': 'Some guys playing a video game on a big screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413900.jpg', 'caption': 'Two guys playing a game on a game system while others look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413900.jpg', 'caption': 'A group of people are watching television in a bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174072.jpg', 'caption': 'A man is holding a baby with a toothbrush in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174072.jpg', 'caption': 'a man holds a small child in his arms ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174072.jpg', 'caption': 'A man holding a baby with tattoos on his arm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174072.jpg', 'caption': 'An adult holding a baby that is brushing their teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174072.jpg', 'caption': 'The baby is brushing his teeth with his tooth brush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214386.jpg', 'caption': 'A couple of young girls sitting next to each other playing a game on the Nintendo Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214386.jpg', 'caption': 'Two young girls play video games next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214386.jpg', 'caption': 'an image of two girls that are sitting in front of a tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214386.jpg', 'caption': 'Two young girls sit holding a remote control in front of a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214386.jpg', 'caption': 'There are two little girls sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321866.jpg', 'caption': 'A child and an older female in the bathroom with a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321866.jpg', 'caption': 'A woman and small child in a bathroom with a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321866.jpg', 'caption': 'A woman is helping her child brush his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321866.jpg', 'caption': 'Small child stands in front of a bathroom sink while a woman prepares a toothbrush. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321866.jpg', 'caption': 'A woman helps her child brush their teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014892.jpg', 'caption': 'A man holding his song while he brushes his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014892.jpg', 'caption': 'A man smiles as he holds a toddler with a toothbrush in his mouth and a tube of toothpaste in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014892.jpg', 'caption': 'Man smiling while child holds a tube of toothpaste and brushes his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014892.jpg', 'caption': 'A man smiles while a baby brushes his teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014892.jpg', 'caption': 'A man holding on to a baby who is brushing his teeth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034471.jpg', 'caption': 'Two men standing in a living room playing video game with remotes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034471.jpg', 'caption': 'Two men playing with the Nintendo Wii in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034471.jpg', 'caption': 'Two men in a living room playing games', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034471.jpg', 'caption': 'tree are two men in a living room playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034471.jpg', 'caption': 'Two men in a living room play there wii .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478664.jpg', 'caption': 'This is an image of man playing wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478664.jpg', 'caption': 'guitar teacher with eyes closed gestures with hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478664.jpg', 'caption': 'A man standing with his eyes closed holding on to a Wii remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478664.jpg', 'caption': 'A man holding a controller posing for a picture in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478664.jpg', 'caption': 'A man holding a video game remote in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137861.jpg', 'caption': 'A living room filled with furniture and hard wood flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137861.jpg', 'caption': 'In this room a bag is in the chair and another bag is on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137861.jpg', 'caption': 'A small living room has a lot of furniture in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137861.jpg', 'caption': 'A room with a television, a desk, and some chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137861.jpg', 'caption': 'A den with chairs, table, lamp and television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360880.jpg', 'caption': 'A young woman flipping the finger next to a young man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360880.jpg', 'caption': 'The boy and girl are playing a game on the wii. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360880.jpg', 'caption': 'A young man smiles as a young woman sticks up her middle finger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360880.jpg', 'caption': 'A young man smiling while looking at a young person displaying an obscene gesture with her fingers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360880.jpg', 'caption': 'Two boys play the Nintendo Wii in a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481996.jpg', 'caption': 'A man sitting on a couch with a remote in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481996.jpg', 'caption': 'A bearded man sits on a couch with an electronic device in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481996.jpg', 'caption': 'A guy with messy hair on a couch with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481996.jpg', 'caption': 'One roommate playing a video game and a second emerging in the hallway with a towel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481996.jpg', 'caption': 'a man standing in an archway looking at a man sitting down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299067.jpg', 'caption': 'A room that has a couch, chair, and table in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299067.jpg', 'caption': 'The room has a blue couch and easy chair near three lamps. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299067.jpg', 'caption': 'A couch, a chair and some tables are in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299067.jpg', 'caption': 'A living room decorated in blue and yellow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299067.jpg', 'caption': 'A blue couch sitting inside of a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475723.jpg', 'caption': 'a room with a desk and some book shelves in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475723.jpg', 'caption': 'A home work space by a open window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475723.jpg', 'caption': 'A corner desk with a computer by a bright window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475723.jpg', 'caption': 'The room has a chair and desk with a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475723.jpg', 'caption': 'A desk nook area has a desk, a chair and a book shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526414.jpg', 'caption': 'An upstairs living room is decorated nicely and holds a sewing machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526414.jpg', 'caption': 'A sewing machine on a table in a cluttered living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526414.jpg', 'caption': 'The living has a table where someone can do sewing on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526414.jpg', 'caption': 'A family room with sofa, television, sewing area, and book shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526414.jpg', 'caption': 'A living room with a sewing machine during a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534121.jpg', 'caption': 'A couch and a chair in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534121.jpg', 'caption': 'a cozy room with leather furniture and a fireplace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534121.jpg', 'caption': 'a fireplace a red couch two chairs and some lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534121.jpg', 'caption': 'A living room has plush furniture and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534121.jpg', 'caption': 'This living room has leather furniture, a television, and a model ship on top of a fireplace. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349915.jpg', 'caption': 'A living room/dining room area with wood furnishings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349915.jpg', 'caption': 'A living room with a wall of windows for a great view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349915.jpg', 'caption': 'A smoky living room with a large bay window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349915.jpg', 'caption': 'A darkened living room has a large window showing apartments outside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349915.jpg', 'caption': 'A living room with a view of a large apartment building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337290.jpg', 'caption': 'A home office with a computer on the desk and personal items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337290.jpg', 'caption': 'A computer, headphones, eyeglasses globe and watch on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337290.jpg', 'caption': 'A set of headphones sits on a notebook at a computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337290.jpg', 'caption': \"A computer and it's monitor sitting upon a desk among smaller items.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337290.jpg', 'caption': 'a desk with a computer, headphones. some glasses and a little globe on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133679.jpg', 'caption': 'A living room with chairs and a wall of windows looking to a patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133679.jpg', 'caption': 'A room with a hardwood floor and various types of chairs and furniture in the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133679.jpg', 'caption': 'A living area with contemporary furniture in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133679.jpg', 'caption': 'A living room with any chairs and a balcony area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133679.jpg', 'caption': 'A room is filled with fancy furniture including a large amazon \"a\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537145.jpg', 'caption': 'A close up of a pile of paper clips on a home office desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537145.jpg', 'caption': 'a close up of some paper clips ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537145.jpg', 'caption': 'A pile of papers clips sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537145.jpg', 'caption': 'A pile of paper clips sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537145.jpg', 'caption': 'The computer on the desk was left on in the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325211.jpg', 'caption': 'I really cant see this image very well.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325211.jpg', 'caption': 'An open book in front of a keyboard and monitor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325211.jpg', 'caption': 'A book is open in front of a keyboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325211.jpg', 'caption': 'very blurry picture of what looks like 2 open books', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325211.jpg', 'caption': 'Someone is taking notes or an open book test on the computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314792.jpg', 'caption': 'A pink doll house filled with miniature furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314792.jpg', 'caption': 'A room with pink walls and white display shelves and chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314792.jpg', 'caption': 'an image of a bedroom with floral print', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000364145.jpg', 'caption': 'A commercial airplane on a runway at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396051.jpg', 'caption': 'A group of planes sitting on a runway, in the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396051.jpg', 'caption': 'An outside view of airplanes and buildings at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396051.jpg', 'caption': 'A view of three plane tails on an airport tarmac', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396051.jpg', 'caption': 'The various airplanes are waiting for repairs at the terminals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396051.jpg', 'caption': 'An airport with several planes at gates and trucks on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281827.jpg', 'caption': 'A large airplane flying over a city above a bird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281827.jpg', 'caption': 'An airplane flying over a high rise building while a bird flies in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281827.jpg', 'caption': 'The airplane and bird are flying above the skyscraper ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281827.jpg', 'caption': 'a plane is flying in the sky near some buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281827.jpg', 'caption': 'a big plane flying through the air over some building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268944.jpg', 'caption': 'A couple of airplanes sitting on top of a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268944.jpg', 'caption': 'A pair of planes parked in a small rural airfield.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268944.jpg', 'caption': 'Two small planes sitting near each other on a run way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268944.jpg', 'caption': 'Two small planes are parked on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268944.jpg', 'caption': 'Two different types of airplanes are parked on the runway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036492.jpg', 'caption': 'A large jetliner parked an airport near a passenger loading terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036492.jpg', 'caption': 'A passenger plane at the gate loading passanger', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036492.jpg', 'caption': 'The jet bridge from the terminal extends to the plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036492.jpg', 'caption': 'An airplane attached to the walkway for people to get on and off', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036492.jpg', 'caption': 'A jet airplane with the loading ramp next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172599.jpg', 'caption': 'A large passenger jet sitting on top of an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172599.jpg', 'caption': 'A large commercial airplane is parked for luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172599.jpg', 'caption': 'An airliner is loaded passengers on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172599.jpg', 'caption': 'Red and white plane on a runway with cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172599.jpg', 'caption': 'a white and red jet is parked at an airport and some cars and trucks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042147.jpg', 'caption': 'a white plane is going low to make a landing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042147.jpg', 'caption': 'A large passenger jet flying over the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042147.jpg', 'caption': 'A jet airplane flying low with its landing gear down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042147.jpg', 'caption': 'A plane descending out of the air to the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042147.jpg', 'caption': 'A plane in the process of landing at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284860.jpg', 'caption': 'a traffic light on a side walk near a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284860.jpg', 'caption': 'A traffic light that is near a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284860.jpg', 'caption': 'A red fire hydrant sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284860.jpg', 'caption': 'A stone building is near the end of a road that has a streetlight. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284860.jpg', 'caption': 'A view of a city sidewalk, building, and a stop light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259421.jpg', 'caption': 'A large jetliner flying through a cloudy gray sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259421.jpg', 'caption': 'An airplane flying high in the air with the blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259421.jpg', 'caption': 'An airplane marked ANA flies against a grey sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259421.jpg', 'caption': 'A large white and blue airplane with the word ANA painted on the side is flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259421.jpg', 'caption': 'A view of a blue and white airplane in the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465664.jpg', 'caption': 'A 787 Jet Airplane sitting on a runway at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465664.jpg', 'caption': 'A fence sits around a plane on a runway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465664.jpg', 'caption': 'A WHITE AND BLUE 787 PLANE AT THE AIRPORT.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465664.jpg', 'caption': 'A commercial jetliner on a runway at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465664.jpg', 'caption': 'A blue and white large body plane on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058851.jpg', 'caption': 'The bench is empty at night in the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058851.jpg', 'caption': 'A park bench at night with a residential street in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058851.jpg', 'caption': 'A cement bench is in a creepy looking park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058851.jpg', 'caption': 'A bench near a grassy area near a parked car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058851.jpg', 'caption': 'A park at night is shown, with an empty bench centered', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057429.jpg', 'caption': 'An airplane with its landing wheels out landing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057429.jpg', 'caption': 'A plane that is taking off at an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057429.jpg', 'caption': 'A man takes a picture of an airplane taking off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057429.jpg', 'caption': 'A large jet takes off from an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057429.jpg', 'caption': 'The airplane is taking off on the runway at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480605.jpg', 'caption': 'An airplane flies up into the sky with the wheel out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480605.jpg', 'caption': 'the bottom side of an air plane on take off', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480605.jpg', 'caption': 'a large air plane flying thru the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480605.jpg', 'caption': 'A white jet airliner with blue sky in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480605.jpg', 'caption': 'A commercial airplane flying through the sky during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085145.jpg', 'caption': \"An airplane flying in a blue sky with it's landing gear down.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085145.jpg', 'caption': 'A large grey airplane flying through the sky in the daytime. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085145.jpg', 'caption': 'A large passenger plane is flying through the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085145.jpg', 'caption': 'An airplane flying across a cloudless sky with landing gear down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085145.jpg', 'caption': 'A plane photographed in the blue , cloudless sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213412.jpg', 'caption': 'A bright blue and white AMX jet is in the clear sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213412.jpg', 'caption': 'A blue airplane is flying during a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213412.jpg', 'caption': 'An airplane flying in a blue sky ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213412.jpg', 'caption': 'A small two toned blue airplane flying. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213412.jpg', 'caption': 'A small plane is seen flying on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035313.jpg', 'caption': 'A woman sitting on a bench with cars behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035313.jpg', 'caption': 'there is a woman sitting on a bench in front of cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035313.jpg', 'caption': 'a woman is sitting on a wood bench outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035313.jpg', 'caption': 'Black and white photo of a woman on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035313.jpg', 'caption': 'A woman that is sitting on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353551.jpg', 'caption': 'A large passenger jet flying over the top of a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353551.jpg', 'caption': 'A large commercial airplane is flying pretty low.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353551.jpg', 'caption': 'A plane is flying in the sky over trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353551.jpg', 'caption': 'Airplane flying low over the treeline and field beyond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353551.jpg', 'caption': 'A large airplane flies in blue skies over some pretty trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293749.jpg', 'caption': 'A scene of a park with a plane in the sky in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293749.jpg', 'caption': 'AN AIR PLANE IS LANDNG AMONGST THE CLOUDS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293749.jpg', 'caption': 'A plane lanes in the distance, behind cherry blossoms', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293749.jpg', 'caption': 'A variety of people walk in a park with an airplane above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293749.jpg', 'caption': 'A large passenger jet flying over a park filled with cherry trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034662.jpg', 'caption': 'A couple of sheep sitting on top of a lush green grass covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034662.jpg', 'caption': 'There are two sheep who are sitting in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034662.jpg', 'caption': 'Two sheep laying in th middle of an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034662.jpg', 'caption': 'The two sheep are laying down in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034662.jpg', 'caption': 'Two white sheep are resting in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110258.jpg', 'caption': 'Two giraffe standing next to each other behind a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110258.jpg', 'caption': 'Two giraffes and a zebra standing outside during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110258.jpg', 'caption': 'Giraffes and zebras are in a zoo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110258.jpg', 'caption': 'There are two giraffes in a tall fenced pen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110258.jpg', 'caption': 'Giraffes and a zebra stand in their fenced-in enclosures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474215.jpg', 'caption': 'The airplane flew across the blue skies and over the expensive beachside resort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474215.jpg', 'caption': 'A plane is flying over a building on the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474215.jpg', 'caption': 'Lone plane flying in a very blue sky with a building below.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474215.jpg', 'caption': 'A beach area features a large building while in the sky a lone plane flies high above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474215.jpg', 'caption': 'An airplane flying near the ocean and two tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028157.jpg', 'caption': 'An airplane flying through a cloudy sky flying over the ocean..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028157.jpg', 'caption': 'An airplane is flying over a beach crowded with people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028157.jpg', 'caption': 'There is an airplane flying low over a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028157.jpg', 'caption': 'An airplane flying over a crowded beach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028157.jpg', 'caption': 'People on the beach look at the plane flying overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253986.jpg', 'caption': 'Two women sitting on benches in an outdoor setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253986.jpg', 'caption': 'People are sitting on park benches on a cement area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253986.jpg', 'caption': 'two women sitting on benches one with a black shirt the other blue', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253986.jpg', 'caption': 'A person sitting on the bench in the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253986.jpg', 'caption': 'A group of park benches occupied by people sitting on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554582.jpg', 'caption': 'Three men are sitting outside on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554582.jpg', 'caption': 'Three older gentleman are sitting on a stone bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554582.jpg', 'caption': 'Three men sitting beside each other on a bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554582.jpg', 'caption': 'three men sit on a cement bench in a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554582.jpg', 'caption': 'Three elderly men are sitting on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079392.jpg', 'caption': 'A airplane that is flying in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079392.jpg', 'caption': 'An airplane rising up over a row of pink tree blossoms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079392.jpg', 'caption': 'Plane ascending into atmosphere from mountains and town below', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079392.jpg', 'caption': 'a large air plane flying in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079392.jpg', 'caption': 'The plane is flying low in the air close to the purple trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563009.jpg', 'caption': 'A herd of sheep walking across a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563009.jpg', 'caption': 'A dog herding sheep in an outside contest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563009.jpg', 'caption': 'A large crowd watches a dog herd sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563009.jpg', 'caption': 'Many people are watching a sheep dog competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563009.jpg', 'caption': 'A group of sheep being herded by a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048956.jpg', 'caption': 'A giraffe eating leaves from a giant rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048956.jpg', 'caption': 'a close up of a giraffe near a rock and a fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048956.jpg', 'caption': 'This darkly colored giraffe is trying to find food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048956.jpg', 'caption': 'a giraffe by the fence eating some food ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048956.jpg', 'caption': 'A giraffe standing near a rock in a fenced off area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151558.jpg', 'caption': 'A traffic light hanging from the side of a wooden pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151558.jpg', 'caption': 'a traffic light some signs a building and some flags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151558.jpg', 'caption': 'Several road signs, a traffic light, and walking light on a metal pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151558.jpg', 'caption': 'a street sign that has all kinds of signs on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151558.jpg', 'caption': 'A pole holding traffic lights and signs at an intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163929.jpg', 'caption': 'Two women sitting on a bench on an open boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163929.jpg', 'caption': 'two women laugh while taking a ride on a boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163929.jpg', 'caption': 'Two women smile as they hug on a tour boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163929.jpg', 'caption': 'two people seated closely together on a boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163929.jpg', 'caption': 'Two women sitting on a boat laughing with their feet up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562851.jpg', 'caption': 'A bird is walking toward the camera beside a fence post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562851.jpg', 'caption': 'A black bird standing on ground next to a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562851.jpg', 'caption': 'A bird walking across a dirty and gravel area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562851.jpg', 'caption': 'A bird walks on the ground beside a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562851.jpg', 'caption': 'A bird is standing on the ground near a wooden fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554958.jpg', 'caption': 'A black and tan cat standing in the dirty grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554958.jpg', 'caption': 'A very cute cat standing in the weeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554958.jpg', 'caption': 'A multi-colored cat with yellow eyes staring upward.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554958.jpg', 'caption': 'a yellow and black stripped cat with yellow eyes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000554958.jpg', 'caption': 'A brown and black striped cat sitting down outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475710.jpg', 'caption': 'An airplane at the gate in an airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475710.jpg', 'caption': 'A large passenger jet sitting next to a loading tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475710.jpg', 'caption': 'An airplane being boarded while a man loads the baggage at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475710.jpg', 'caption': 'Two planes on a runway outside of an airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475710.jpg', 'caption': 'An airport runway containing two airplanes as they prepare to take off', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204611.jpg', 'caption': 'Several airplanes sitting on the tarmac being unloaded.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204611.jpg', 'caption': 'airplanes sitting on a runway with a pole and a sign before them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204611.jpg', 'caption': 'Two airplanes are parked outside of the airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204611.jpg', 'caption': 'Airplanes at the airport that are about to board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204611.jpg', 'caption': 'Airplanes are lined up at the airport with a city in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403907.jpg', 'caption': 'A red bench sitting below tall neon lit buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403907.jpg', 'caption': 'A red bench in the middle of a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403907.jpg', 'caption': 'a red bench and some buildings and lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403907.jpg', 'caption': 'The backs of red painted wooden benches on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403907.jpg', 'caption': 'The corner of a bench that has some minor scratches and red paint.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279388.jpg', 'caption': 'A giraffe is eating from a leafy tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279388.jpg', 'caption': \"A giraffe putting it's head in a leafy green tree.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279388.jpg', 'caption': 'a giraffe in a bush eating from tall trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279388.jpg', 'caption': \"a picture of a giraffe's head eating leaves off a tree\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279388.jpg', 'caption': 'The head of a Giraffe with its mouth on a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373375.jpg', 'caption': 'A giraffe that is standing near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373375.jpg', 'caption': 'A giraffe looks out above the tree line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373375.jpg', 'caption': 'A giraffe stares over the top of some leaves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373375.jpg', 'caption': 'A close up picture of the head of a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000373375.jpg', 'caption': 'a giraffe that is standing over some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263520.jpg', 'caption': 'A lone giraffe stands in the middle of a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263520.jpg', 'caption': 'A giraffe standing in tall grass in front of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263520.jpg', 'caption': 'A giraffe in the middle of a field full of shrubs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263520.jpg', 'caption': 'A giraffe is standing in the middle of the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263520.jpg', 'caption': 'A giraffe standing alone in a green area in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413172.jpg', 'caption': 'A green traffic light shines above a street with light traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413172.jpg', 'caption': 'A stop light at an intersection and the lights are green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413172.jpg', 'caption': 'The street signal light is showing two green lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413172.jpg', 'caption': 'The green light is on for the cars to proceed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413172.jpg', 'caption': 'A green traffic light with a street street sign next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542042.jpg', 'caption': 'A grey and white bus parked on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542042.jpg', 'caption': '2 vintage vans parked in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542042.jpg', 'caption': 'an old vw mini van with luggage on it parked in the grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542042.jpg', 'caption': 'A VW long van parked on wood strips on a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542042.jpg', 'caption': 'A small minibus with luggage in the overhead rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397117.jpg', 'caption': 'a yellow and white concrete truck next to a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397117.jpg', 'caption': 'A bus and cement truck on street next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397117.jpg', 'caption': 'A large truck and a bus on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397117.jpg', 'caption': 'A cement truck is next to a city bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397117.jpg', 'caption': 'Cement mixer and city bus stopped with traffic at a highway exit ramp light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496313.jpg', 'caption': 'A truck and bus on a street under bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496313.jpg', 'caption': 'A large truck and a bus on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496313.jpg', 'caption': 'A semi truck and a city bus on a roadway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496313.jpg', 'caption': 'A bus driving next to a large tanker truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496313.jpg', 'caption': 'a bus and a semi on either sides of a dividend', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038180.jpg', 'caption': 'A white tanker truck driving down a street next to a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038180.jpg', 'caption': 'A truck, bus and cars travelling on the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038180.jpg', 'caption': 'Large vehicles are driving down a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038180.jpg', 'caption': 'An Eighteen Wheeler Truck about to make a left turn as traffic waits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038180.jpg', 'caption': 'A busy urban street lined with billboards and crisscrossing wires. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023579.jpg', 'caption': 'A woman sitting on a bus while holding a brown dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023579.jpg', 'caption': 'A woman sitting on a bus next to a dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023579.jpg', 'caption': 'Woman in blue coat sits on commuter bus with dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023579.jpg', 'caption': 'A woman poses for a picture with her dog on the bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023579.jpg', 'caption': 'Woman sitting on the bus with her dog next to her in other seat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489482.jpg', 'caption': 'A woman walks across the street as a car waits at the traffic signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489482.jpg', 'caption': 'A person standing next to a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489482.jpg', 'caption': 'Person crossing street outside in winter with stoplight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489482.jpg', 'caption': 'A red light hangs above a snowy street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489482.jpg', 'caption': 'Someone waiting for the light to change so they can walk across the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463211.jpg', 'caption': 'students wait for a bus to come pick them up. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463211.jpg', 'caption': 'THERE IS A CHILD THAT IS LOOKING AT THE SCHOOL BUS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463211.jpg', 'caption': 'Young boy and girl standing outside waiting for school bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463211.jpg', 'caption': 'two little kids going toward the school bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463211.jpg', 'caption': 'A couple of young kids standing outside of a school bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573033.jpg', 'caption': 'A wooden bench that is overlooking a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573033.jpg', 'caption': 'A park bench with a view of a bay of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573033.jpg', 'caption': 'a bench near a path near a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573033.jpg', 'caption': 'A bench is sitting in front of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573033.jpg', 'caption': 'A wooden bench is in a park overlooking the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522566.jpg', 'caption': 'A very short van is parked with a surfboard leaning against it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522566.jpg', 'caption': 'A surfboard leans against a small red bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522566.jpg', 'caption': 'an orange small van and a white surfboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522566.jpg', 'caption': 'A short, parked truck has a surfboard leaned on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522566.jpg', 'caption': 'an odd looking red business vehicle with a surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036990.jpg', 'caption': 'there is a red and a yellow bus parked under a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036990.jpg', 'caption': 'A red and yellow bus parked while a man walks by. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036990.jpg', 'caption': 'A man that is standing on the side of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036990.jpg', 'caption': 'An old fashion with a red truck with someone walking towards the front. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036990.jpg', 'caption': 'A long red bus driving down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107247.jpg', 'caption': 'The double decker bus is heading south through the mountainous region of California.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107247.jpg', 'caption': 'a bus cross an intersection with a traffic light and a clock tower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107247.jpg', 'caption': 'A double-decker bus decorated with signs is in front of a building with a clocktower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107247.jpg', 'caption': 'An older double decker buss driving on a street in a town in the mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107247.jpg', 'caption': 'A double decker bus is driving through the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227893.jpg', 'caption': 'A green bus next to a shop on a small road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227893.jpg', 'caption': 'a large public transit bus in a narrow road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227893.jpg', 'caption': 'Green vintage bus coming down a very narrow road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227893.jpg', 'caption': 'A green bus between buildings on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227893.jpg', 'caption': 'A bus parked in a street between two buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213693.jpg', 'caption': 'A blonde woman standing in front of a red double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213693.jpg', 'caption': 'A lady is waiting by the street as a streetcar and ambulance approach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213693.jpg', 'caption': 'A woman standing beside a double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213693.jpg', 'caption': 'The blonde lady looks at the passing bus followed by an ambulance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213693.jpg', 'caption': 'A WOMAN IS LOOKING DOWN A CROWDED STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368442.jpg', 'caption': 'A giraffe and ostriches that are in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368442.jpg', 'caption': 'Giraffes and large birds stand together in a grass field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368442.jpg', 'caption': 'this is a giraffe standing in the middle of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368442.jpg', 'caption': 'A giraffe and two emus are in a fenced in area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368442.jpg', 'caption': 'A couple of giraffes and ostriches feeding at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047516.jpg', 'caption': 'Three people in suits posing outside of a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047516.jpg', 'caption': 'Three people standing on a ramp near a double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047516.jpg', 'caption': 'Three people standing in front of a double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047516.jpg', 'caption': 'some people and a red blue and gray double decker bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047516.jpg', 'caption': 'a couple of people are standing on a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496093.jpg', 'caption': 'A wooden bench sitting in a park covered with leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496093.jpg', 'caption': 'A bench sits on a brick path among leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496093.jpg', 'caption': 'A bench in a park surrounded by fallen leaves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496093.jpg', 'caption': 'A wooden park bench with colorful leaves on the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496093.jpg', 'caption': 'An old bench is surrounded by colorful, fallen, fall leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127751.jpg', 'caption': 'A white and blue bus driving past houses on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127751.jpg', 'caption': 'A metro bus picking up passengers on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127751.jpg', 'caption': 'A bus traveling down the street, in a rural area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127751.jpg', 'caption': 'A city bus that is sitting on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127751.jpg', 'caption': 'A passenger bus is on the street in front of houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232900.jpg', 'caption': 'A red and white bus sits in front of a large, stone house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232900.jpg', 'caption': 'A tour bus sits outside an old building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232900.jpg', 'caption': 'An old red and white bus parked outside a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232900.jpg', 'caption': 'An old read a white bus parked in front of an old brick building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232900.jpg', 'caption': 'A red bus is parked outside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346716.jpg', 'caption': 'Double decker buses driving down the main road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346716.jpg', 'caption': 'A group of double decker buses traveling down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346716.jpg', 'caption': 'A couple of buses that are in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346716.jpg', 'caption': 'Double decker buses in progress down a crowded street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346716.jpg', 'caption': 'Several double decker buses driving down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463084.jpg', 'caption': 'a bus pulling up to the bus stop in a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463084.jpg', 'caption': 'A bus is parked near a bus stop on a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463084.jpg', 'caption': 'White and blue buses parked on the side of the city road to let passengers in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463084.jpg', 'caption': 'A buss stopped at a bus stop on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463084.jpg', 'caption': 'Two blue and white buses stopped at a bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292394.jpg', 'caption': 'A road in front of a shaded building on which it is written Feed Barn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292394.jpg', 'caption': 'A red building with a small plant area in the front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292394.jpg', 'caption': 'A one story red building with a large yellow \"Feed Barn\" sign advertising \"backyards to stockyards.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292394.jpg', 'caption': 'Red and yellow exterior on a small restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292394.jpg', 'caption': 'The outside of a red building on a street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401776.jpg', 'caption': 'An old bus makes its way down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401776.jpg', 'caption': 'Black and white bus and jeeps driving on an urban street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401776.jpg', 'caption': 'a bus getting ready to park while the road is filled with traffic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401776.jpg', 'caption': 'A large old fashioned bus traveling down a small town street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401776.jpg', 'caption': 'A bus pulls toward the sidewalk behind a cyclist as a line of cars makes their way down the street on the other side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165572.jpg', 'caption': 'Small cars move to pass around a London bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165572.jpg', 'caption': 'A bus and several taxis on a busy street in London. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165572.jpg', 'caption': 'Cars drive past a bus on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165572.jpg', 'caption': 'A red number 9 bus on a street with two black cars going in the opposite direction. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000165572.jpg', 'caption': 'A red, double decked bus is on a city street as small cars pass it on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449895.jpg', 'caption': 'A man fixing a traffic light while on a cherry picker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449895.jpg', 'caption': 'A man fixing a street sign on a raised up ladder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449895.jpg', 'caption': 'A man doing work on a traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449895.jpg', 'caption': 'A construction worker installing and performing maintenance on a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449895.jpg', 'caption': 'A man is fixing the traffic signal light ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287305.jpg', 'caption': 'A blue bus is crossing the intersection with various vehicles behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287305.jpg', 'caption': 'A bus traveling down a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287305.jpg', 'caption': 'An older bus drives down a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287305.jpg', 'caption': 'A blue bus is traveling down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287305.jpg', 'caption': 'A blue bus on the street of a busy city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275843.jpg', 'caption': 'A double decker bus stopped at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275843.jpg', 'caption': 'A double decker bus is red and white in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275843.jpg', 'caption': 'A large red and white bus on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275843.jpg', 'caption': 'The large double decker bus is driving through traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275843.jpg', 'caption': 'A double deck bus traveling along a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400189.jpg', 'caption': 'A bus driving down a street next to a lush green forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400189.jpg', 'caption': 'A large white bus on a city road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400189.jpg', 'caption': 'A bus traveling down a city street on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400189.jpg', 'caption': 'A bus that is by the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400189.jpg', 'caption': 'A bus drives down an otherwise empty road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543181.jpg', 'caption': 'A group of people are on a safari in a vehicle and they are viewing a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543181.jpg', 'caption': 'A giraffe h bunch of people on a safari', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543181.jpg', 'caption': 'THERE IS A GIRAFEE THAT IS ON THE OPEN FIELD ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543181.jpg', 'caption': 'A group of people watching a giraffe as they pass by on a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543181.jpg', 'caption': 'A giraffe walking near a tour vehicle in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386777.jpg', 'caption': 'The green and white city bus is parked a the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386777.jpg', 'caption': 'The city bus is pulled over to the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386777.jpg', 'caption': 'A green and white bus parked in front of a small building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386777.jpg', 'caption': 'A gren and white bus on street next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386777.jpg', 'caption': 'Green and white bus on an otherwise empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539422.jpg', 'caption': \"A giraffe cocks it's head towards a noise\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539422.jpg', 'caption': 'A lone giraffe standing in a brush field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539422.jpg', 'caption': 'Single giraffe standing amongst green shrubbery and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539422.jpg', 'caption': 'A giraffe standing in a green grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539422.jpg', 'caption': 'A tall giraffe rests amidst green grass and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339368.jpg', 'caption': 'A city street scene with a green bus coming up a street, with ocean in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339368.jpg', 'caption': 'A green double decker bus driving up a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339368.jpg', 'caption': 'Many cars are parked on both sides a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339368.jpg', 'caption': 'a double deckered bus driving on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339368.jpg', 'caption': 'A STREET IMAGE WITH A BUS AND CARS ON IT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225177.jpg', 'caption': 'A yellow bus is going under a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225177.jpg', 'caption': 'Yellow school bus on metropolitan roadway on sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225177.jpg', 'caption': 'A school bus travelling on a street under a bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225177.jpg', 'caption': 'Bus moving under a raised pedestrian sidewalk over traffic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225177.jpg', 'caption': 'A city bus is traveling down the empty street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182874.jpg', 'caption': 'a pair of buses going down a divided road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182874.jpg', 'caption': 'a blue and white bus is driving down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182874.jpg', 'caption': 'Two buses and cars driving down the road near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182874.jpg', 'caption': 'A blue and white busy driving down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182874.jpg', 'caption': 'Blue-and-white passenger buses next to each other on a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200212.jpg', 'caption': 'Several trams are parked with electric lines above them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200212.jpg', 'caption': 'three vintage buses parked side by side ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200212.jpg', 'caption': 'Three buses are parked in a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200212.jpg', 'caption': 'Some buses are sitting in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200212.jpg', 'caption': 'A trio of transit buses riding on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173797.jpg', 'caption': 'A red and white striped bus traveling past a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173797.jpg', 'caption': 'A long passenger bus is stationary in town near several multiple story buildings along a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173797.jpg', 'caption': 'A striped bus travels down a city street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173797.jpg', 'caption': 'A bus with stripes is on the street outside of some buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173797.jpg', 'caption': 'White and red striped bus riding through a city at night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033073.jpg', 'caption': 'A bus traveling across a bridge next to a white fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033073.jpg', 'caption': 'A bus driving over a bridge in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033073.jpg', 'caption': 'A city street scene on a bridge with a bus on the road and pedestrians on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033073.jpg', 'caption': 'a public transit bus driving on a city bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033073.jpg', 'caption': \"A colorful passenger bus makes it's way across the bridge, while pedestrians walk across in the pedestrian lane on the other side of the fence.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543551.jpg', 'caption': 'A double-decker bus near a waterway and a bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543551.jpg', 'caption': 'A bridge over the water with boats in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543551.jpg', 'caption': 'A double decker bus parked near an arched bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543551.jpg', 'caption': 'A tour bus parked in front of a bay with a bridge in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543551.jpg', 'caption': 'A double decker bus drives away from the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526341.jpg', 'caption': 'Two giraffes are standing next to each other by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526341.jpg', 'caption': 'Two giraffe standing next to each other near a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526341.jpg', 'caption': 'Two giraffes standing beside each other with tree in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526341.jpg', 'caption': 'a close up of two giraffes with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526341.jpg', 'caption': 'Two giraffes standing in front of green trees, one with ears up and the other ears down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056302.jpg', 'caption': 'A large long bus on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056302.jpg', 'caption': 'A city bus on the street in front of buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056302.jpg', 'caption': 'A blue bus traveling down an incline of a busy street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056302.jpg', 'caption': 'A city bus with full side advertisement in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056302.jpg', 'caption': 'a public transit bus on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126701.jpg', 'caption': 'A bench sitting along side of river next to tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126701.jpg', 'caption': 'The bench is empty but the birds enjoy their alone time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126701.jpg', 'caption': 'A view of a body of water and park underneath a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126701.jpg', 'caption': 'A park bench near a bridge and some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126701.jpg', 'caption': 'a bench is out near a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038772.jpg', 'caption': 'A wooden bench in the middle of the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038772.jpg', 'caption': 'A wooden bench with mountains in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038772.jpg', 'caption': 'A bench made of metal and wood is in front of a mountainous area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038772.jpg', 'caption': 'A bench placed on top of a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038772.jpg', 'caption': 'A single broken bench sits in front of snow capped hills.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186322.jpg', 'caption': 'A silver rusted looking fire hydrant sitting in the middle of a walkway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186322.jpg', 'caption': 'The fire hydrant on the side of the road is rusting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186322.jpg', 'caption': 'A silver fire hydrant on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186322.jpg', 'caption': 'There is a fire hydrant on this street that is black and silver', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186322.jpg', 'caption': 'A fire hydrant on a brick sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189782.jpg', 'caption': 'A wooden bench has a company advertise on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189782.jpg', 'caption': 'A park bench with a picture on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189782.jpg', 'caption': 'A wood bench with advertising on the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189782.jpg', 'caption': 'A wooden park bench with an advertisement on the backrest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189782.jpg', 'caption': 'a park bench that is on top of some bricks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066508.jpg', 'caption': 'A city street with a storm drain, fire hydrant, and manhole cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066508.jpg', 'caption': 'the part of a sidewalk with a manhole, gutter and a fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066508.jpg', 'caption': 'a black and white photo of a fire hydrant a curb and fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066508.jpg', 'caption': 'A fire hydrant sitting next to a storm drain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066508.jpg', 'caption': 'A sewer that is right next to a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318561.jpg', 'caption': 'A herd of sheep in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318561.jpg', 'caption': 'The sheep are gathered in front of the barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318561.jpg', 'caption': 'A herd of sheep walk across a grass field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318561.jpg', 'caption': 'Herd of sheep standing on pasture with stone buildings in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318561.jpg', 'caption': 'Heard of sheep walking through the grass/field near a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005076.jpg', 'caption': 'Large tree with wooden picnic bench in wilderness area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005076.jpg', 'caption': 'a brown wooden table some brown grass and a green tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005076.jpg', 'caption': 'A picnic table sitting under a large green tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005076.jpg', 'caption': 'A large picnic table sitting beside a tree in the wilderness.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005076.jpg', 'caption': 'A picnic table sits underneath a tree in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056267.jpg', 'caption': 'A group of sheep walk along a dirt path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056267.jpg', 'caption': 'Three sheep walking together following a trail. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056267.jpg', 'caption': 'Three sheep walk down a path behind a man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056267.jpg', 'caption': 'A group of sheep walking down a pathway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056267.jpg', 'caption': 'A group of sheep following a man down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563381.jpg', 'caption': 'A couple of sheep walking across a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563381.jpg', 'caption': 'Two sheep in a field with long grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563381.jpg', 'caption': 'Some sheep in a field near a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563381.jpg', 'caption': 'A couple of sheep are on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563381.jpg', 'caption': 'There are only two sheep in the grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237459.jpg', 'caption': 'A wooden bench is under the shade of a large tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237459.jpg', 'caption': 'A park bench on a grassy green hillside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237459.jpg', 'caption': 'A solitary park bench in a grassy, hilly area, overlooking a town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237459.jpg', 'caption': 'There is a view of a bench and houses down the hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237459.jpg', 'caption': 'a bench in the shade with a view of a small town', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345937.jpg', 'caption': 'A little boy standing on one side of a fence looking at sheep inside the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345937.jpg', 'caption': 'A young boy points to two sheep grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345937.jpg', 'caption': 'A boy watching two sheep in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345937.jpg', 'caption': 'A young boy standing out side of a sheep pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345937.jpg', 'caption': 'A child stands next to a fence and watches sheep in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529457.jpg', 'caption': 'a white and black fire hydrant is on a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529457.jpg', 'caption': 'The fire hydrant is decorated with black dots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529457.jpg', 'caption': 'A fire extinguisher is on the side of the road and painted like a dalmatian.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529457.jpg', 'caption': 'a close up of a fire hydrant near a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529457.jpg', 'caption': 'A fire hydrant painted white with black dots on a street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403885.jpg', 'caption': 'A scene featuring a shepard woman is juxtaposed colorful shapes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403885.jpg', 'caption': 'A woman looking at a herd of sheep in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403885.jpg', 'caption': 'A rural scene of sheep with a modern art background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403885.jpg', 'caption': 'A vintage photograph is updated with computer art.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403885.jpg', 'caption': 'an old photo of a person standing next to a group of sheep in afield', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240589.jpg', 'caption': \"A yellow fire hydrant that is missing it's top.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240589.jpg', 'caption': 'A yellow fire hydrant is the focal point of this picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240589.jpg', 'caption': 'A yellow fire hydrant is at the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240589.jpg', 'caption': 'a yellow fire hydrant that is missing its top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240589.jpg', 'caption': 'The top of this yellow fire hydrant is missing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213728.jpg', 'caption': 'Tourists with a modern articulated bus in Europe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213728.jpg', 'caption': 'A man standing in front of a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213728.jpg', 'caption': 'A man is standing in front of a double bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213728.jpg', 'caption': 'A man standing near an extended tour bus parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213728.jpg', 'caption': 'A large and long blue bus parked next to an old man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230177.jpg', 'caption': 'A double deck bus, with a convertible top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230177.jpg', 'caption': 'A large red bus parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230177.jpg', 'caption': 'A bus parked on the side of a road in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230177.jpg', 'caption': 'A double decker sightseeing bus on a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230177.jpg', 'caption': 'A red bus covered with pictures sitting on the side of the road beside a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393075.jpg', 'caption': 'a man and a woman sitting on a bench in front of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393075.jpg', 'caption': 'An elderly couple sits at the end of a cement bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393075.jpg', 'caption': 'An older couple sits on a bench and looks at art displayed in a market stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393075.jpg', 'caption': 'Sepia photograph of man and woman sitting on concrete bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393075.jpg', 'caption': 'a man and woman are sitting on a bench and some drawings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133999.jpg', 'caption': 'A double decker bus driving down a street next to a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133999.jpg', 'caption': 'busy street with two buses and cars ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133999.jpg', 'caption': 'two public transit buses on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133999.jpg', 'caption': 'A group of buses driving down a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133999.jpg', 'caption': 'An intersection with two buses and a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387515.jpg', 'caption': 'The blue and white bus is travelling down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387515.jpg', 'caption': 'Bus riding through the street attached to wires above', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387515.jpg', 'caption': 'The bus is driving on the city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387515.jpg', 'caption': 'An old bus rigged out to run on overhead electrical lines', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387515.jpg', 'caption': 'A blue and white city bus traveling down the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067178.jpg', 'caption': 'A street scene with a double decker bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067178.jpg', 'caption': 'A large blue double decker bus driving down a road with red brick buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067178.jpg', 'caption': 'A blue double decker bus is driving down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067178.jpg', 'caption': 'a two layer bus drives through a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067178.jpg', 'caption': 'A double decker bus that is driving on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430583.jpg', 'caption': 'A rusty old red fire hydrant in the weeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430583.jpg', 'caption': 'A red fire hydrant that has overgrowing grass and weeds around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430583.jpg', 'caption': 'A fire hydrant with wooden benches and a grill in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430583.jpg', 'caption': 'A close up of a fire hydrant with benches in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430583.jpg', 'caption': 'The fire hydrant is obscured by the rather tall weeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334466.jpg', 'caption': 'A giraffe eating leaves off a skinny tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334466.jpg', 'caption': 'a giraffe stands in front of a tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334466.jpg', 'caption': 'A giraffe standing alone next to a small tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334466.jpg', 'caption': 'a giraffe standing between two trees in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334466.jpg', 'caption': 'A giraffe standing next to a tree on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240417.jpg', 'caption': 'A bird sitting on top of a green lily pad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240417.jpg', 'caption': 'A bird is standing on a lily pad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240417.jpg', 'caption': 'A blue bird walking among lily pads in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240417.jpg', 'caption': 'A bird that is standing on a leaf in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240417.jpg', 'caption': 'a colorful sitting in the water with leaves around it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170346.jpg', 'caption': 'A pack of mountain goats climbing up the side of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170346.jpg', 'caption': 'Three mountain goats standing on top of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170346.jpg', 'caption': 'Three goats walking on a grassy hillside by a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170346.jpg', 'caption': 'Rams walk along the edge of a rocky mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170346.jpg', 'caption': 'Three rams grazing on grass in the mountains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233327.jpg', 'caption': 'A yellow bird sitting on an oddly curved branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233327.jpg', 'caption': 'A black and yellow bird perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233327.jpg', 'caption': 'a colorful bird sitting on a tree branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233327.jpg', 'caption': 'A bird sits on the curved branch of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233327.jpg', 'caption': 'A green bird is sitting on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531163.jpg', 'caption': 'A passenger bus that is making a turn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531163.jpg', 'caption': 'The city bus is turning the corner of the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531163.jpg', 'caption': 'An electric bus is driving down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531163.jpg', 'caption': 'A street with man cars, people and a bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531163.jpg', 'caption': 'A bus is parked on a wet street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198935.jpg', 'caption': 'A dog sits on grass next to a fire hydrant while a person holds a leash and a bag filled with dog poop', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000222137.jpg', 'caption': 'A garbage truck parked next to a food vendor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222137.jpg', 'caption': 'A refuse truck is parked on the street next to a stack of goods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222137.jpg', 'caption': 'Dump truck picking up trash in front of a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222137.jpg', 'caption': 'A garbage truck parked next to scores of random items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222137.jpg', 'caption': 'A green garbage collection truck parked behind a pile of various items including a blue mailbox.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251785.jpg', 'caption': 'A white semi truck traveling down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251785.jpg', 'caption': 'A huge white semi truck in the road next to a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251785.jpg', 'caption': 'The truck is parked on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251785.jpg', 'caption': 'A white semi-trailer truck parked across the street from construction', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251785.jpg', 'caption': 'A white semi truck is on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516239.jpg', 'caption': 'A truck traveling down a road filled with people in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516239.jpg', 'caption': 'A group of men ride on top of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516239.jpg', 'caption': 'Group of people riding in back of a truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516239.jpg', 'caption': 'a truck is full of people in the whole truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516239.jpg', 'caption': 'A truck driving down a street with men sitting on the roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203128.jpg', 'caption': 'Many book bags are on the bed with folded cords, and clothes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203128.jpg', 'caption': 'a bunch of stuff is laying out on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203128.jpg', 'caption': 'a bed with some clothes on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203128.jpg', 'caption': 'Several shoes and clothes sitting on a bed near luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203128.jpg', 'caption': 'Clothing and items sitting on top of the bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262334.jpg', 'caption': 'A woman looking straight ahead while she wears a hat on her head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262334.jpg', 'caption': 'a lady that has a grey hat on her head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262334.jpg', 'caption': 'A woman in a black shirt is posing with a hat on her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262334.jpg', 'caption': 'a women posing in a fashionable hat and shirt ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262334.jpg', 'caption': 'A young adult female in hat and black v neck is looking into the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136328.jpg', 'caption': 'a women that is posing for the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136328.jpg', 'caption': 'Black and white photograph of a girl wearing a hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136328.jpg', 'caption': 'A young girls with long hair and a hat makes a gesture with her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136328.jpg', 'caption': 'A woman making gestures with hands in black and white', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136328.jpg', 'caption': 'a close up of a person posing for a photo', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242906.jpg', 'caption': 'A man riding a brown horse next to a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242906.jpg', 'caption': 'A man that is riding a horse in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242906.jpg', 'caption': 'A person on a horse in the grass and a cow on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242906.jpg', 'caption': 'a male is riding a horse and some cows a street and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242906.jpg', 'caption': 'A man on a horse wrangling some cattle from a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156928.jpg', 'caption': 'a truck painted like a a shark sits in a driveway with a horse statue in the yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156928.jpg', 'caption': 'A pick up truck is parked outside a home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156928.jpg', 'caption': 'A pickup truck parked in front of a house with a horse statue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156928.jpg', 'caption': 'A white pickup truck with a design on the front and the front grill cutomized with teeth in it, parked in front of a garage with a shark attached to the front and a horse statue on the side of the yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156928.jpg', 'caption': 'There are several large sculptures, including \"Bob\\'s Big Boy,\" at this home. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535183.jpg', 'caption': 'A group of people standing outside of a food truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535183.jpg', 'caption': 'some people are standing in front of a red food truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535183.jpg', 'caption': 'There are some people standing around a food truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535183.jpg', 'caption': 'A food truck parked outside at lunch time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535183.jpg', 'caption': 'A red food truck has a crowd of people by it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493074.jpg', 'caption': 'a cat laying in a cat bed near an open umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493074.jpg', 'caption': 'A cat is under a large umbrella in a pet bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493074.jpg', 'caption': 'A cat relaxes in its bed under the shade of an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493074.jpg', 'caption': 'a gray and white cat resting by a door with an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493074.jpg', 'caption': 'A cat is sleeping in a cat bed under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519605.jpg', 'caption': 'A dirty truck parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519605.jpg', 'caption': 'there is a truck that has something mounted on the top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519605.jpg', 'caption': 'A black four wheel drive pick up with a bicycle mounted to the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519605.jpg', 'caption': 'A muddy truck with a topper and a rack holds a mountain bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519605.jpg', 'caption': 'A large, black truck driving on a muddy road with a bicycle rack on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006589.jpg', 'caption': 'A tabby cat wearing a tie is laying on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006589.jpg', 'caption': 'A striped cat laying on a couch wearing a green tie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006589.jpg', 'caption': 'a brown black and white cat sitting on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006589.jpg', 'caption': 'a cat with a tie sitting on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006589.jpg', 'caption': 'A cat in a tie sits on the couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343504.jpg', 'caption': 'A big steer is just about to walk onto the road near the folks on the bike. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343504.jpg', 'caption': 'A brown and black cow stepping off ledge onto a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343504.jpg', 'caption': 'a brown white and black animal and two people on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343504.jpg', 'caption': 'A large cow walking onto a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343504.jpg', 'caption': 'A bull walks through the middle of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276706.jpg', 'caption': 'A cat laying in a box full of bubble wrap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276706.jpg', 'caption': 'A cat sleeping inside of a box on top of packing materials.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276706.jpg', 'caption': 'A cat curled up in a card-board box with bubble wrap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276706.jpg', 'caption': 'A striped, mixed tabby cat is curled up sleeping on bubble wrap inside of a packing box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276706.jpg', 'caption': 'an image of a cat lying in side a box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137413.jpg', 'caption': 'a cat laying in a box next to an open suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137413.jpg', 'caption': 'Cat lying on desk near a chair top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137413.jpg', 'caption': 'a cat lying on the chair with its eyes wide open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137413.jpg', 'caption': 'Adult cat laying in a box on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137413.jpg', 'caption': 'a cat that is laying down in a box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352789.jpg', 'caption': 'A tagged cow and a calf lying in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352789.jpg', 'caption': 'A black cow and a brown calf laying together on some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352789.jpg', 'caption': 'A cow with a tag on its ear lying down next to a baby cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352789.jpg', 'caption': 'A large black cow laying next to a small brown cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352789.jpg', 'caption': 'A cow and calf sitting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095283.jpg', 'caption': 'A red fire truck driving into a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095283.jpg', 'caption': 'People are standing near a fence as a fire pickup truck arrives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095283.jpg', 'caption': 'A parking lot with several cars and a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095283.jpg', 'caption': 'A parking lot area with various cars and a fire department pick-up truck near two people standing in the lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095283.jpg', 'caption': 'two people standing at a gate with a group of cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495996.jpg', 'caption': 'A brown and white cat sitting in a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495996.jpg', 'caption': 'a close up ofa cat sitting on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495996.jpg', 'caption': 'A tan and white cat sits upright on a tan office chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495996.jpg', 'caption': 'A large overweight kitty cat seated in a chair like a human.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495996.jpg', 'caption': 'A cat that is sitting in a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223123.jpg', 'caption': 'A field of cows being looked at over bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223123.jpg', 'caption': 'A group of cows grazing in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223123.jpg', 'caption': 'Dairy cows grazing in a pasture behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223123.jpg', 'caption': 'A herd of cattle grazing on a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223123.jpg', 'caption': 'A herd of cattle grazing on grass in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327623.jpg', 'caption': 'A black cat laying under a green chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327623.jpg', 'caption': 'A cat sitting under a chair on tiled floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327623.jpg', 'caption': 'A black cat laying underneath a green chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327623.jpg', 'caption': 'A black cat with its head resting on the legs of a tipped over chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327623.jpg', 'caption': 'A black cat under a green chair leg cross beam.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519716.jpg', 'caption': 'a white cat sleeping in a wicker chair covered with a blanket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519716.jpg', 'caption': 'A white cat sleeps in a blanketed basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519716.jpg', 'caption': 'White cat curled up asleep in a blanketed chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519716.jpg', 'caption': 'A white long-haired adult cat sleeping in a wicker chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519716.jpg', 'caption': 'A cat sleeping in a wicker seat with a green blanket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317480.jpg', 'caption': 'A black cat rest comfortably on a wooden chair next to a green plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317480.jpg', 'caption': 'A black cat laying on a chair next to a potted plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317480.jpg', 'caption': 'A cat sitting in a chair next to a potted plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317480.jpg', 'caption': 'A cat is sitting on a chair next to a fake plant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317480.jpg', 'caption': 'A cat sitting on a chair next to a plant and window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489391.jpg', 'caption': 'Brown and black cows in a grassy field by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489391.jpg', 'caption': 'two cows standing together in the long grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489391.jpg', 'caption': 'Brown and black cow standing next to each other in tall grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489391.jpg', 'caption': 'A black and a brown cow standing in the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489391.jpg', 'caption': 'Cattle are standing in the pasture among the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392575.jpg', 'caption': 'A bus with passengers who are getting out of bus with their luggage at their destination.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392575.jpg', 'caption': 'Pedestrians walking by and waiting at a food truck parked on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392575.jpg', 'caption': 'The people stop for food at the lunch truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392575.jpg', 'caption': 'People standing and walking by a food truck parked on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392575.jpg', 'caption': 'A group of people on a street next to a food truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218752.jpg', 'caption': 'A large brown cow laying on the ground in a penn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218752.jpg', 'caption': 'A cow laying on a sawdust area behind a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218752.jpg', 'caption': 'A cow lies down in a pen and looks at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218752.jpg', 'caption': 'A cow in a pen lying on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218752.jpg', 'caption': 'A brown cow lies on hay in a barn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539326.jpg', 'caption': 'Cattle grazing on a green grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539326.jpg', 'caption': 'A large number of cows grazing on farmland', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539326.jpg', 'caption': 'A herd of cows grazing in a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539326.jpg', 'caption': 'A herd of cows grazing in a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539326.jpg', 'caption': 'multiple cows grazing in a large green pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215394.jpg', 'caption': 'A cat napping inside of a large planter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215394.jpg', 'caption': 'A large cat sitting on top of a plant potter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215394.jpg', 'caption': 'A cat is laying in a pot next to some boots. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215394.jpg', 'caption': 'A cat laying in a pot by some boots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215394.jpg', 'caption': 'A cat lying in a planter sleeping outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094021.jpg', 'caption': 'A couple of black cats laying on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094021.jpg', 'caption': 'Two black cats cuddle together on a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094021.jpg', 'caption': 'Two black cats sleeping together on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094021.jpg', 'caption': 'Two black cats cuddled together on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094021.jpg', 'caption': 'A couple of cats relaxing with each other on the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291541.jpg', 'caption': 'A cat is out stretched on a large bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291541.jpg', 'caption': 'A cat laying on a bed and pawing at the air. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291541.jpg', 'caption': 'A cat rolling around on the sheets of an unmade bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291541.jpg', 'caption': 'a cat lays down on a bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291541.jpg', 'caption': 'A striped cat laying upside down on a down comforter,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449638.jpg', 'caption': 'A group of people riding bikes down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449638.jpg', 'caption': 'a couple of people are riding bicycles down the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449638.jpg', 'caption': 'Bikers ride down a street in a large city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449638.jpg', 'caption': 'A small group of cyclists travelling up a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449638.jpg', 'caption': 'Several bicycle riders are biking down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238291.jpg', 'caption': 'Two black cats sit on a windowsill looking into the backyard garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238291.jpg', 'caption': 'Two cats are seated on a windowsill and look into a back yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238291.jpg', 'caption': 'Two black cats sit in the window sill looking out the window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238291.jpg', 'caption': 'two cats sitting on a window sill looking out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238291.jpg', 'caption': 'A couple of black cats sitting in a window sill looking out a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180373.jpg', 'caption': 'A cat standing in front of a TV showing a dog in a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180373.jpg', 'caption': 'A cat looks at a dog on television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180373.jpg', 'caption': 'A cat looks at a dog that is on tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180373.jpg', 'caption': 'A cat is looking at a television displaying a dog in a cage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180373.jpg', 'caption': 'A cat stares at a dog on TV. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377355.jpg', 'caption': 'a couple of cows are standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377355.jpg', 'caption': 'Cattle standing in large open area near hill on cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377355.jpg', 'caption': 'A couple of cows standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377355.jpg', 'caption': 'a couple of cows that are on some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377355.jpg', 'caption': 'Cows in a pasture with a mountain in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534679.jpg', 'caption': 'a red and white boat with a flag and water and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534679.jpg', 'caption': 'A boat with a dog on the deck and a country flag in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534679.jpg', 'caption': 'A very nice boat on the water with a dog on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534679.jpg', 'caption': 'A dog stands on a boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534679.jpg', 'caption': 'A large boat with a flag floats across the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359791.jpg', 'caption': 'The boat includes several rows of orange chaird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359791.jpg', 'caption': 'People are sitting on a ferry bench holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359791.jpg', 'caption': 'A ferry with three passengers sitting under an umbrella on a bench on a deck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359791.jpg', 'caption': 'A ferry with some people sitting on it with umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359791.jpg', 'caption': 'Three people with umbrellas sitting on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186218.jpg', 'caption': 'The two men are outside with coats and umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186218.jpg', 'caption': 'Two men are standing with umbrellas within a group of white chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186218.jpg', 'caption': 'two men standing outside under a bridge in the cold', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186218.jpg', 'caption': 'one man looking frightened, leaning on an umbrella while the other man is smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186218.jpg', 'caption': 'Two men in black coats stand next to white chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429369.jpg', 'caption': 'A herd of cattle grazing on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429369.jpg', 'caption': 'Several cows are seen grazing in a huge field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429369.jpg', 'caption': 'Cows grazing in a field on a sunny day ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429369.jpg', 'caption': 'Beautiful green pasture with cows grazing and blue skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429369.jpg', 'caption': 'A herd of cattle are eating in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207611.jpg', 'caption': 'A man walking down a street holding a red and gray bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207611.jpg', 'caption': 'Man standing in the middle of a cross walk in a suit with a lunch box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207611.jpg', 'caption': 'A man in the street all dressed up with a bowtie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207611.jpg', 'caption': 'A MAN WITH A CAP AND BOW TIE IS WALKNG THE STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207611.jpg', 'caption': 'A young man wearing a bow tie, dress shirt, belt, and pleated pants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073729.jpg', 'caption': 'A cat lying between a computer keyboard and monitor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073729.jpg', 'caption': 'A cat falling asleep between a computer and its keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073729.jpg', 'caption': 'A black cat with yellow eyes near a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073729.jpg', 'caption': 'The cat is laying next to the computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073729.jpg', 'caption': 'A sad looking cat lays next to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365404.jpg', 'caption': 'a close up of a person with a tie in his mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365404.jpg', 'caption': 'A bearded man wearing a suit has his tie in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365404.jpg', 'caption': ' a man in a suit holding a piece of material in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365404.jpg', 'caption': 'an image of a man eating a tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365404.jpg', 'caption': 'A man pulling a tie out of his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527098.jpg', 'caption': 'Several boats in the water near an amusement park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527098.jpg', 'caption': 'There are a lot of boats on the lake shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527098.jpg', 'caption': 'Four boats are in the water outside of the carnival. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527098.jpg', 'caption': 'Boats float in the water across from an amusement park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527098.jpg', 'caption': 'there are many boats in the water by this carnival', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208476.jpg', 'caption': 'A young man with long red hair drinking from a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208476.jpg', 'caption': 'A man sitting a table with a glass held up to his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208476.jpg', 'caption': 'An old photo shows a man having a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208476.jpg', 'caption': 'A man sitting at a table drinking from a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208476.jpg', 'caption': 'An old picture of several guys at a table and one is drinking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182334.jpg', 'caption': 'A man sitting in front of a microphone at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182334.jpg', 'caption': 'A man in a suit sitting in front of a microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182334.jpg', 'caption': 'A man wearing a suit and tie sitting at a table speaking into a microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182334.jpg', 'caption': 'A man is sitting at a conference in front of a microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182334.jpg', 'caption': 'The man is speaking at a meeting in a conference room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509366.jpg', 'caption': 'Anolder man sitting with his head tilted back while wearing a suit and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509366.jpg', 'caption': 'A man in a suit has a green striped tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509366.jpg', 'caption': 'A person wearing a suit takes a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509366.jpg', 'caption': 'Man wearing a suit and tie standing in a darkly lit room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509366.jpg', 'caption': 'A well dressed man leaning against a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342283.jpg', 'caption': 'A man standing under a light while making a high face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342283.jpg', 'caption': 'A man in a suit and tie looking up at a light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342283.jpg', 'caption': 'Person wearing a suit and tie in a dark room looking up at light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342283.jpg', 'caption': 'This man could be dead or maybe just faking it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342283.jpg', 'caption': 'A man in a suit who is looking up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125314.jpg', 'caption': 'an image of a water barges that are docked', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125314.jpg', 'caption': 'Colorful boats docked near a bridge over a waterway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125314.jpg', 'caption': 'Two yellow boats are docked near a bridge in a water way in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125314.jpg', 'caption': 'A couple of small boats in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125314.jpg', 'caption': 'Boats on a river in a city near a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134066.jpg', 'caption': 'a couple of elephants fighting in a grass area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134066.jpg', 'caption': 'Two elephants touching trunks in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134066.jpg', 'caption': 'A pair of young male elephants tussle in the open grassland.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134066.jpg', 'caption': 'Two young elephants bumping trunks on a grassland.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134066.jpg', 'caption': 'Two elephants playing on a grassy plain in the sunlight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536034.jpg', 'caption': 'Many small boats in the water in a harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536034.jpg', 'caption': 'A harbor full of boats with a building in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536034.jpg', 'caption': 'A river filled with lots of different colored boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536034.jpg', 'caption': 'A large number of boats all together at a harbor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536034.jpg', 'caption': 'many small boats in a body of water near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102996.jpg', 'caption': 'a close up of two elephants rear end', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102996.jpg', 'caption': 'Two elephants are standing around with their butts showing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102996.jpg', 'caption': 'Two gray elephants are showing off their behinds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102996.jpg', 'caption': 'Two elephants stand tail first to the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102996.jpg', 'caption': 'This is a picture of two elephants rear ends. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489899.jpg', 'caption': 'A pair of elephants are standing in their zoo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489899.jpg', 'caption': 'A large and small elephant in an enclosed area with water, tree logs and rock formations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489899.jpg', 'caption': 'a adult elephant and a baby elephant standing near a water hole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489899.jpg', 'caption': 'A younger and older elephant standing next to a watering hole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489899.jpg', 'caption': 'This is a picture of a zoo outdoor. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178254.jpg', 'caption': 'A couple are walking with an umbrella through the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178254.jpg', 'caption': 'A couple holding hands walking down a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178254.jpg', 'caption': ' A couple walks down a building lined street in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178254.jpg', 'caption': 'People walking along a scenic street with stone buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178254.jpg', 'caption': 'A group of people walk down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367362.jpg', 'caption': 'A herd of elephants walking across a river filled with muddy water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367362.jpg', 'caption': 'many elephants crossing a river with many waters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367362.jpg', 'caption': 'THERE ARE A LOT OF ELEPHANTS CROSSING THE LAKE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367362.jpg', 'caption': 'The family of elephants are walking in a straight line together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367362.jpg', 'caption': 'A small herd of elephants crossing a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181118.jpg', 'caption': 'People watching elephants enter the water by a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181118.jpg', 'caption': 'A herd of elephants go in the water with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181118.jpg', 'caption': 'a number of elephants walking into a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181118.jpg', 'caption': 'There are many elephants walking into the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181118.jpg', 'caption': 'A large herd of elephants being led into water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002315.jpg', 'caption': 'A herd of elephants in the wild near a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002315.jpg', 'caption': 'Several elephants walking on dirt and grass near body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002315.jpg', 'caption': 'A herd of elephants standing next to a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002315.jpg', 'caption': 'Elephants in the water and on the banks under palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002315.jpg', 'caption': 'Elephants are standing in and near a water source.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153150.jpg', 'caption': 'A picture of a dog on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153150.jpg', 'caption': 'A gray dog wearing an orange bow tie laying on a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153150.jpg', 'caption': 'A dog with a bow is shown sitting on a cushion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153150.jpg', 'caption': 'A dog sitting on a bed wearing an orange bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153150.jpg', 'caption': 'The puppy has an orange tie on his neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245145.jpg', 'caption': 'A snowy day in a colorful forest where leaves have already changed colors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245145.jpg', 'caption': 'a small boat near a wide river with a dense forest on the other side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245145.jpg', 'caption': 'View from window across water with fall foliaged trees on other bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245145.jpg', 'caption': 'View from behind a tree of a lake and fall colored tress on the other side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245145.jpg', 'caption': 'a boat some water and some red and green trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001244.jpg', 'caption': ' A man sitting under an umbrella next to a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001244.jpg', 'caption': 'a person sitting on a chair over a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001244.jpg', 'caption': 'A man sitting under a sun umbrella by an industrial port', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001244.jpg', 'caption': 'The man is sitting on a chair under the umbrella by the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001244.jpg', 'caption': 'A man sitting in a chair under an umbrella by a harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205238.jpg', 'caption': 'A lady in a black and orange Halloween costume.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205238.jpg', 'caption': \"No image on this page to describe. so don't knot what to describe.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205238.jpg', 'caption': 'a lady that is dressed up as a witch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205238.jpg', 'caption': 'A woman in a Halloween costume takes a stroll.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205238.jpg', 'caption': 'Halloween costume on woman with orange hair wearing orange', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139749.jpg', 'caption': 'An airport with lots of people walking to and fro.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139749.jpg', 'caption': 'umbrella hanging fron the ceiling of a terminal ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139749.jpg', 'caption': 'There are many decorative umbrellas on the ceiling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139749.jpg', 'caption': 'A room with Chinese hangings hanging from the ceiling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139749.jpg', 'caption': 'several customers shopping at their local shopping mall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338847.jpg', 'caption': 'A young girl wearing a red tie is adjusting her glasses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338847.jpg', 'caption': 'A person with glasses and a tie in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338847.jpg', 'caption': 'a woman wearing glasses a shirt and tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338847.jpg', 'caption': \"The man wearing a red tie is standing near an animal's plastic house.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000338847.jpg', 'caption': 'The man in the red tie is putting on his glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156045.jpg', 'caption': 'A man in a white pants and a white shirt and colorful tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156045.jpg', 'caption': 'Man in light tone clothes with colorful tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156045.jpg', 'caption': 'There is a man with glasses wearing a colorful tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156045.jpg', 'caption': 'A short man in a short sleeve dress shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156045.jpg', 'caption': 'A man dressed in white is smiling for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084667.jpg', 'caption': 'A woman walking down a street at night holding a red sheep umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084667.jpg', 'caption': 'A close up of an umbrellas with cars and people in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084667.jpg', 'caption': 'some buildings and people at night and a red and black umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084667.jpg', 'caption': 'A person using a red umbrella at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084667.jpg', 'caption': 'A bright red umbrella protects a walker from the rain at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279259.jpg', 'caption': 'Man in shorts running with a necktie on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279259.jpg', 'caption': 'A man running in shorts, tennis shoes and a neck tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279259.jpg', 'caption': 'The man is running in shorts and a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279259.jpg', 'caption': 'A man jogging shirtless with a tie around his neck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279259.jpg', 'caption': 'A man jogging with no shirt and a tie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127775.jpg', 'caption': 'A large gray elephant with huge white tusk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127775.jpg', 'caption': 'a statue of an elephant behind a fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127775.jpg', 'caption': 'A statue of an elephant in a park next to a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127775.jpg', 'caption': 'A life-sized statue of an elephant stand in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127775.jpg', 'caption': 'An elephant statue in front of an iron fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283290.jpg', 'caption': 'A person that is in the air over the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283290.jpg', 'caption': 'a couple of big of buildings next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283290.jpg', 'caption': 'Jet water pack in a marina with highrises in view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283290.jpg', 'caption': 'a man jet skiis across the water in a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283290.jpg', 'caption': 'A man flying over the water, with a jet pack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324040.jpg', 'caption': 'a male is riding an elephant next to some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324040.jpg', 'caption': 'A small gray elephant standing on a beach next to a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324040.jpg', 'caption': 'a man in a hat rides an elephant in a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324040.jpg', 'caption': 'A man sitting on a large elephant that is standing in water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324040.jpg', 'caption': 'A man rides an elephant that has a chain wrapped around his foot in a water way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546052.jpg', 'caption': 'Two men and a baby at a Christmas party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546052.jpg', 'caption': 'Two men who are standing together with a baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546052.jpg', 'caption': 'this is two men holding a baby in their arms', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546052.jpg', 'caption': 'Two men and a baby are posing in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546052.jpg', 'caption': 'two guys making silly faces for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297440.jpg', 'caption': 'Cat lying in bathroom sink with assorted grooming supplies on edge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297440.jpg', 'caption': 'The calico cat curls up inside the white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297440.jpg', 'caption': 'A cat relaxed and asleep in a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297440.jpg', 'caption': 'a cat lounges in a sink with his paws hanging over the edge of the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297440.jpg', 'caption': 'A cat lies in a pedistil style bathroom sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253746.jpg', 'caption': 'A MAN IN A SHIRT AND TIE SMILING FOR THE CAMERA', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253746.jpg', 'caption': 'A man wearing a tie with a cartoon character.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253746.jpg', 'caption': 'A man smiles while wearing a joke tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253746.jpg', 'caption': 'A man in a white button up shirt with the image of a woman and polka dots on the tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253746.jpg', 'caption': 'Person is wearing white shirt and tie. He is smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030548.jpg', 'caption': 'A man with a bear wearing glasses in a business suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030548.jpg', 'caption': 'A man with a beard in glasses grinning at the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030548.jpg', 'caption': 'A bearded wearing a suit and glasses sneers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030548.jpg', 'caption': 'Man with black glasses and a black suit with patterned tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030548.jpg', 'caption': 'The bearded man in glasses is barely smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151742.jpg', 'caption': 'A man holding a baby in a white baptism outfit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151742.jpg', 'caption': 'A man that is holding a baby on his chest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151742.jpg', 'caption': 'A man in a black suit holding a young child dressed in white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151742.jpg', 'caption': 'A man in a suit making faces and holding a baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151742.jpg', 'caption': 'A man with glasses holding a baby in a white outfit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237942.jpg', 'caption': 'A man is standing in the shade of the tree near a large field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237942.jpg', 'caption': 'A man standing under a tree in front of a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237942.jpg', 'caption': 'The man wears dark clothes with a green tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237942.jpg', 'caption': 'A man is standing in a large field under a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237942.jpg', 'caption': 'a man that is standing under a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255339.jpg', 'caption': 'A serious looking man and woman posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255339.jpg', 'caption': 'A woman and man posing together in black attire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255339.jpg', 'caption': 'A man and woman dressed in black are standing by a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255339.jpg', 'caption': 'two people dressed in black stand near one another ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255339.jpg', 'caption': 'A man and woman standing together against a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012269.jpg', 'caption': 'A little girl is in store with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012269.jpg', 'caption': 'a little Asian girl holding mickey mouse umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012269.jpg', 'caption': 'A little girl holding an umbrella in the middle of a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012269.jpg', 'caption': 'A young girl standing in a store selling handbags, holding an open umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012269.jpg', 'caption': 'A young girl who is holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142942.jpg', 'caption': 'Two boats that are sitting in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142942.jpg', 'caption': 'Those boats are waiting by the pier in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142942.jpg', 'caption': 'A large city is on the water with boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142942.jpg', 'caption': 'City skyline as seen beyond waterway docking area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142942.jpg', 'caption': 'A large body of water filled with boats next to a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122549.jpg', 'caption': 'A black and white photo of a man wearing several ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122549.jpg', 'caption': 'A man wearing a tie already is draped with another tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122549.jpg', 'caption': 'A man sitting with two ties on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122549.jpg', 'caption': 'A man with a beard has a tie around his neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122549.jpg', 'caption': 'A man with a tie sitting by some paper towels.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318373.jpg', 'caption': 'A group of people walking down a sidewalk next to a wagon of little children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318373.jpg', 'caption': 'A group of people walking down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318373.jpg', 'caption': 'People are walking with two children in a red wagon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318373.jpg', 'caption': 'ADULTS WITH CHILDREN AN A WAGON OUT FOR A WALK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318373.jpg', 'caption': 'A family on an outing, pulling kids in a wagon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479723.jpg', 'caption': 'A couple of young beautiful women holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479723.jpg', 'caption': 'Two Asian females pose with decorative traditional umbrellas on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479723.jpg', 'caption': 'An Asian woman poses with a red umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479723.jpg', 'caption': 'Two woman with umbrellas standing on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479723.jpg', 'caption': 'Some very attractive woman with umbrellas in front of a crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199876.jpg', 'caption': 'An individual is in the open view in the picture. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199876.jpg', 'caption': 'Two oriental women walk with their decorative red umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199876.jpg', 'caption': 'Asian women parade through the street holding fancy umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199876.jpg', 'caption': 'Models wear dresses and hold umbrellas as they walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199876.jpg', 'caption': 'a lady in red and a lady in blue both carrying umbrellas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070353.jpg', 'caption': 'A cat laying on the arm of a chair in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070353.jpg', 'caption': 'A cat is resting on the arm of a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070353.jpg', 'caption': 'Pet cat lazing on the arm of a sofa in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070353.jpg', 'caption': 'A cat sitting at the edge of a couch looking ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070353.jpg', 'caption': 'A cat laying down on the arm of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044964.jpg', 'caption': 'a big mama elephant with her baby in a natural setting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044964.jpg', 'caption': 'Mother and child elephants in a zoo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044964.jpg', 'caption': 'There are two elephants standing besides each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044964.jpg', 'caption': 'Two grey elephants walking side by side in the sand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044964.jpg', 'caption': 'A baby elephant standing next to a parent elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086429.jpg', 'caption': 'A beach filled with law chairs and a blue umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086429.jpg', 'caption': 'a blue canopy over a chair at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086429.jpg', 'caption': 'A blue umbrella on the beach over a folding chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086429.jpg', 'caption': 'A beach with blue chairs and umbrellas on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086429.jpg', 'caption': 'a blue umbrella is standing up at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356622.jpg', 'caption': 'Four adults riding on a boat that is homemade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356622.jpg', 'caption': 'A group of people out on a strange looking raft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356622.jpg', 'caption': 'A group of people who are on a boat made of barrels and other odd parts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356622.jpg', 'caption': 'The people in the homemade boat have a bicycle and a big green umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356622.jpg', 'caption': 'A group of people on a small boat with umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527038.jpg', 'caption': 'Heavy rain falls on a man holding a black umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527038.jpg', 'caption': 'People walking in the rain with open umbrellas in heavy rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527038.jpg', 'caption': 'A man is walking holding an umbrella in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527038.jpg', 'caption': 'A person is holding an umbrella in a snowstorm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527038.jpg', 'caption': 'a man walking with an umbrella on a very rainy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356131.jpg', 'caption': 'Two people sitting on a small sail boat on the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356131.jpg', 'caption': 'A couple in a sail boat in the middle of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356131.jpg', 'caption': 'Two people boating on an empty body of water,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356131.jpg', 'caption': 'Two people sitting beside each other in a row boat with small mast and sail, and two oars sticking out, in fairly calm water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356131.jpg', 'caption': 'Two people rowing in a boat on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404635.jpg', 'caption': 'A group of elephants standing together in a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404635.jpg', 'caption': 'A group of elephants gathered around a bush in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404635.jpg', 'caption': 'A herd of elephants grazing in a wild area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404635.jpg', 'caption': 'Pack of elephants in tall green grass as one has its trunk raised.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404635.jpg', 'caption': 'One large elephant holds up his trunk near a herd of elephants that includes several, small baby elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538451.jpg', 'caption': 'The top of an old fabric parasol next to fern', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538451.jpg', 'caption': 'Torn and battered umbrella laying out on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538451.jpg', 'caption': 'Closeup of the tip of a pink and white umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538451.jpg', 'caption': 'A large white and pink object is in the picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538451.jpg', 'caption': 'A lamp shade turned inside out to look like a plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263780.jpg', 'caption': 'A MOMMA AND BABY ELEPHANT ARE BY THE WATERING HOLE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263780.jpg', 'caption': 'A big and a small elephant in its habitat at a zoo ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263780.jpg', 'caption': 'A large and small elephant are walking on the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263780.jpg', 'caption': 'a small elephant and a large elephant on a dirt surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263780.jpg', 'caption': 'A mother and baby elephant walking next to a pool of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233119.jpg', 'caption': 'A person pulls a suitcase across an urban intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233119.jpg', 'caption': 'A WOMAN ON A WINTER DAY IS WALKING WITH HER SUITCASE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233119.jpg', 'caption': 'Adult pulling purple suitcase crossing street on city sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233119.jpg', 'caption': 'A woman crossing the street with a backpack and headphones on while rolling a suitcase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233119.jpg', 'caption': 'A woman with a pink suitcase walks down a city sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096762.jpg', 'caption': 'A woman walking across a street holding a pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096762.jpg', 'caption': 'A woman with a pink umbrella is walking across the street as traffic passes in the city behind her. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096762.jpg', 'caption': 'A street scene with a woman holding a pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096762.jpg', 'caption': 'A woman is using an umbrella on a wet and busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096762.jpg', 'caption': 'A group of people are holding umbrellas in the city as it rains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038449.jpg', 'caption': 'A couple of people carrying bags of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038449.jpg', 'caption': 'Neither one of these people had a good flight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038449.jpg', 'caption': 'A man and woman are standing on the curb holding suitcases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038449.jpg', 'caption': 'The couple has gathered their luggage for the trip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038449.jpg', 'caption': 'the man and woman are waiting with their travel bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565650.jpg', 'caption': 'A scooter parked with a purple umbrella over the seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565650.jpg', 'caption': 'A electric scooter is parked outside, with an umbrella over it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565650.jpg', 'caption': 'A moped parked along the street with a purple umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565650.jpg', 'caption': 'A purple umbrella sitting on top of a motor scooter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565650.jpg', 'caption': 'Motor scooter with built in umbrella and fur-lined gloves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251044.jpg', 'caption': 'A piece of red luggage sitting next to a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251044.jpg', 'caption': 'Luggage, a back back, a bench and a piano. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251044.jpg', 'caption': 'a group of luggage sitting on the ground next to some tables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251044.jpg', 'caption': 'A pile of luggage sitting on the floor beside each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251044.jpg', 'caption': 'this is luggage scattered about on a floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222295.jpg', 'caption': 'Two briefcases are used as decoration above these clothes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222295.jpg', 'caption': 'Two suitcases have been mounted on the wall as decor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222295.jpg', 'caption': 'A couple of bags of luggage sitting up against a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222295.jpg', 'caption': 'Above a rack of clothing, two suitcases are attached to a wall with shelf brackets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222295.jpg', 'caption': 'two pieces of luggage are sitting on the shelf', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031235.jpg', 'caption': 'a person standing with a broken umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031235.jpg', 'caption': 'a woman is standing outside holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031235.jpg', 'caption': 'a woman is outside and holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031235.jpg', 'caption': 'A woman standing by a street with a broken umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031235.jpg', 'caption': 'a woman holding a broken umbrella in the rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238310.jpg', 'caption': 'A woman holding up an umbrella near a stage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238310.jpg', 'caption': 'THERE IS A WOMAN THAT IS RECORDIGN A CONCERT WITH HER CELL PHONE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238310.jpg', 'caption': 'A lady holding up an umbrella in a dark place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238310.jpg', 'caption': 'A woman recording something in the rain under an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238310.jpg', 'caption': 'A woman hold an umbrella in one hand and taking a photograph with the other hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207937.jpg', 'caption': 'A person with an umbrella walking down a rainy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207937.jpg', 'caption': 'A woman in a red coat can be seen in the background talking on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207937.jpg', 'caption': 'People are standing next to a grated area in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207937.jpg', 'caption': 'The people are walking near an area with a green fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207937.jpg', 'caption': 'A person with a blue, red, and green plaid umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449485.jpg', 'caption': 'Is this picture of a girl and her suitcase hand tinted?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449485.jpg', 'caption': 'A cat holding a book and placing flowers on a suitcase', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449485.jpg', 'caption': 'A little girl standing behind a suitcase holding a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449485.jpg', 'caption': 'A person with a hat and a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449485.jpg', 'caption': 'A young girl in a dress standing next to a piece of luggage and flowers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278843.jpg', 'caption': 'A wrestler walking with his arm around a mans neck holding a purple umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278843.jpg', 'caption': 'A close up of several people with one holding an umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278843.jpg', 'caption': 'A man wraps his arms around two of his friends', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278843.jpg', 'caption': 'some people and one has a wrestling suit on ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278843.jpg', 'caption': 'Man hug as they are dressed in colorful costumes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147453.jpg', 'caption': 'A bunch of very pretty umbrellas very close together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147453.jpg', 'caption': 'A group of colorful striped umbrellas opened up for display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147453.jpg', 'caption': 'A number of open umbrellas blocking the sun. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147453.jpg', 'caption': 'a group of colorful umbreallas blocking the sun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147453.jpg', 'caption': 'Striped red and white as well as yellow and white umbrellas opened.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417980.jpg', 'caption': 'Costumed friends walking down the street arm in arm in a parade', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417980.jpg', 'caption': 'A group of people congregate ins some sort of rally. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417980.jpg', 'caption': 'People in a crowd touch each other for support.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417980.jpg', 'caption': 'Several people standing in a row with their arms around each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417980.jpg', 'caption': 'A group of people show open affection in public.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372874.jpg', 'caption': 'A brown and white dog on a skateboard next to group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372874.jpg', 'caption': 'People watch from the sidelines as a bulldog rides on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372874.jpg', 'caption': 'A dog runs alongside a skateboard with one paw on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372874.jpg', 'caption': 'a close up of a dog riding a skate board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372874.jpg', 'caption': 'a dog is pushing a skateboard while kids walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580390.jpg', 'caption': 'there is a polar bear playing with a water bottle in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580390.jpg', 'caption': 'A bear that is in the water, with a jug.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000314792.jpg', 'caption': 'a bedroom filled with pink and white cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314792.jpg', 'caption': 'A full view of a living room filled with pink color. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263351.jpg', 'caption': 'A woman in a red jacket is holding a red phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263351.jpg', 'caption': 'A pretty young woman talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263351.jpg', 'caption': 'A woman wearing sunglasses while using her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263351.jpg', 'caption': 'A woman with shades talking on the telephone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263351.jpg', 'caption': 'A woman engaged in a cell phone conversation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168837.jpg', 'caption': 'A rose that is laying down on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168837.jpg', 'caption': 'A made bed with a rose on top and champagne in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168837.jpg', 'caption': 'A white bed has a red rose in the middle of it as wine is chilling on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168837.jpg', 'caption': 'There is a red rose on the white bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168837.jpg', 'caption': 'The room has champagne in a bucket and a rose tied with ribbon and a note, resting on a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213008.jpg', 'caption': 'A couple of chairs and a large bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213008.jpg', 'caption': 'a tan and white bed some chairs white pillows and a lamp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213008.jpg', 'caption': 'That looks like the bed in a hotel room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213008.jpg', 'caption': 'A hotel room with a well-made bed, table,a and two chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213008.jpg', 'caption': 'A picture of a hotel room having just been cleaned.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178606.jpg', 'caption': 'THERE ARE A LOT OF PEOPLE WALKING AROUND WITH KITES', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178606.jpg', 'caption': 'a group of people at the park with some flying kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178606.jpg', 'caption': 'LOTS OF PEOPLE OUT FLYING KITES WHILE OTHERS LOOK ON', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178606.jpg', 'caption': 'People kite flying in a park on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178606.jpg', 'caption': 'landscape of a park with many people flying kites in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274438.jpg', 'caption': 'Kite flying in the breeze on the beach.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274438.jpg', 'caption': 'People on a beach flying a large kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274438.jpg', 'caption': 'A man is flying a kite at a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274438.jpg', 'caption': 'A man flying a colorful kite with a long tail on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274438.jpg', 'caption': 'a person playing with a colorful kite on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395843.jpg', 'caption': 'A person standing in a field holding a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395843.jpg', 'caption': 'a man on a beach with a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395843.jpg', 'caption': 'a man at the beach trying to fly a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395843.jpg', 'caption': 'A person is walking with an air glider or parachute.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395843.jpg', 'caption': 'A person in a large field waving a large flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434622.jpg', 'caption': 'A lady and a little girl are on the beach, flying a kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434622.jpg', 'caption': 'A woman and a young girl fly a kite while standing in water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434622.jpg', 'caption': 'A woman helping a girl fly a kite on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434622.jpg', 'caption': 'A woman and a child standing in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434622.jpg', 'caption': 'An adult helps a child fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330734.jpg', 'caption': 'A colorful kite flying over a rocky hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330734.jpg', 'caption': 'a man flies a kite over a rocky terrain ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330734.jpg', 'caption': 'The vibrant colors on the kite stand out against the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330734.jpg', 'caption': 'A man flies a rainbow-colored kite over a rocky hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330734.jpg', 'caption': 'A person standing on a mountain side flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022870.jpg', 'caption': 'Three dogs standing together, they all have leashes on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022870.jpg', 'caption': 'Three dogs are in the street near a man flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022870.jpg', 'caption': 'three dogs wearing leashes while waiting for their owner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022870.jpg', 'caption': 'A group of three dogs sitting on a road with a man in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022870.jpg', 'caption': 'Three dogs are tied up with leash ropes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426700.jpg', 'caption': 'The man gives a thumbs up while standing near a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426700.jpg', 'caption': 'A man is standing with a huge paper airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426700.jpg', 'caption': 'there is a man holding a home made large kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426700.jpg', 'caption': 'a man with a very large man made kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426700.jpg', 'caption': 'A young man holds his paper airplane and about ready to go test it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083283.jpg', 'caption': 'Three kids are trying to fly their kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083283.jpg', 'caption': 'A group of people standing on top of a green grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083283.jpg', 'caption': 'Kids run to launch their kites in a school yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083283.jpg', 'caption': 'a couple of kids play with a kite ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083283.jpg', 'caption': 'Two young children trying to fly kites next to dirt road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230031.jpg', 'caption': 'a person kneeling on sand with a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230031.jpg', 'caption': 'A man in white shirt sitting in sand with a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230031.jpg', 'caption': 'a person standing on sand next to a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230031.jpg', 'caption': 'A man kneeling in the sand with a colorful kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000230031.jpg', 'caption': 'an image of a man with a kite in the sand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340646.jpg', 'caption': 'A large group of people flying kites in a large open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340646.jpg', 'caption': 'People fly kites at a festival on a sunny day in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340646.jpg', 'caption': 'a number of kites flying over a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340646.jpg', 'caption': 'A group of people in a field flying their kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340646.jpg', 'caption': 'A group of people are flying kites in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194277.jpg', 'caption': 'A woman holding a kite in her hands in front of a woman tying her shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194277.jpg', 'caption': 'One person sits in the sand while another flies a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194277.jpg', 'caption': 'A girl flies a kite while sitting on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194277.jpg', 'caption': 'A women who is flying a kite on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194277.jpg', 'caption': 'A woman is kneeling down in the sand while holding a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204324.jpg', 'caption': 'A family flying a kite at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204324.jpg', 'caption': 'people flying a kite on the beach near a cliff', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204324.jpg', 'caption': 'People are on the sand watching their kite in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204324.jpg', 'caption': 'A group of people on the beach flying a kite ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204324.jpg', 'caption': 'Three people stand on an empty beach watching a bird in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007556.jpg', 'caption': 'People in the water and parachutes overhead. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007556.jpg', 'caption': 'Many different sails flying over a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007556.jpg', 'caption': 'Several gliders floating on the ocean next to an island.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007556.jpg', 'caption': 'dozens of kite skiers out in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007556.jpg', 'caption': 'Parasails glide above the blue water of the lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032364.jpg', 'caption': 'A pretty young lady flying a kite in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032364.jpg', 'caption': 'Woman flying a kite in the air on a single string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032364.jpg', 'caption': 'A girl flying a white rectangular kite in a sunny sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032364.jpg', 'caption': 'A woman wearing glasses flying a small kite on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032364.jpg', 'caption': 'A woman flies a kite in the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530509.jpg', 'caption': 'A young man holding a kite while sanding in a grassy park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530509.jpg', 'caption': 'A young person is presenting an elaborate kite to fly.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530509.jpg', 'caption': 'A young boy is in the park holding a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530509.jpg', 'caption': 'A boy in a park holding a kite in one hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530509.jpg', 'caption': 'A young boy holds a kite in a grassy park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470766.jpg', 'caption': 'A person flies a kite in a park while another watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470766.jpg', 'caption': 'Adult watching hildren flying kites in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470766.jpg', 'caption': 'Two boys watch their kites as their kites fly. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470766.jpg', 'caption': 'There are a bunch of kites being flown from this field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470766.jpg', 'caption': 'Two people watching several kites flying over a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402248.jpg', 'caption': 'a person that is flying a kite that is sitting on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402248.jpg', 'caption': 'People move about a grassy field while many of them fly kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402248.jpg', 'caption': 'a young boy sits on the grass guiding his kite ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402248.jpg', 'caption': 'A person sitting on the green grass flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402248.jpg', 'caption': 'A person sitting in the grass facing a group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024721.jpg', 'caption': 'a desk with a couple of computer screens on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024721.jpg', 'caption': 'Modern workspace with dual monitors, microphones and other electronic equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024721.jpg', 'caption': 'A desk has two computer monitors, a cell phone, mouse, laptop, and keyboard on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024721.jpg', 'caption': 'There are three computers on the desk, two of which are turned on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024721.jpg', 'caption': 'a desk with two computer screens a keyboard a laptop a mouse and a cellphone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513670.jpg', 'caption': 'A person flying a kite high up in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513670.jpg', 'caption': 'The cloudy sky is peppered with dots of kits as a woman with black hair stands on the grass holding a string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513670.jpg', 'caption': 'A person flying a kite in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513670.jpg', 'caption': 'A woman flying a kite on the side of a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513670.jpg', 'caption': 'A bunch of people flying kites while on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311310.jpg', 'caption': 'A field full of people and a colorful kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311310.jpg', 'caption': 'a woman and a boy flying a kite in a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311310.jpg', 'caption': 'Children fly a colorful kite in the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311310.jpg', 'caption': 'The little boy and woman are watching the kite fly in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000311310.jpg', 'caption': 'Perfect weather brings people to the park for soccer and kite flying.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122266.jpg', 'caption': 'The group of people are flying their kites in the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122266.jpg', 'caption': 'Small child at the bottom of a grassy hill flying a blue kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122266.jpg', 'caption': 'A woman flying a kite in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122266.jpg', 'caption': 'A person in a field flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122266.jpg', 'caption': 'a person in the park playing with a blue kite in thesky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557517.jpg', 'caption': 'A person that is about to fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557517.jpg', 'caption': 'A man in sunglasses holds a large red and purple kite in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557517.jpg', 'caption': 'Man preparing a kite to fly in a green park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557517.jpg', 'caption': 'Man in a large field holding onto a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557517.jpg', 'caption': 'A man in a field grasps onto a large kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029558.jpg', 'caption': 'A man and boy in grassy area with a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029558.jpg', 'caption': 'A man and a boy are at the park with a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029558.jpg', 'caption': 'A little boy and his father preparing to fly a brightly colored kit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029558.jpg', 'caption': 'an adult and a child playing with a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000029558.jpg', 'caption': 'A man and a young boy holding the strings of a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271643.jpg', 'caption': 'A man flies a kite by the water side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271643.jpg', 'caption': 'The man flies a kite by the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271643.jpg', 'caption': 'A man flying a kite in a parking lot by a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271643.jpg', 'caption': 'A person on the water flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271643.jpg', 'caption': 'A man flying a kite in a parking area near a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515682.jpg', 'caption': 'A glass field with a few chairs and vehicles in the distance, along with people standing in the field and one kite being flow in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515682.jpg', 'caption': 'People flying a kite at a camp ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515682.jpg', 'caption': 'There are people camping and flying kites in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515682.jpg', 'caption': 'a bunch of people at a park fly a kite ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515682.jpg', 'caption': 'A group of campers flying kites outside in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250953.jpg', 'caption': 'A large crowd of people standing in the grass near a monument.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250953.jpg', 'caption': 'A massive crowd of people standing around the Washington monument.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250953.jpg', 'caption': 'many people cars grass trees and a white monument', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250953.jpg', 'caption': 'A large crowd gathers around the washington monument.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250953.jpg', 'caption': 'A crowd has gathered outside of the monument to fly kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469103.jpg', 'caption': 'A wooden table with an umbrella over it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469103.jpg', 'caption': 'A table with an open umbrella on a deck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469103.jpg', 'caption': 'A laptop computer is on a table outside with an umbrella above it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469103.jpg', 'caption': 'An outdoor set of chair and tables with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469103.jpg', 'caption': 'A laptop computer sits under an open umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359020.jpg', 'caption': 'A man and child that have a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359020.jpg', 'caption': 'Two people are playing with a kite on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359020.jpg', 'caption': 'A man and a woman flying a kite of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359020.jpg', 'caption': 'The man and a young person are flying a kite on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359020.jpg', 'caption': 'Man and child flying a colorful kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152004.jpg', 'caption': 'A tall glass vase on a balcony. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152004.jpg', 'caption': 'a clear glass with some water in it standing over a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152004.jpg', 'caption': 'A giant shot glass is displayed in front of some houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152004.jpg', 'caption': 'A glass vase that is sitting on a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152004.jpg', 'caption': 'A tall glass vase on a balcony railing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264423.jpg', 'caption': 'A woman and child are flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264423.jpg', 'caption': 'A woman and a child are flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264423.jpg', 'caption': 'Two people flying a kite before a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264423.jpg', 'caption': 'A woman holds her son as they fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264423.jpg', 'caption': 'A woman holding a child while flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413950.jpg', 'caption': 'Two people standing next to each other while flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413950.jpg', 'caption': 'The lady and child fly the kite high.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413950.jpg', 'caption': 'Two people flying a kite in the sky together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413950.jpg', 'caption': 'Two people flying a kite in a cloudless sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413950.jpg', 'caption': 'Two people fly a kite together high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153344.jpg', 'caption': 'Baseball players seen playing the game through the fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153344.jpg', 'caption': 'a number of baseball players on a field playing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153344.jpg', 'caption': 'A baseball player pitching a ball on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153344.jpg', 'caption': 'A pitcher just threw a baseball from the mound.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153344.jpg', 'caption': 'A baseball pitcher throws a pitch to the batter standing at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364341.jpg', 'caption': 'A young man tossing a baseball bat on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364341.jpg', 'caption': 'A baseball player throwing the bat after hitting the ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364341.jpg', 'caption': 'A baseball player reacts to hitting a ball during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364341.jpg', 'caption': 'A man throwing a baseball bat as he leaves home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364341.jpg', 'caption': 'a man throwing a bat after hitting a ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580908.jpg', 'caption': 'A group of young men standing around in baseball uniforms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580908.jpg', 'caption': 'A group of baseball players standing around, while some hold baseball bats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580908.jpg', 'caption': 'a group of baseball players standing in a group', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580908.jpg', 'caption': 'There are many baseball players gathered together here', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580908.jpg', 'caption': 'A team of baseball players are gathered closely together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578525.jpg', 'caption': 'A man with a bat swings at the base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578525.jpg', 'caption': 'A baseball player swinging his bat to hit a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578525.jpg', 'caption': 'A b baseball player taking a swing at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578525.jpg', 'caption': 'The batter has just hit the baseball with the bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578525.jpg', 'caption': 'A baseball player has his bat outstretched on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223326.jpg', 'caption': 'Baseball on its way to a batter while a runner is on his way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223326.jpg', 'caption': 'A baseball player taking his turn at bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223326.jpg', 'caption': 'A baseball game in progress with the ball in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223326.jpg', 'caption': 'A group of people playing baseball together in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223326.jpg', 'caption': 'A batter, catcher and umpire in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076632.jpg', 'caption': 'A group of people on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076632.jpg', 'caption': 'A kid throwing a baseball towards two coaches.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076632.jpg', 'caption': 'A kid throws a ball to coaches at baseball practice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076632.jpg', 'caption': 'A pitcher is throwing a baseball during practice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076632.jpg', 'caption': 'a baseball player throwing a ball at a person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107729.jpg', 'caption': 'a little boy that has a baseball bat in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107729.jpg', 'caption': 'A woman is attempting to hit a ball with a bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107729.jpg', 'caption': 'The woman in the red shirt smiles while swinging a green plastic bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107729.jpg', 'caption': 'A person in a hate is preparing to hit a ball with a green bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107729.jpg', 'caption': 'A young woman holding a green baseball bat on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500940.jpg', 'caption': 'People are sailing on a small boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500940.jpg', 'caption': 'a sailboat sails with its sails full in front of a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500940.jpg', 'caption': 'A sailboat passes in front of an oversized clock and multiple city buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500940.jpg', 'caption': 'A sail boat with a large Colgate Clock in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500940.jpg', 'caption': 'a white sailboat with a blue green and white sail and people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567208.jpg', 'caption': 'A batter and catcher and group in dugout during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567208.jpg', 'caption': 'A guy starting to run to first base after hitting the ball in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567208.jpg', 'caption': 'The men are playing a game of baseball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567208.jpg', 'caption': 'A young boy about to run to a base after having hit a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567208.jpg', 'caption': 'A baseball player starts running after hitting the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477144.jpg', 'caption': 'A baseball player standing next to home plate holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477144.jpg', 'caption': 'Batter preparing to swing at ball during major game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477144.jpg', 'caption': 'Ball being thrown to batter at a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477144.jpg', 'caption': 'A stand view of a baseball player up to bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477144.jpg', 'caption': 'Ball flies down the field towards the baseball batter ready to hit it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306940.jpg', 'caption': 'Baseball players about to deliver hit to ball with many spectators.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306940.jpg', 'caption': 'A big baseball diamond where a player is about to hit the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306940.jpg', 'caption': 'a baseball game takes place as some people watch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306940.jpg', 'caption': 'A man that is standing in the dirt with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306940.jpg', 'caption': 'A batter readies to swing at first plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219690.jpg', 'caption': 'A baseball player is getting ready to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219690.jpg', 'caption': 'A man hitting a baseball with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219690.jpg', 'caption': 'a man is hitting a baseball with a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219690.jpg', 'caption': \"A baseball player wearing gray pants and a black jacket holds out a bat near a baseball that's in the air.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219690.jpg', 'caption': 'This is a picture of a baseball player hitting the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095841.jpg', 'caption': 'A young man swinging a baseball bat over a base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095841.jpg', 'caption': 'a batter swings at a pitch while a catcher holds his mitt up to catch the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095841.jpg', 'caption': 'The bat is about to make contact with the ball in this picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095841.jpg', 'caption': 'A boy is up to bat at a baseball diamond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095841.jpg', 'caption': 'A batter swings at a pitch during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053420.jpg', 'caption': 'A young male baseball player is about to swing for the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053420.jpg', 'caption': 'A batter stands at the plate, ready to swing, as the ball approaches, and the catcher and umpire look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053420.jpg', 'caption': 'Young baseball players on a field with a pitch being thrown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053420.jpg', 'caption': 'Batter about to make contact with the ball in a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053420.jpg', 'caption': 'A picture of a scene in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078638.jpg', 'caption': 'A young man throwing a baseball bat as he runs across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078638.jpg', 'caption': 'a baseball player with a black shirt and a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078638.jpg', 'caption': 'A batter is throwing a bat and getting ready to run.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078638.jpg', 'caption': 'A batter is running for first base after a hit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078638.jpg', 'caption': 'A boy in a baseball uniform runs on the diamond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416596.jpg', 'caption': 'Baseball players in the middle of a game with a small crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416596.jpg', 'caption': 'A baseball player taking a swing at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416596.jpg', 'caption': 'A person in a baseball uniform holding a bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416596.jpg', 'caption': 'A baseball player hitting a ball in a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416596.jpg', 'caption': 'a couple of kids that are playing baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189168.jpg', 'caption': 'A batter at a baseball game gets ready for the pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189168.jpg', 'caption': 'Batter and catcher during a baseball game with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189168.jpg', 'caption': 'A baseball getting ready to bat while a catcher waits behind him and people watch from benches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189168.jpg', 'caption': 'A person stands in front of an umpire with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189168.jpg', 'caption': 'a man standing at home base hoping to hit a ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574404.jpg', 'caption': 'A baseball player swinging a baseball bat at a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574404.jpg', 'caption': 'A player taking a swing at a baseball on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574404.jpg', 'caption': 'A baseball player in an orange jersey is swinging at the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574404.jpg', 'caption': 'Woman baseball batter swinging at baseball in white pants, orange uniform top and black helmet with 3 spectators behind black chain link fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000574404.jpg', 'caption': 'A baseball player hits the ball during a swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235156.jpg', 'caption': 'A tennis player reacts during a match on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235156.jpg', 'caption': 'a man standing on a tennis court while people watch him ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235156.jpg', 'caption': 'A man with a tennis racket is standing on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235156.jpg', 'caption': 'A black man is standing ready to play tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235156.jpg', 'caption': 'A male tennis player on the baseline of a hard surface tennis court, with people in the stands watching him play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119563.jpg', 'caption': 'A man and woman holding a tennis racket over another mans head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119563.jpg', 'caption': 'A group of tennis players are enjoying themselves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119563.jpg', 'caption': 'A group of people standing around a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119563.jpg', 'caption': 'Three people on a tennis court, one with a racquet and one sitting touching anothers leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119563.jpg', 'caption': 'a man is on the ground examining the leg of another man on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107596.jpg', 'caption': 'A group of friends sitting around a table eating pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107596.jpg', 'caption': 'People are sitting outside eating pizza from a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107596.jpg', 'caption': 'Several children with slices of pizza in their hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107596.jpg', 'caption': 'A group of girls eat a pizza outside at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107596.jpg', 'caption': 'Group of people sitting at a table eating pizza out of a box. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229960.jpg', 'caption': 'a man with a plate of pizza and drink in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229960.jpg', 'caption': 'A man is drinking iced tea in front of a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229960.jpg', 'caption': 'A man enjoying a cool beverage and a flat bread pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229960.jpg', 'caption': 'A wooden table topped with a white plate with a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229960.jpg', 'caption': 'A person sitting at a table with a pizza on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452767.jpg', 'caption': 'Six women pose together with a couple of tennis rackets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452767.jpg', 'caption': 'A group of women sitting around each other holding racquets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452767.jpg', 'caption': 'Six women wearing tennis outfits sitting on a bench and standing with an award plaque. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452767.jpg', 'caption': 'A black and white photograph shows older women with tennis racquets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452767.jpg', 'caption': 'A black and white photo of a ladies tennis team.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227440.jpg', 'caption': 'A man sitting at a table with two kids.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227440.jpg', 'caption': 'An adult sits with three children at a table as they eat pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227440.jpg', 'caption': 'Kids are sitting at a table eating pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227440.jpg', 'caption': 'Father and his kids eating some pepperoni pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227440.jpg', 'caption': 'a man in an orange shirt and three children and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481285.jpg', 'caption': 'A lady sitting in booth with a huge pizza in front of her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481285.jpg', 'caption': 'A gigantic size pizza on a table in front of a woman. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481285.jpg', 'caption': 'A woman seated on a bench with a big pizza on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481285.jpg', 'caption': 'A woman sitting in a booth is posing with a huge pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481285.jpg', 'caption': 'A giant pizza in front of a woman sitting at a booth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517306.jpg', 'caption': 'Two people sitting behind a large pizza on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517306.jpg', 'caption': 'Two people who are sitting next to a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517306.jpg', 'caption': 'A couple of women sitting in front of a giant pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517306.jpg', 'caption': 'Two girls sit close on the bench with a giant pizza on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517306.jpg', 'caption': 'Two young ladies are sitting with a huge pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271639.jpg', 'caption': 'a female tennis player in a white top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271639.jpg', 'caption': 'A women is standing with a racquet in her hand on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271639.jpg', 'caption': 'A woman tennis player standing on the tennis court holding her racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271639.jpg', 'caption': 'A black and white picture of a woman playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271639.jpg', 'caption': 'A tennis player pumps her fist at a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270708.jpg', 'caption': 'A woman bending over while holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270708.jpg', 'caption': 'a woman leaning over with a tennis raacket and ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270708.jpg', 'caption': 'A woman is bending over while holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270708.jpg', 'caption': 'A person bending down while holding a tennis racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270708.jpg', 'caption': 'The woman is playing tennis on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153764.jpg', 'caption': 'man on blue tennis court preparing to make serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153764.jpg', 'caption': 'A man swinging a tennis racket at a ball on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153764.jpg', 'caption': 'A man playing tennis on a blue tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153764.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153764.jpg', 'caption': 'A man is playing tennis on a blue court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411330.jpg', 'caption': 'a sausage pizza a butter knife and a black platter and plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411330.jpg', 'caption': 'A slice of pizza has been removed from the whole pie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411330.jpg', 'caption': 'There is a slice taken out of the pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411330.jpg', 'caption': 'A slice of pizza sits on a plate on a stove counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411330.jpg', 'caption': 'A slice of a pizza is cut and sitting on a plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186977.jpg', 'caption': 'The young boy is holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186977.jpg', 'caption': 'A boy wearing pants and a shirt holds a tennis racket while standing near a set of steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186977.jpg', 'caption': 'A young boy is standing on the front porch with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186977.jpg', 'caption': 'A young boy holding onto a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186977.jpg', 'caption': 'A man holding a tennis racquet in front of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581736.jpg', 'caption': 'A beautiful young lady standing in front of a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581736.jpg', 'caption': 'A reflection of a young girl in a mirror by a curtain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581736.jpg', 'caption': 'The young woman admires herself in the bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581736.jpg', 'caption': 'A young lady is posing and taking a selfie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581736.jpg', 'caption': 'A girl looking at herself and her hair in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047882.jpg', 'caption': 'A kitchen filled with lots of counter space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047882.jpg', 'caption': 'an image of a kitchen setting with counter tops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047882.jpg', 'caption': 'Grey and yellow kitchen with modern appliances and island.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047882.jpg', 'caption': 'A kitchen with a wooden island and wood cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047882.jpg', 'caption': 'A kitchen area with counter, sink and stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252147.jpg', 'caption': 'A desk beneath a bookshelf that has computers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252147.jpg', 'caption': 'A laptop computer sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252147.jpg', 'caption': 'A table with food, computer screen and lab top and papers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252147.jpg', 'caption': 'An open laptop in front of a monitor on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252147.jpg', 'caption': 'A large desk has a bookshelf above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354212.jpg', 'caption': 'A person using a mouse on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354212.jpg', 'caption': 'A persons hand on a computer mouse and a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354212.jpg', 'caption': 'A hand that is on a mouse, next to a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354212.jpg', 'caption': 'A hand on a computer mouse with part of a computer also showing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354212.jpg', 'caption': 'A person is using a wireless mouse with this laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279047.jpg', 'caption': 'An open room with a tile floor and wooden cabinet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279047.jpg', 'caption': 'A beautiful large dresser next to a small shelve set up against the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279047.jpg', 'caption': 'The unfinished wood dresser is set up against the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279047.jpg', 'caption': 'A wooden cabinet and a wooden shelf next to one another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279047.jpg', 'caption': 'The armoire looks large next to the bookshelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146774.jpg', 'caption': 'A clock hanging from a white wall in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146774.jpg', 'caption': 'a clock hanging on a wall next to a blue vase ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146774.jpg', 'caption': 'A clock hanging on a wall next to colorful vases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146774.jpg', 'caption': 'A clock hangs on a wall near a blue vase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146774.jpg', 'caption': 'an old clock hanging on a wall in an antique shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001573.jpg', 'caption': 'A kitchen scene with an oven and a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001573.jpg', 'caption': 'A desk with drawer on which daily use item are kept.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001573.jpg', 'caption': 'A teddy bear is sitting in a cooking pot on a stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001573.jpg', 'caption': 'A vintage stove and washing tub on a brick floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001573.jpg', 'caption': 'There is an old stove with old pots on the burners', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257458.jpg', 'caption': 'A refrigerator with a box sitting on top and a stove with a shelf above it that has a toy red truck and candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257458.jpg', 'caption': 'A plastic bowl on a plastic mat on a stove next to a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257458.jpg', 'caption': 'A black cat sits on top of the refrigerator in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257458.jpg', 'caption': 'Kitchen with a small oven stove combination and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257458.jpg', 'caption': 'A black cat sitting on a box above a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517821.jpg', 'caption': 'a gray and white teddy bear with a flower on its head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517821.jpg', 'caption': 'A fluffy teddy bear wears a floral head piece. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517821.jpg', 'caption': 'A stuffed animal with a flower in its hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517821.jpg', 'caption': 'A teddy bear is sitting down wearing a bow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517821.jpg', 'caption': \"An odd looking stuffed animal with a pink flower in it's hair.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535579.jpg', 'caption': 'A bunch of stuffed bears and gift boxes in a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535579.jpg', 'caption': 'Three teddy bears are on display on a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535579.jpg', 'caption': 'A chest that contains three teddy bears, a book and a wrapped gift', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535579.jpg', 'caption': 'Three teddy bears are sitting in a luggage box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535579.jpg', 'caption': 'Three stuffed teddy bears sitting in a suitcase with other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516313.jpg', 'caption': 'A woman and man standing behind a counter with a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516313.jpg', 'caption': 'a stuffed bear is sitting in the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516313.jpg', 'caption': 'a teddy bear in front of a store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516313.jpg', 'caption': '2 patrons looking at a large teddy bear being displayed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516313.jpg', 'caption': 'Large stuffed bear sits on counter next to beverage bottle with adults in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126163.jpg', 'caption': 'A child sits at a table with stuffed toys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126163.jpg', 'caption': 'A little girl in a store playing with four large white Teddy bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126163.jpg', 'caption': 'there are many stuffed animals sitting at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126163.jpg', 'caption': 'A LITTLE GIRL AT A TABLE SURROUNDED BY FOUR BIG TEDDY BEARS.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126163.jpg', 'caption': 'A lady and child at a table with some very big stuffed bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002434.jpg', 'caption': 'A coupe of laptop computers with a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002434.jpg', 'caption': 'Two laptops sits beside each other in a cluttered room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002434.jpg', 'caption': 'A pair of laptops sitting next to each other in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002434.jpg', 'caption': 'Two working laptops seated side by side on a cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002434.jpg', 'caption': 'Two different laptops sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357805.jpg', 'caption': 'A gray and white cat sitting on a laptop keyboard with a photo of two people on the screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357805.jpg', 'caption': 'a cat sitting on a laptop keyboard that happens to be on someones lap', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357805.jpg', 'caption': 'A cat is sitting on a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357805.jpg', 'caption': 'The grey kitten is lying on the keyboard of a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357805.jpg', 'caption': \"A cat lays on a laptop computer, which is on a person's lap.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128813.jpg', 'caption': 'A black and white photo of two teddy bears posing near two cameras.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128813.jpg', 'caption': 'The two stuffed bears are near two cameras on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128813.jpg', 'caption': 'Black and white photograph of two teddy bears and two cameras.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128813.jpg', 'caption': 'A black and white photo of two teddy bears sitting next to Nikon cameras.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000128813.jpg', 'caption': 'two teddy bears sitting next to two cameras ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246077.jpg', 'caption': 'A couple of shiney teddy bears with penises.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246077.jpg', 'caption': 'Shiny, stuffed bears oddly come complete with penises. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246077.jpg', 'caption': 'Two teddy bears of different colors sitting next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246077.jpg', 'caption': 'A white and red colored shiny sex toy teddy bears.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246077.jpg', 'caption': 'Two shiny bears are sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238488.jpg', 'caption': 'A woman is editing a video from her laptop using 2 large television screens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238488.jpg', 'caption': 'a lady that is at a computer screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238488.jpg', 'caption': 'A young woman using a notebook computer watches television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238488.jpg', 'caption': 'Woman on laptop while large screen in on above her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238488.jpg', 'caption': 'a person sitting at a desk with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356878.jpg', 'caption': 'A woman sitting at a wooden table in front of an open laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356878.jpg', 'caption': 'A woman with a laptop talking to a group of women at a conference table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356878.jpg', 'caption': 'a group of ladies sitting at a table chatting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356878.jpg', 'caption': 'Lady teach a class and uses her laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356878.jpg', 'caption': 'A woman at a table with a laptop talking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530520.jpg', 'caption': 'Men are resting in a grassy area outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530520.jpg', 'caption': 'Man with a laptop sitting a lawn with his colleagues', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530520.jpg', 'caption': 'Three young men sitting on a lawn while one uses a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530520.jpg', 'caption': 'A group of men sitting on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530520.jpg', 'caption': 'Men are sitting on the grass with a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385580.jpg', 'caption': 'Men on phones standing in white room with lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385580.jpg', 'caption': 'some people and one male is looking at his cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385580.jpg', 'caption': 'Guy with cap on and cup in hand shows another whats on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385580.jpg', 'caption': 'A pair of people stand and talk and play on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385580.jpg', 'caption': 'A man in a red at is standing next to a man with long hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371555.jpg', 'caption': 'A smiling woman reclines in a chair with a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371555.jpg', 'caption': 'a woman sits on a rocking chair next to a vast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371555.jpg', 'caption': 'A woman with a newspaper is sitting in a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371555.jpg', 'caption': 'A woman with a white shirt sits in a chair with a newspaper on her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000371555.jpg', 'caption': 'The woman is reading the newspaper while sitting down in the chair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501652.jpg', 'caption': 'A child in a vehicle holding some toys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501652.jpg', 'caption': 'A young child in the back seat of a car pretends to talk on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501652.jpg', 'caption': 'A little child sitting in a car seat in the back seat of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501652.jpg', 'caption': 'a girl in the car on the phone with something in her hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501652.jpg', 'caption': 'A small Asian child playing with toys in a car seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450655.jpg', 'caption': 'A funky looking clock with a bottle next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450655.jpg', 'caption': 'A very odd shaped but pretty style clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450655.jpg', 'caption': 'A clock with wildly shaped numbers sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450655.jpg', 'caption': 'A clock on the table and a wine bottle ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450655.jpg', 'caption': 'A clock that looks like it has melted sitting on the edge of a shelf. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432859.jpg', 'caption': 'An iPod and a laptop computer on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432859.jpg', 'caption': 'An open laptop computer rests beside an MP3 player and other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432859.jpg', 'caption': 'A laptop computer is sitting on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432859.jpg', 'caption': \"A laptop's screen is off and there is an ipod, mouse, cups, and other office supplies beside it.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432859.jpg', 'caption': 'A laptop sits on a desk next to cups and an mp3 player.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467803.jpg', 'caption': 'A small bamboo plant inside of a vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467803.jpg', 'caption': 'a case with some vegetation growing out of it sitting on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467803.jpg', 'caption': 'A green stem of a plant in a small pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467803.jpg', 'caption': 'a pot with small flowers on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467803.jpg', 'caption': 'A small vase has a good luck plant in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281711.jpg', 'caption': 'A kitchen in an apartment with a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281711.jpg', 'caption': 'A messy kitchen area showing the fridge and adjoining hallway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281711.jpg', 'caption': 'There are bags sitting on the floor in front of the stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281711.jpg', 'caption': 'Bags on the floor in a large kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281711.jpg', 'caption': 'Wide open kitchen area with wooden floors and small refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209048.jpg', 'caption': 'Three coffee mugs are in front of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209048.jpg', 'caption': 'some cups are sitting near a microwave on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209048.jpg', 'caption': 'Three coffee mugs in front of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209048.jpg', 'caption': 'three cups that are next to a microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209048.jpg', 'caption': 'A microwave has been heavily used and is dirty in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205193.jpg', 'caption': 'A coffee pot filled with tea sitting in front of a toaster oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205193.jpg', 'caption': 'A coffee pot and a package set in front of a toaster oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205193.jpg', 'caption': 'Ingredients sitting outside of a metal toaster oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205193.jpg', 'caption': 'A pot of tea sits in front of an open microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205193.jpg', 'caption': 'A pitcher full of tea sits in front of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033845.jpg', 'caption': 'A man sitting on a chair in front of a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033845.jpg', 'caption': 'people sitting around a table filled with laptop and snacks ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033845.jpg', 'caption': 'A man sitting back in a chair with his hand up in front of a laptop next to a woman. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033845.jpg', 'caption': 'There are people are sitting at the table eating and using their laptops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033845.jpg', 'caption': 'A man and woman are sitting in front of their laptops with snacks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081070.jpg', 'caption': 'A tree with balloons tied onto it and candles at the base of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081070.jpg', 'caption': 'A telephone is decorated like a memorial with candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081070.jpg', 'caption': 'A picture of stuffed animals on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081070.jpg', 'caption': 'The tree is covered in stuffed animals and balloons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081070.jpg', 'caption': 'A street side tree is filled with candles, teddy bears and balloons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159215.jpg', 'caption': 'A person is taking a picture of three people with a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159215.jpg', 'caption': 'A man viewing a video on his smart phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159215.jpg', 'caption': 'A person observing some people on a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159215.jpg', 'caption': 'A woman is holding an iPhone and trying to take a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159215.jpg', 'caption': 'Man holding a mobile phone up to see a picture on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370038.jpg', 'caption': 'A woman in her underwear next to a naked man holding cookies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370038.jpg', 'caption': 'Two people almost naked with cookies from the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370038.jpg', 'caption': 'Scantily clad couple in kitchen with pan of cookies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370038.jpg', 'caption': 'Half naked man and woman holding up a batch of cookies. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370038.jpg', 'caption': 'A young couple baking almost naked in the kitchen with one another. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484674.jpg', 'caption': 'a cream colored refrigerator and a table and chairs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484674.jpg', 'caption': 'A refrigerator freezer sitting in a kitchen next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484674.jpg', 'caption': 'a refridgerator having two gallons of milk placed on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484674.jpg', 'caption': 'a fridge with some bottles on the top of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484674.jpg', 'caption': 'A refrigerator and some chairs in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048739.jpg', 'caption': 'A man is taking photo of a baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048739.jpg', 'caption': 'A woman holding a baby while a man takes a picture of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048739.jpg', 'caption': 'A man is holding a cell phone near a woman holding a baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048739.jpg', 'caption': 'A man taking a photo of a woman holding a baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048739.jpg', 'caption': 'He was taking a picture with his cell phone of her holding the baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143167.jpg', 'caption': 'A small gold and black clock tower in a village.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143167.jpg', 'caption': 'The clock tower is visible between large houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143167.jpg', 'caption': 'Three homes and a clock tower in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143167.jpg', 'caption': 'Cream colored buildings with green shutters, and a tower with a clock in the distance. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143167.jpg', 'caption': 'Giant clocks place on the sides of a tower in the distance', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256860.jpg', 'caption': 'A tall clock tower being reflected in a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256860.jpg', 'caption': 'There are different levels of the tower shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256860.jpg', 'caption': 'An all glass building showing the reflection of another building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256860.jpg', 'caption': \"A large building with walls of glass that reflect it's surroundings.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256860.jpg', 'caption': 'a very large building that is reflecting off a buliding', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253967.jpg', 'caption': 'A group of people holding cell phones and posing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253967.jpg', 'caption': 'A group of people standing in a room together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253967.jpg', 'caption': 'One guy and three ladies on their cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253967.jpg', 'caption': 'A group of people with their cell phones in their hands. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253967.jpg', 'caption': 'The actors are posing in their costumes for a play.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000580390.jpg', 'caption': 'A polar bear watches a large jug floating by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580390.jpg', 'caption': 'Bear in water playing with a large bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580390.jpg', 'caption': 'Bear in water staring at plastic bottle with sunlight shining on bear and bottle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507783.jpg', 'caption': 'some peoples luggage has been abandoned at the air port', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507783.jpg', 'caption': 'Various sizes and colors of tagged and bundled luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507783.jpg', 'caption': 'A collection of various types and colors of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507783.jpg', 'caption': 'Bags of luggage sitting on the ground at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507783.jpg', 'caption': 'A bunch of unattended luggage sitting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493862.jpg', 'caption': 'A person standing on top of a green grass hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493862.jpg', 'caption': 'A person standing in a big grassy field with a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493862.jpg', 'caption': 'A person holding a racket out in a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493862.jpg', 'caption': 'a person with a tennis racket in a field of grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493862.jpg', 'caption': 'a woman playing with her dog in the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074181.jpg', 'caption': 'a person standing next to many luggage bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074181.jpg', 'caption': 'A man standing with a lot of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074181.jpg', 'caption': 'A man stands with several pieces of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074181.jpg', 'caption': 'A man leaning against his luggage at a terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074181.jpg', 'caption': 'A man standing with suitcases of different colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094823.jpg', 'caption': 'A brown dog laying next to a bottle of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094823.jpg', 'caption': 'A small dog lying on the ground next to a wine bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094823.jpg', 'caption': 'a small brown dog and a bottle of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094823.jpg', 'caption': 'A orange dog laying next to a wine bottle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094823.jpg', 'caption': 'A dog lays on a sidewalk next to a bottle of wine. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516214.jpg', 'caption': 'Lots of luggage sitting on the ground at an airport ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516214.jpg', 'caption': 'Luggage with airport luggage tags on the handles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516214.jpg', 'caption': 'A bunch of luggage is sitting and waiting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516214.jpg', 'caption': 'Several suitcase on the floor with tags on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516214.jpg', 'caption': 'A row of suitcases is lined up in an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422280.jpg', 'caption': 'Luggage on a carousel at a crowded airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422280.jpg', 'caption': 'Luggage coming down a carousel at an airport. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422280.jpg', 'caption': 'Suitcases revolving around on an airport baggage belt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422280.jpg', 'caption': 'A bagage track takes bags at the airports', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422280.jpg', 'caption': 'Luggage at an airport on a turn table waiting for pickup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056013.jpg', 'caption': 'a number of luggage bags on a cart in a lobby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056013.jpg', 'caption': 'Wheeled cart with luggage at lobby of commercial business.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056013.jpg', 'caption': 'Trolley used for transporting personal luggage to guests rooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056013.jpg', 'caption': 'A luggage cart topped with lots of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056013.jpg', 'caption': 'a cart filled with suitcases and bags ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359851.jpg', 'caption': 'A Pokemon and Mickey Mouse standing next to a light pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359851.jpg', 'caption': 'The people are wearing costumes and selling items on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359851.jpg', 'caption': 'We see two men in character costumes on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359851.jpg', 'caption': 'Two people stand on the sidewalk dressed as cartoon characters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359851.jpg', 'caption': 'A pair of people dressed up as Mickey and Pooh with balloons for animals', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124429.jpg', 'caption': 'A display of flowering bushes in pots on a backyard patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124429.jpg', 'caption': 'A lot of flowers that are by a walk way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124429.jpg', 'caption': 'Pots of flowers are shown in a backyard next to patio furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124429.jpg', 'caption': 'A very large section of small trees near a black dog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124429.jpg', 'caption': 'A dog standing next to several plants on a patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457943.jpg', 'caption': 'A dog carrying a Frisbee at a dog competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457943.jpg', 'caption': 'A dog participating in a dog show or competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457943.jpg', 'caption': 'A dog carries a frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457943.jpg', 'caption': 'A white dog catching a novelty flying disc in a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457943.jpg', 'caption': 'Gated dog park area where some dogs have frisbees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413704.jpg', 'caption': 'A dog running in a field with people around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413704.jpg', 'caption': 'A dog running in the park with a Frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413704.jpg', 'caption': 'A black and white dog participating in a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413704.jpg', 'caption': 'A dog running on a course in a park with a frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413704.jpg', 'caption': 'A dog runs with a frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176362.jpg', 'caption': 'A baseball player taking a swing at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176362.jpg', 'caption': 'A baseball player holding a baseball bat while playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176362.jpg', 'caption': 'The catcher extends his glove as a batter awaits a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176362.jpg', 'caption': 'A baseball player swinging his bat, while the catcher and one spectator look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176362.jpg', 'caption': 'A person is batting at a baseball game as the catcher and a man observes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209544.jpg', 'caption': 'A man standing up while holding a red plastic cup and a large frisbee type disc in his hand, preparing to throw it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209544.jpg', 'caption': 'The picnic table is located in the isolated field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209544.jpg', 'caption': 'A man is getting ready to throw a frisbee at a picnic area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209544.jpg', 'caption': 'A man throwing a frisbee in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209544.jpg', 'caption': 'The man holding a beverage is about to throw a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210457.jpg', 'caption': 'A couple of young men are playing frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210457.jpg', 'caption': 'Two men stand under a tree and look at a frisbee that is near two sticks in the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210457.jpg', 'caption': 'Two guys standing in front of a tree and next to two poles prepare to catch a frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210457.jpg', 'caption': 'Two guys are excited to be catching a Frisbee in this tournament.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210457.jpg', 'caption': 'Two young men standing on a lush green park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232849.jpg', 'caption': 'A couple stands smiling next to a sitting older couple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232849.jpg', 'caption': 'A man standing next to a woman holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232849.jpg', 'caption': 'Couple takes a picture in front of windows holding a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232849.jpg', 'caption': 'A couple of people standing in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232849.jpg', 'caption': 'Young couple displaying red disc near older couple at dock area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565395.jpg', 'caption': 'A man in glasses sitting next to a woman and holding up a red frisbee that says \"Cheese Shop\" on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565395.jpg', 'caption': 'A woman and man hold a frisbee together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565395.jpg', 'caption': 'A couple posing for a picture holding a red frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565395.jpg', 'caption': 'A couple sit together while holding a round, red sign from a cheese shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565395.jpg', 'caption': 'A man and a woman pose holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305993.jpg', 'caption': 'They are holding a frisbee together while hugging each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305993.jpg', 'caption': 'A couple standing by a table holding a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305993.jpg', 'caption': 'A couple of people standing together with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305993.jpg', 'caption': 'A man and a woman holding a frisbee on a deck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305993.jpg', 'caption': 'A man and a woman posing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017655.jpg', 'caption': 'A shot shows pale blue wall over a well-stuffed blue couch that dwarfs the already small, fluffy dog resting face-forward on one of its cushions. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017655.jpg', 'caption': 'A small adorable dog sitting on a sofa cushion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017655.jpg', 'caption': 'a white dog is sitting on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017655.jpg', 'caption': 'A small dog sits on a blue sofa', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017655.jpg', 'caption': 'a small fluffy dog sitting on a blue couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046882.jpg', 'caption': 'Many people are playing a game and having fun. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046882.jpg', 'caption': 'A group of people playing a game of frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046882.jpg', 'caption': 'kids playing Frisbee in a park on a bright day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046882.jpg', 'caption': 'Teens out in the park playing a game of frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046882.jpg', 'caption': 'a group of people playing frisbee in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379734.jpg', 'caption': 'Friends playing Frisbee on a dry grass field in the afternoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379734.jpg', 'caption': 'A man catching a Frisbee in a park, with another man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379734.jpg', 'caption': 'Couple plays with a Frisbee in the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379734.jpg', 'caption': 'Two young men playing frisbee on a playground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379734.jpg', 'caption': 'A couple of men in the dirt playing frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422025.jpg', 'caption': 'The man standing beside a tree has thrown a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422025.jpg', 'caption': 'the Frisbee was headed straight to the man with the blue shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422025.jpg', 'caption': 'a man by a tree waiting for a frisbee to come ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422025.jpg', 'caption': 'a man standing in the grass catching a frisby', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422025.jpg', 'caption': 'Man standing in yard of home playing with flying disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066485.jpg', 'caption': 'A group of young men catching a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066485.jpg', 'caption': 'Four boys playing with a Frisbee in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066485.jpg', 'caption': 'Men playing with a frisbee in a dry field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066485.jpg', 'caption': 'A group of four young men playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066485.jpg', 'caption': 'Four men are playing a game in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392391.jpg', 'caption': 'Two people in a park who are playing frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392391.jpg', 'caption': 'Two people playing frisbee near a picnic table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392391.jpg', 'caption': 'two young men play with a Frisbee, throwing it at each other in a picnic area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392391.jpg', 'caption': 'two people playing frisbee some dirt grass and tables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392391.jpg', 'caption': 'A couple of people in the grass with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487461.jpg', 'caption': 'A bear that is standing in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487461.jpg', 'caption': 'a small black bear up in a big tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487461.jpg', 'caption': 'A BLACK BEAR IS SITTING AMONG THE TREES', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487461.jpg', 'caption': 'a cant that is sitting on a big branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487461.jpg', 'caption': 'this is a bear climbing on a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244999.jpg', 'caption': 'people standing on the beach while one grabs for a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244999.jpg', 'caption': 'A group of guys playing a game of Frisbee on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244999.jpg', 'caption': 'Several men stand on a beach looking over the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244999.jpg', 'caption': 'Several people at the beach playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244999.jpg', 'caption': 'three men on a beach playing a game of frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551739.jpg', 'caption': 'A brown bear next to a fence with words reading \"bear and wolf museum.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551739.jpg', 'caption': 'A bear walking in front of a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551739.jpg', 'caption': 'The brown bear is alone caged outside for people to visit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551739.jpg', 'caption': 'A picture of a brown bear at the Bear and Wolf Museum', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551739.jpg', 'caption': 'a close up of a bear behind a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203635.jpg', 'caption': 'A brown bear licking the ear of another brown bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203635.jpg', 'caption': 'Two bears resting in the grass and looking around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203635.jpg', 'caption': 'Two brown bears laying down near a log.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203635.jpg', 'caption': 'Two small brown bears with one licking the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203635.jpg', 'caption': \"A small brown bear licks it's paw near logs.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008401.jpg', 'caption': 'three bears outside in the woods in the bushes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008401.jpg', 'caption': 'Three bears walking together in a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008401.jpg', 'caption': 'Two baby brow bears are close behind a larger bear in a wooded forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008401.jpg', 'caption': 'A bear and two cubs are walking through a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008401.jpg', 'caption': 'An adult bear and two bear cubs wander through a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028359.jpg', 'caption': \"Car mirror with dog's head reflected on sunny day.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028359.jpg', 'caption': 'a dog that is looking into a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028359.jpg', 'caption': \"A small white dog's reflection on a car's side view mirror.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028359.jpg', 'caption': 'A dog sticking his head outside of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028359.jpg', 'caption': \"There's a dog's head in a rear view mirror with sky and trees in the background.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204821.jpg', 'caption': 'Zebras eating hay at a fenced wildlife habitat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204821.jpg', 'caption': 'Two zebras walking in between rocks at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204821.jpg', 'caption': 'Pair of zebras walking past rocks in zoo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204821.jpg', 'caption': 'Two zebras walking among heavy boulders and grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204821.jpg', 'caption': 'Two zebras that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507668.jpg', 'caption': 'Zebras crane their necks as they stand in a group in the desert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507668.jpg', 'caption': 'Three zebras, two are fleming in a grassy pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507668.jpg', 'caption': 'Three zebras are walking through the tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507668.jpg', 'caption': 'A group of zebra standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507668.jpg', 'caption': 'three zebras in a brown and green field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430265.jpg', 'caption': 'A man is trying to catch a red Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430265.jpg', 'caption': 'A man in blue sweater with a red frisbee in street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430265.jpg', 'caption': 'A man is trying to catch a Frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430265.jpg', 'caption': 'There is a man playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430265.jpg', 'caption': 'A person is outside with a frisbee on his arm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153013.jpg', 'caption': 'A boy touches a frog on an orange Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153013.jpg', 'caption': 'A young boy touching a small frog that is sitting on an orange frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153013.jpg', 'caption': 'A boy petting a frog on a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153013.jpg', 'caption': 'A boy touches a frog that is sitting on a frisbee. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153013.jpg', 'caption': 'A boy looks at a small frog that has been placed on an orange Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130773.jpg', 'caption': 'A little boy is all grins as he is shown a toad sitting on a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130773.jpg', 'caption': 'A boy is shown a frog being held by a Frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130773.jpg', 'caption': 'A boy closely examines a frog in his yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130773.jpg', 'caption': 'A young boy enjoys looking at a small frog on a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130773.jpg', 'caption': 'A little boy looking at an orange frisbee with a frog on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572825.jpg', 'caption': 'Dog running in a park with a frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572825.jpg', 'caption': 'A dog that is catching a frisbee in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572825.jpg', 'caption': \"Black dog holds frisbee in his mouth as he's running. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572825.jpg', 'caption': 'A dog in a park is playing frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572825.jpg', 'caption': 'A black dog has just captured a Frisbee using its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540099.jpg', 'caption': 'A black and white dog laying on top of a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540099.jpg', 'caption': 'A dog eating a Frisbee on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540099.jpg', 'caption': 'A dog laying on the grass with a toy in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540099.jpg', 'caption': 'Black and white dog with flying disc lying on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540099.jpg', 'caption': 'A dog laying on grass with a frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432724.jpg', 'caption': 'A couple of wild animals and a zebra standing on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432724.jpg', 'caption': 'Zebra and gazelle standing in the grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432724.jpg', 'caption': 'a couple of antelopes stare at a zebra ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432724.jpg', 'caption': 'There is a zebra and some antelopes in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432724.jpg', 'caption': 'A zebra and other animals stand on a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190097.jpg', 'caption': 'a bunch of people on a beach with a freez be', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190097.jpg', 'caption': 'A man flying through he air while holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190097.jpg', 'caption': 'A man is performing tricks with a frisbee while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190097.jpg', 'caption': 'there is a man that has jumped in the air with a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190097.jpg', 'caption': 'a person on a beach playing with a frisbee ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124452.jpg', 'caption': 'A man is jumping in the air catching a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124452.jpg', 'caption': 'A man in white shirt and black shorts playing frisbee in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124452.jpg', 'caption': 'A person catches a frisbee while leaping up from a lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124452.jpg', 'caption': 'A person leaps in the air to catch a Frisbee in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124452.jpg', 'caption': 'A person in the air catching a frisbee over lawn of green grass lined with trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268938.jpg', 'caption': 'a couple of zebras are standing in a green field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268938.jpg', 'caption': 'Five zebras standing around grazing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268938.jpg', 'caption': 'some zebras rocks dirt and some green grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268938.jpg', 'caption': 'A herd of zebras in a grassy field grazing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268938.jpg', 'caption': 'A picture of a group of zebras in a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424422.jpg', 'caption': 'a couple of men that are walking around on some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424422.jpg', 'caption': 'Two young men in a green park playing with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424422.jpg', 'caption': 'Two men are playing with a toy in a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424422.jpg', 'caption': 'A couple of men standing on top of a lush green forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424422.jpg', 'caption': 'Two men standing in a grassy field with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361623.jpg', 'caption': 'A young man tossing a frisbee in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361623.jpg', 'caption': 'A man is playing with a frisbee in the park. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361623.jpg', 'caption': 'Man in grey shirt throwing a red frisbee at the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361623.jpg', 'caption': 'A man is playing frisbee amidst the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361623.jpg', 'caption': 'The young man in shorts tosses the frisbee to his partner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536120.jpg', 'caption': 'A man throwing a Frisbee in a parkland', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536120.jpg', 'caption': 'The man throws the red frisbee in the open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536120.jpg', 'caption': 'A woman standing in the background with a frisbee coming toward her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536120.jpg', 'caption': 'A young person throwing a frisbee while standing on a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536120.jpg', 'caption': 'A person is at the park with a red frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211837.jpg', 'caption': 'A large number of zebras running in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211837.jpg', 'caption': 'A herd of zebra running across a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211837.jpg', 'caption': 'A herd of zebra moving in a line across a savannah.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211837.jpg', 'caption': 'Herd of zebras in a long line in tall brown grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211837.jpg', 'caption': 'A herd of zebra walking across a dry grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522702.jpg', 'caption': 'A zebra standing on a lush green field next to a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522702.jpg', 'caption': 'Lone zebra pacing in a small zoo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522702.jpg', 'caption': 'A zebra carefully walking around in a zoo pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522702.jpg', 'caption': 'A zebra standing in an enclosed grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522702.jpg', 'caption': 'a close up of a zebra walking on a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557114.jpg', 'caption': 'A zebra standing in the middle of a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557114.jpg', 'caption': 'The zebra is standing near the leaves outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557114.jpg', 'caption': 'A young zebra standing in a shady spot by a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557114.jpg', 'caption': 'a zebra standing next to a big tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557114.jpg', 'caption': 'A zebra standing in front of a fence on a sunny day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277498.jpg', 'caption': 'Two zebras standing around, one is eating grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277498.jpg', 'caption': 'Two zebras are eating grass and standing outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277498.jpg', 'caption': 'A zebra eating in the middle of an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277498.jpg', 'caption': 'Two zebras are in a pen eating grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277498.jpg', 'caption': 'Zebra in a cage at a zoo next to lots of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507714.jpg', 'caption': 'Three zebras grazing in a grassy field next to shadow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507714.jpg', 'caption': 'Three zebras at the zoo eating hay off the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507714.jpg', 'caption': 'Two adults and one young zebra eating grass side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507714.jpg', 'caption': 'Two large and one small zebra eat some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507714.jpg', 'caption': 'a little zebra eating grass next to two bigger zebras', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225715.jpg', 'caption': 'The room was clean with the bed neatly made. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225715.jpg', 'caption': 'A neatly made bed with a red sheet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225715.jpg', 'caption': 'This hotel room has a king size bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225715.jpg', 'caption': 'There is a large bed made with white sheets and a table on each side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225715.jpg', 'caption': 'A Large bed with a red blanket with vine print on it in a white room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493704.jpg', 'caption': 'The woman is riding her horse on the beach by the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493704.jpg', 'caption': 'A person riding a horse in a big open sandy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493704.jpg', 'caption': 'an image of a person on a horse walking on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493704.jpg', 'caption': 'A person riding a white horse on what looks like a sandy beach while a couple of other people are walking on foot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493704.jpg', 'caption': 'A person riding a horse on the beach, silhouetted against a light sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463722.jpg', 'caption': 'A woman is carrying a large flag while riding a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463722.jpg', 'caption': 'Person rides on a horse while holding a large flag on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463722.jpg', 'caption': 'A child sitting on a horse holding a flag on a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463722.jpg', 'caption': 'A person riding a white horse carrying a flag with a stadium full of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463722.jpg', 'caption': 'Photograph of an outdoor arena that looks neat.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287235.jpg', 'caption': 'A cop riding on the back of a brown horse down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287235.jpg', 'caption': 'A man riding a brown horse in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287235.jpg', 'caption': 'A police officer is riding a horse down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287235.jpg', 'caption': 'An officer is on a large brown horse as a man with a bike is next to them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287235.jpg', 'caption': 'A street with a police officer riding a horse in front of storefronts and pedestrians on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518249.jpg', 'caption': 'Downtown intersection of large city with pedestrians and vehicles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518249.jpg', 'caption': 'A group of people standing on the corner of the sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518249.jpg', 'caption': 'A horse with a child on top is standing on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518249.jpg', 'caption': 'A car going down the street while people walk down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518249.jpg', 'caption': 'A woman walking next to a horse on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201859.jpg', 'caption': 'A few cars waiting for their turn to drive around the corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201859.jpg', 'caption': 'A intersection with little traffic surrounded by tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201859.jpg', 'caption': 'Cars stopped at an intersection waiting to proceed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201859.jpg', 'caption': 'Several cars at an intersection with buildings in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201859.jpg', 'caption': 'Pedestrian crossing on a slow city road with few cars. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026665.jpg', 'caption': 'A herd of zebras standing together in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026665.jpg', 'caption': 'Herd of zebras standing on a rocky field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026665.jpg', 'caption': 'A herd of zebras standing in a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026665.jpg', 'caption': 'A group of zebras stand together on the rocky ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026665.jpg', 'caption': 'a close up of a number of zebras on a dirt ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060340.jpg', 'caption': 'A zebra in front of a group of large rocks standing next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060340.jpg', 'caption': 'A zebra stands under a tree at the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060340.jpg', 'caption': 'A zebra standing beside a tree at the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060340.jpg', 'caption': 'A zebra standing next to a tree on a dirt lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060340.jpg', 'caption': 'A black and white zebra stands next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381213.jpg', 'caption': 'No image is being shown on the page right now.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381213.jpg', 'caption': 'A zebra standing in the middle of a dirt area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381213.jpg', 'caption': 'Three zebras can be seen grazing in a zoo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381213.jpg', 'caption': 'A group of zebras grazing in an enclosed area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381213.jpg', 'caption': \"Zebra's looking for food in a sanded area \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380892.jpg', 'caption': 'A brown horse standing on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380892.jpg', 'caption': 'A horse grazes from grass next to Teton Village', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380892.jpg', 'caption': 'Two horses fenced in grazing on the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380892.jpg', 'caption': 'Horses roam around a field alongside a village.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000380892.jpg', 'caption': 'A horse and a cow are walking in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551602.jpg', 'caption': 'A lone zebra is eating grass in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551602.jpg', 'caption': 'A zebra eats grass in a tree filled field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551602.jpg', 'caption': 'A zebra eats vegetation in a fenced, grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551602.jpg', 'caption': 'A zebra foraging for grass among dead branches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551602.jpg', 'caption': 'A zebra is eating grass next to sticks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496450.jpg', 'caption': 'A row of wagons being pulled by horses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496450.jpg', 'caption': 'A wagon train traveling through a forest with tourists.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496450.jpg', 'caption': 'A view of a horse pulling a carriage with tons of people in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496450.jpg', 'caption': 'Horse drawn wagons with passengers pulled on path in forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496450.jpg', 'caption': 'A line of horse pulled carriages on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407057.jpg', 'caption': 'Vintage picture of a man and a horse on the farm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407057.jpg', 'caption': 'A man standing in the dirt behind a horse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407057.jpg', 'caption': 'A horse pulling a plow for a man in what appears to be a vintage photo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407057.jpg', 'caption': 'A picture of a farmer and a horse plowing the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407057.jpg', 'caption': 'A man standing behind a horse on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078499.jpg', 'caption': 'Horses standing and laying down in the grass on a hill above a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078499.jpg', 'caption': 'a number of horses on a hill with mountains in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078499.jpg', 'caption': 'Several horse are in a meadow by a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078499.jpg', 'caption': 'Horses standing and laying in grass near a body of water and a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078499.jpg', 'caption': 'A group of horses standing on top of a lush green hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196344.jpg', 'caption': 'A group of horses standing around in a field, grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196344.jpg', 'caption': 'Horses in a field with mountains in the back ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196344.jpg', 'caption': 'Several horses can be seen on the rolling hills.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196344.jpg', 'caption': 'there are many horses that can be seen on this field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196344.jpg', 'caption': 'A group of many horses going about in a grassy meadow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445417.jpg', 'caption': 'Jockeys racing horses on a track during a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445417.jpg', 'caption': 'A group of jockeys riding horses around a track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445417.jpg', 'caption': 'The horses are racing around the track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445417.jpg', 'caption': 'Several people are riding in a horse race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445417.jpg', 'caption': 'A group of men that are riding on horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237326.jpg', 'caption': 'Racers racing on their horses around a track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237326.jpg', 'caption': 'Horses racing around a race track lined with yellow flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237326.jpg', 'caption': 'A group of horse racers approaching a turn on the track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237326.jpg', 'caption': 'A round track has many jockeys wearing different colors riding horses around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237326.jpg', 'caption': 'A group of horses racing down a track next to a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566276.jpg', 'caption': 'Four children standing behind a fence petting a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566276.jpg', 'caption': 'a man that is sitting on a horse with kids near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566276.jpg', 'caption': 'A man sitting on a horse while rubbing him and kids are rubbing him also.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566276.jpg', 'caption': 'A jockey sitting on a horse while several kids reach up to pet it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566276.jpg', 'caption': 'A jockey on a horse allows children to pet it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156232.jpg', 'caption': 'Two people in yellow vests and helmets riding horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156232.jpg', 'caption': 'Two people in neon vests ride Clydesdale horses. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156232.jpg', 'caption': 'Some people are riding horses on a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156232.jpg', 'caption': 'Two men that are sitting on top of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156232.jpg', 'caption': 'A couple of cops riding on the back of horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074460.jpg', 'caption': 'a couple of horses grazing on some green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074460.jpg', 'caption': 'A couple of horses standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074460.jpg', 'caption': 'Two horses eating grass in the middle of a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074460.jpg', 'caption': 'Two gray colored horses grazing in a field of short cut grass, with trees and a white fence in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074460.jpg', 'caption': 'Two horses grazing together in a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326913.jpg', 'caption': 'A couple of animals that are walking around the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326913.jpg', 'caption': 'Horses are grazing in a grassy area with trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326913.jpg', 'caption': 'A field and trees with several horses grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326913.jpg', 'caption': 'Several horses milling about under trees eating grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326913.jpg', 'caption': 'A white horse standing next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529981.jpg', 'caption': 'Many horses stand in a field and eat grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529981.jpg', 'caption': 'A lot of animals that are in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529981.jpg', 'caption': 'Horses are eating the grass in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529981.jpg', 'caption': 'A herd of horses grazing in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529981.jpg', 'caption': 'many horses in a field eating grass with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184313.jpg', 'caption': 'A horse drawn carriage standing in front of a city building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184313.jpg', 'caption': 'A horse and carriage going down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184313.jpg', 'caption': 'A horse drawn carriage going down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184313.jpg', 'caption': 'A street intersection with horse and carriage on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184313.jpg', 'caption': 'A man driving a horse carriage on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364586.jpg', 'caption': 'A black horse that is tied up eating grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364586.jpg', 'caption': 'A photo of a black miniature horse eating grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364586.jpg', 'caption': 'A black horse is eating some hay in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364586.jpg', 'caption': 'A black and white shaggy horse grazing on hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364586.jpg', 'caption': 'A black scruffy- looking horse is grazing in the straw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359239.jpg', 'caption': 'a close up of a pizza on a plate with knives and forks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359239.jpg', 'caption': 'The cheese pizza is on the plate ready to eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359239.jpg', 'caption': 'The gourmet pizza is uneaten on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359239.jpg', 'caption': 'A pizza topped on a pizza pan on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359239.jpg', 'caption': 'a pizza on a white plate and some silverware', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184181.jpg', 'caption': 'A man holding a giant banana while riding a scooter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184181.jpg', 'caption': 'A person on a scooter in a gorilla suit with a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184181.jpg', 'caption': 'A man in a gorilla suit holding a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184181.jpg', 'caption': 'Someone in a gorilla suit on a scooter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184181.jpg', 'caption': 'Man in a gorilla suit holds an inflatable banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074241.jpg', 'caption': 'A group of jet skiers being pulled across the lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074241.jpg', 'caption': 'Three people water skiing at the same time while folks in another boat watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074241.jpg', 'caption': 'a few skiiers that are in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074241.jpg', 'caption': 'Water skiers in river with boat full of people nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074241.jpg', 'caption': \"A group of people on ski's inside of the water.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473299.jpg', 'caption': 'A man riding a snowboard on top of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473299.jpg', 'caption': 'A person on a snowboard riding it in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473299.jpg', 'caption': 'People riding down the side of a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473299.jpg', 'caption': 'A pair of skiers on a snowy hillside dressed for cold weather.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473299.jpg', 'caption': 'A person rides a snowboard in a forest setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267709.jpg', 'caption': 'The snowboarders are posing for a picture on the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267709.jpg', 'caption': 'Two people are standing on the snow on a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267709.jpg', 'caption': 'Two snowboarders celebrating their day on the slopes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267709.jpg', 'caption': 'Two snowboarders posing on a snow covered landscape. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267709.jpg', 'caption': 'A couple of people with snowboards in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539777.jpg', 'caption': 'Different fruits are being served on a long, white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539777.jpg', 'caption': 'This is a contemporary photo with fruit on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539777.jpg', 'caption': 'Kiwi fruit, banana, apples and an avocado in a dish', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539777.jpg', 'caption': 'A white oblong serving dish has four kiwis, a banana, two apples and an avocado in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539777.jpg', 'caption': 'A dish of fruit which includes apples, and bananas among others.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030992.jpg', 'caption': 'there is a male baseball player that is at bat at a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030992.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030992.jpg', 'caption': 'a batter, catcher and umpire during a baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030992.jpg', 'caption': 'A baseball player holding a bat next to a base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030992.jpg', 'caption': 'A young man holding a baseball bat at home plate, the ball passing him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080357.jpg', 'caption': 'The carrot cake has white frosting and is sprinkled with walnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080357.jpg', 'caption': 'A close up of a piece of cake on a plate with a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080357.jpg', 'caption': 'A nice thick piece of fattening and delicious carrot cake looks very tempting..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080357.jpg', 'caption': 'A piece of half-eaten cake sits on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080357.jpg', 'caption': 'A piece of cake is half eaten on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381204.jpg', 'caption': 'A closeup of an apple in the foreground with three oranges in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381204.jpg', 'caption': 'A close up of some pieces of fruit, an apple and oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381204.jpg', 'caption': 'An apple in front of three oranges. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381204.jpg', 'caption': 'A closeup of an apple and some oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381204.jpg', 'caption': 'A bunch of apples and oranges sitting together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226008.jpg', 'caption': 'A couple of people riding a jet-ski on top of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226008.jpg', 'caption': 'Two people wearing life jackets on a watercraft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226008.jpg', 'caption': 'These two women are hurtling through the water on a Jet Ski.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226008.jpg', 'caption': 'two people riding a see doo in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226008.jpg', 'caption': 'Two people sitting on a jet ski while riding through the lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277761.jpg', 'caption': 'A baseball player taking a swing at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277761.jpg', 'caption': 'An umpire behind a batter hitting a ball at a baseball game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277761.jpg', 'caption': 'A man dressed in a baseball uniform swinging a bat at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277761.jpg', 'caption': 'A man hits a ball with a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277761.jpg', 'caption': 'A baseball player hitting a baseball in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218608.jpg', 'caption': 'Ants that are in selling oranges on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218608.jpg', 'caption': 'Four oranges stuffed with chocolate ice cream sitting in a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218608.jpg', 'caption': 'A fruit with chocolate stuffed inside of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218608.jpg', 'caption': 'a close up of oranges ith something stuffed inside them ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218608.jpg', 'caption': 'Several cut oranges with brown cake falling out from inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188752.jpg', 'caption': 'Two bunches of bananas at a market stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188752.jpg', 'caption': 'Bundles of bananas hanging on a rope at a farmers market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188752.jpg', 'caption': 'A vendor with his vegetables with bananas on a string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188752.jpg', 'caption': 'The two bunches of bananas are hanging from the ceiling on a string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188752.jpg', 'caption': 'Bunches of bananas are hung on a string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303607.jpg', 'caption': 'Two children hold large crocheted stockings on Christmas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303607.jpg', 'caption': 'Two kids that are standing in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303607.jpg', 'caption': 'Two small children are holding large knit stockings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303607.jpg', 'caption': 'Couple of young children holding large stockings on Christmas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303607.jpg', 'caption': 'two children standing holding stalkings in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417857.jpg', 'caption': 'A baseball player holding a bat while standing next to other players.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417857.jpg', 'caption': 'A baseball game going on while people watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417857.jpg', 'caption': 'Catcher and batter ready for baseball to be thrown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417857.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417857.jpg', 'caption': 'A man holding a baseball bat in front of a man with a glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236272.jpg', 'caption': 'A baseball player swinging his bat at a baseball game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236272.jpg', 'caption': 'A baseball player has just swung his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236272.jpg', 'caption': 'A baseball hitter swinging his bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236272.jpg', 'caption': 'A baseball player playing on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236272.jpg', 'caption': 'A baseball batter swinging at a baseball pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358624.jpg', 'caption': 'An orange being held up to a christmas tree bulb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358624.jpg', 'caption': 'A hand holding a large orange next to a Christmas tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358624.jpg', 'caption': 'A person holding an orange in front of a decorated tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358624.jpg', 'caption': 'A person holding a orange next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358624.jpg', 'caption': 'an orange is held in front of a christmas tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118417.jpg', 'caption': 'A plate of food containing fruit, bread, cheese and an egg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118417.jpg', 'caption': 'An egg on top of bread that is surrounded by orange slices and bacon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118417.jpg', 'caption': 'Plate filled with toasted bread, orange slices and bacon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118417.jpg', 'caption': 'A hot dog with cream, oranges and strawberries on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118417.jpg', 'caption': 'The plate has bread, orange slices, and a fried egg on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552503.jpg', 'caption': 'Three pots of bright colorful food cooking on a black stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552503.jpg', 'caption': 'A group of big metal pots filled with colorful food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552503.jpg', 'caption': 'A black stove with several pots of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552503.jpg', 'caption': 'A group of different types of pots on a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552503.jpg', 'caption': 'Three pans filled with food sitting on a stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364343.jpg', 'caption': 'A very tasty looking fruit salad on a piece of pita bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364343.jpg', 'caption': 'A plate of sliced fruit on top of a tortilla.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364343.jpg', 'caption': 'A combination of raw mixed fruit on a flat, open pastry shell.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364343.jpg', 'caption': 'A plate with a crepe covered with fresh cut fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364343.jpg', 'caption': 'A fruit salad piled on top of flat bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411871.jpg', 'caption': 'Remnants of a meal sit on a square plate on a colorful surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411871.jpg', 'caption': 'A fork lying on a mostly empty plates with some shrimp shells left behind and a single pepper strip', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411871.jpg', 'caption': 'A plate with shells and one piece of vegetable.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411871.jpg', 'caption': 'A plate of half eaten food with a fork on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411871.jpg', 'caption': 'A dirty dish on a table at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392365.jpg', 'caption': 'A team of baseball players stand in a field and visit and wait.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392365.jpg', 'caption': 'A group of boys wearing baseball uniforms stand on a baseball field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392365.jpg', 'caption': 'A group of baseball players in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392365.jpg', 'caption': 'Members of a baseball team stand on a lawn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392365.jpg', 'caption': 'Men on a baseball team standing together on the playing field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575915.jpg', 'caption': 'A piece of pizza sitting on top of a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575915.jpg', 'caption': 'a green plate sitting on a table with a piece of half eaten food on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575915.jpg', 'caption': 'a close up of a small piece of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575915.jpg', 'caption': 'Large white and green plate with a single piece of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575915.jpg', 'caption': 'A white plate with a half eaten piece of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038572.jpg', 'caption': 'A man is performing in a tank with dolphins', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038572.jpg', 'caption': 'a woman is riding two dolphins in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038572.jpg', 'caption': 'A woman riding a dolphin while people watch her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038572.jpg', 'caption': 'An animal trainer rides two captive dolphins by standing on their heads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038572.jpg', 'caption': 'A woman standing on two dolphins holding a harness in a pool of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262608.jpg', 'caption': 'an image of food items including meat and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262608.jpg', 'caption': 'A meal is being displayed on a dinner plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262608.jpg', 'caption': 'A plate containing pork chops, rice, broccoli and carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262608.jpg', 'caption': 'A plate filled with meat veggies and potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262608.jpg', 'caption': 'Plate made up of meat and a variety of vegetables. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483545.jpg', 'caption': 'A counter topo filled with different types of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483545.jpg', 'caption': 'an image of a variety of vegetables on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483545.jpg', 'caption': 'Fresh organic vegetables and herbs from the garden', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483545.jpg', 'caption': 'A bunch of various vegetables spread out on a snowflake table cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483545.jpg', 'caption': 'Fresh fruits and vegetables sit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533976.jpg', 'caption': 'The young girl is sitting at the table eating a piece of cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533976.jpg', 'caption': 'A girl in yellow dress eating a piece of cake on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533976.jpg', 'caption': 'A little girl eating a piece of cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533976.jpg', 'caption': 'a girl eating a piece of cake from a pink princess plate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533976.jpg', 'caption': 'A person sitting at a table with some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525118.jpg', 'caption': 'A pile of un ripe bananas sitting on a table on newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525118.jpg', 'caption': 'A bundle of fruit on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525118.jpg', 'caption': 'Green plantain sitting on newspaper on a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525118.jpg', 'caption': 'A dining room table with a large stack of unpeeled bananas set on a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525118.jpg', 'caption': 'A big bunch of green bananas is on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021905.jpg', 'caption': 'A man on a snowboard flying through the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021905.jpg', 'caption': 'A snowboarder is flying through the air, trailing snow behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021905.jpg', 'caption': 'Snowy powder is around a man in the air on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021905.jpg', 'caption': 'A snowboarder is over the snow by a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021905.jpg', 'caption': 'Snowboarder jumping over a street with a backdrop of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559948.jpg', 'caption': 'A skier that has just made a jump in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559948.jpg', 'caption': 'a person on skis riding through the snow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559948.jpg', 'caption': 'a snow skier stirring up the snow in his jump', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559948.jpg', 'caption': 'Skier doing jump off a small snow mound in a red jacket', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000537128.jpg', 'caption': 'A smiling, young couple snuggling cheek to cheek ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537128.jpg', 'caption': 'A man snuggling up to a woman with a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537128.jpg', 'caption': 'A smiling woman pressing her head against a mans head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537128.jpg', 'caption': 'a man and woman pose for a picture ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537128.jpg', 'caption': 'a man and woman are face to face for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034786.jpg', 'caption': 'A man dressed as a town fryer walking across the street using a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034786.jpg', 'caption': 'a man dressed in a red jacket and tri point hat walking down the road talking on a cell phone\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034786.jpg', 'caption': 'An older man in a pirate outfit is walking down the street in a big city while talking on the phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034786.jpg', 'caption': 'a man wearing a small pirates hat walks across the street while on his cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034786.jpg', 'caption': 'The man is wearing a pirate hat, talking on the phone, and walking down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284400.jpg', 'caption': 'Two hands holding and dialing a cellular phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284400.jpg', 'caption': 'Someone is using their phone to send a text or play a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284400.jpg', 'caption': 'someone is holding an iphone or an ipod', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284400.jpg', 'caption': 'Busy thumbs type a text message on a mobile phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284400.jpg', 'caption': 'Hands holding a cell phone with fingers in motion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408201.jpg', 'caption': 'A man on a cellphone near two other men.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408201.jpg', 'caption': 'a group of men checking out their cell phones ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408201.jpg', 'caption': 'A man in a grey jacket, a man in a long-sleeved green shirt and a man in a black coat holding their cellphones. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408201.jpg', 'caption': 'Three men stand in a group, all looking at cell phones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408201.jpg', 'caption': 'an image of a man that is holding a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174503.jpg', 'caption': 'The woman has her cellphone strapped to her head using a rubber band. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174503.jpg', 'caption': 'A woman with a phone held to her head with a rubber band.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174503.jpg', 'caption': 'A woman with a make shift cell phone head set containing a rubber band.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174503.jpg', 'caption': 'A woman has yet to learn that a rubber band strapped to your head does not a hands-free headset make. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174503.jpg', 'caption': 'A woman keeps a cell phone at her right ear with a rubber band around her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297269.jpg', 'caption': 'A microwave oven sitting on top of a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297269.jpg', 'caption': 'a microwave is on a table by a doorway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297269.jpg', 'caption': 'A microwave on a counter in front of a glass sliding door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297269.jpg', 'caption': 'There are glass sliding doors and a microwave on a counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297269.jpg', 'caption': 'There are no doors in that entry way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036082.jpg', 'caption': 'a kitchen with a small refrigerator and a microwave oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036082.jpg', 'caption': 'A microwave sitting on top of a mini fridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036082.jpg', 'caption': 'A microwave oven sitting on top of a refrigerator in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036082.jpg', 'caption': 'A yellow kitchen contains a small refrigerator and microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036082.jpg', 'caption': 'A microwave sits on top of a mini fridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415958.jpg', 'caption': 'A woman looks around a very small kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415958.jpg', 'caption': 'A woman standing in an old fashioned kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415958.jpg', 'caption': 'A woman is looking at a sink in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415958.jpg', 'caption': 'A woman in a blue shirt standing in a small kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415958.jpg', 'caption': 'A woman wearing a dark dress stands near a dismally small kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570515.jpg', 'caption': 'a male in a gray shirt is moving a pot in the oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570515.jpg', 'caption': 'A man is preparing a pot of food in a top oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570515.jpg', 'caption': 'A man putting a pan inside of an oven with a light on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570515.jpg', 'caption': 'A man is placing a cooking pot into an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570515.jpg', 'caption': 'A smiling man is next to an open oven with a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545250.jpg', 'caption': 'There are refrigerators lined up to be trashed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545250.jpg', 'caption': 'A bunch of trashed and old refrigerators in a dump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545250.jpg', 'caption': 'Old refrigerators await disposal as heavy machinery works in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545250.jpg', 'caption': 'A row of junked or abandoned refrigerators are shown outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545250.jpg', 'caption': 'A group of abandoned refrigerators standing side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092738.jpg', 'caption': 'A young boy looks in the fridge with mom and grandma', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092738.jpg', 'caption': 'people standing in the kitchen with the fridge door open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092738.jpg', 'caption': 'A couple of women standing with a boy inside of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092738.jpg', 'caption': 'Two woman and a boy in the kitchen with the fridge open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092738.jpg', 'caption': 'Why does everyone want to go to the refrigerator at the same time?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358653.jpg', 'caption': 'The inside of a kitchen with different appliances', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358653.jpg', 'caption': 'There is an old fashioned blue refrigerator and ice chest in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358653.jpg', 'caption': 'TEAL BLUE OLD APPLIANCES WITH BOWL OF FRUIT AND TRASH CAN', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358653.jpg', 'caption': 'There are matching old style freezer and fridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358653.jpg', 'caption': 'The room has two teal appliances in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283963.jpg', 'caption': 'A bright blue stove looks like an antique', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283963.jpg', 'caption': 'A blue double oven has a slightly open bottom drawer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283963.jpg', 'caption': 'a close up of a stove with different cupboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283963.jpg', 'caption': 'An old fashion gas stove with dual ovens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283963.jpg', 'caption': 'The kitchen with green oven atop white tiled floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398682.jpg', 'caption': 'an old antique clock hanging on the wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398682.jpg', 'caption': 'A large round clock sits on a dim wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398682.jpg', 'caption': 'A large clock with roman numerals on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398682.jpg', 'caption': 'The inside of a building and a large clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398682.jpg', 'caption': 'Large clock sitting on the side of a wall towards the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547221.jpg', 'caption': 'An ornamental clock is covered in bright gold.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547221.jpg', 'caption': 'a golden clock statue in a glass display box', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547221.jpg', 'caption': 'An ornate golden clock is exhibited in a clean room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547221.jpg', 'caption': 'An elaborately decorated and gilded mantle clock with a mechanical figure on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547221.jpg', 'caption': 'A gold clock that is on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444100.jpg', 'caption': 'A night view of a city with illuminated skyscrapers seen from across a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444100.jpg', 'caption': 'a body of water in front of some buildings ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444100.jpg', 'caption': 'A great shot of the island with the two large, lit-up buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444100.jpg', 'caption': 'a few skyscraper buildings across the water at night', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444100.jpg', 'caption': 'View from a distance of a few tall buildings and a clock in a city at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409403.jpg', 'caption': 'Two kids making a smoothie in a blender.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409403.jpg', 'caption': 'Two children making a milkshake in a blender. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409403.jpg', 'caption': 'Two young boys making something in a blender.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409403.jpg', 'caption': 'Children mixing drinks in a blender in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409403.jpg', 'caption': 'A young girl and boy in the kitchen preparing a drink in the blender ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233315.jpg', 'caption': 'A boy is making a blender recipe with a girl looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233315.jpg', 'caption': 'A boy and a girl put ingredients into a blender.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233315.jpg', 'caption': 'a young boy filling a jar with something white out of a cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233315.jpg', 'caption': 'A young boy is adding ingredients to the mixture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233315.jpg', 'caption': 'A boy is helping a girl put ingridients in the blender. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321943.jpg', 'caption': 'Vase holding some type of flower with large pink bloom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321943.jpg', 'caption': 'A vase with round pink flowers that are partly wilting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321943.jpg', 'caption': 'a pink flower in an blue designed bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321943.jpg', 'caption': 'Two pink flowers sit in a light blue vase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321943.jpg', 'caption': 'Pink flowers sitting in a blue vase on a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220224.jpg', 'caption': 'The top of a building with a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220224.jpg', 'caption': 'A brown and white building has a clock up high in an alcove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220224.jpg', 'caption': 'A view of a building with a clock in its tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220224.jpg', 'caption': 'a city clock on a very beautiful house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220224.jpg', 'caption': 'A large building with a clock hanging above several bells.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158993.jpg', 'caption': 'A large clock on a wall in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158993.jpg', 'caption': 'A German clock on a wall with a German quote about time. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158993.jpg', 'caption': 'A metal clock on the wall of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158993.jpg', 'caption': 'A clock on the wall shows 11:55 with the words \"IST NOCH ... ZEIT\" above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158993.jpg', 'caption': 'A clock on the wall with German words above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454543.jpg', 'caption': 'A baby watches as a ping pong ball floats over a hair dryer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454543.jpg', 'caption': 'A little boy that is standing up with his hand on a hair dryer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454543.jpg', 'caption': 'there is a small baby boy playing with a white ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454543.jpg', 'caption': 'A small boy watches a ball go up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454543.jpg', 'caption': 'A child testing the air flow of a hair dryer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410225.jpg', 'caption': 'a close up of a plastic container of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410225.jpg', 'caption': 'Laptops surrounding a bowl and a cup on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410225.jpg', 'caption': 'A half eaten meal in a bowl near some laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410225.jpg', 'caption': 'A table topped with a soft drink cup next to a bowl of salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410225.jpg', 'caption': 'A food container and drink surrounded by Apple laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447043.jpg', 'caption': 'a building with two clocks and another clock on the tower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447043.jpg', 'caption': 'A stone clock tower soars into the blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447043.jpg', 'caption': 'A large clock and bell tower that is adjacent to a church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447043.jpg', 'caption': 'A large tall tower with a clock on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447043.jpg', 'caption': 'We are looking at a clock tower on an old animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033499.jpg', 'caption': 'Closeup of a black and gold clock with blue sky in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033499.jpg', 'caption': 'a clock on a pole with a sky background ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033499.jpg', 'caption': 'A clock tower reads the time as 3:00.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033499.jpg', 'caption': 'Old clock showing the time against the sky in the afternoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033499.jpg', 'caption': 'An ornate outdoor clock with streetlamps above and below it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456178.jpg', 'caption': 'a pole with a clock on the top of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456178.jpg', 'caption': 'The view taken up a city street with no cars on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456178.jpg', 'caption': 'A clock sitting in the middle of a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456178.jpg', 'caption': 'There is a large clock displayed on a poll in this urban area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456178.jpg', 'caption': 'a clock on a pole on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265596.jpg', 'caption': 'A wooden table with a white plate containing cake and a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265596.jpg', 'caption': 'A picture of a cup of coffee and a plate of cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265596.jpg', 'caption': 'A piece of cake and a cup of coffee are sitting on plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265596.jpg', 'caption': 'A decorative plate with a piece of cake on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265596.jpg', 'caption': 'Looking down at a cup of coffee and a piece of cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225261.jpg', 'caption': 'Broken stand-up clock lying on a cluttered floor.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225261.jpg', 'caption': 'A clock in a wood box with a hanging pendulum.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225261.jpg', 'caption': 'a small cock with a pendulum in the bottom part in it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225261.jpg', 'caption': 'Wooden grandfather clock with a pendulum bob at the bottom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225261.jpg', 'caption': 'A wooden grandfather clock with a pendulum bob at the bottom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032375.jpg', 'caption': 'Two teddy bears on a couch with a pillow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032375.jpg', 'caption': 'Two white teddy bears sitting next to each other on a bed covered in pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032375.jpg', 'caption': 'Two Teddy bears sit next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032375.jpg', 'caption': 'Two teddy bears one larger than the other sit on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032375.jpg', 'caption': 'The two eddy bears are leaning on the purplish pillows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393768.jpg', 'caption': 'A shelf topped with golden clocks behind a plate of glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393768.jpg', 'caption': 'a old looking clock in a room on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393768.jpg', 'caption': 'Several ornate clocks are showcased on a shelf behind glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393768.jpg', 'caption': 'A antique clock store with clocks for sale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393768.jpg', 'caption': 'Ornate clocks on display behind a glass case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496102.jpg', 'caption': 'A clock tower stands above an old building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496102.jpg', 'caption': 'A stone building with a clock attached to the steeple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496102.jpg', 'caption': 'A stone building with lots of windows, lights and a clock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496102.jpg', 'caption': 'A stone building with a clock tower is shown from a low angle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496102.jpg', 'caption': 'A large old building with a clock attached to the outside of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382973.jpg', 'caption': 'A child is smiling for the camera while outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382973.jpg', 'caption': 'A young child smiles for the camera while a tall clock tower dominates behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382973.jpg', 'caption': 'A child is smiling next to a tower with a clock on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382973.jpg', 'caption': 'A girl making a face near a large clocktower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382973.jpg', 'caption': 'A child on a bench with a clock tower in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487141.jpg', 'caption': 'The thin vase on a table has flowers in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487141.jpg', 'caption': 'black and white image of flower buds in a vase on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487141.jpg', 'caption': 'a vase with some flowers near a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487141.jpg', 'caption': 'A flower vase is holding a bunch of white flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487141.jpg', 'caption': 'A vase containing flowers is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478812.jpg', 'caption': 'a person holding on to a small pair of scissors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478812.jpg', 'caption': 'A woman is opening up the blades of a small pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478812.jpg', 'caption': 'a close up of a person doing something with their hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478812.jpg', 'caption': 'a ladies hand holding a tiny pair scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478812.jpg', 'caption': 'A person holding an open pair of very small scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299349.jpg', 'caption': 'A hand holds a collection of orange and blue scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299349.jpg', 'caption': 'A person his holding an assortment of blue and orange scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299349.jpg', 'caption': 'a person holds a bunch of scissors in their hands ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299349.jpg', 'caption': 'A hand is holding a group of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299349.jpg', 'caption': 'a close up of a person holding a number of scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034080.jpg', 'caption': 'A small pair of scissors sitting next to a penny.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034080.jpg', 'caption': 'A large pair of baby blue scissors sitting next to a coin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034080.jpg', 'caption': 'A small pair of scissors laying next to a penny.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034080.jpg', 'caption': 'The scissors are laying beside of the coinm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034080.jpg', 'caption': 'a tiny pair of scissors next to a coin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198992.jpg', 'caption': 'A pair of red scissors on a white surface. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198992.jpg', 'caption': 'The handle on this pair of scissors is red plastic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198992.jpg', 'caption': 'The handle of the scissors are bright red.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198992.jpg', 'caption': 'A pair of red scissors sitting on top of a white surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198992.jpg', 'caption': 'A pair of bright red handled scissors are being photographed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201120.jpg', 'caption': 'A table topped with pieces of cloth and large piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201120.jpg', 'caption': 'A white piece of paper and a pair of scissors on top of colored pieces of fabric.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201120.jpg', 'caption': 'A piece of paper and some scissors on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201120.jpg', 'caption': 'A table with a number of fabrics in different colors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201120.jpg', 'caption': 'A table displaying linens of assorted colors next to some scissors and paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326658.jpg', 'caption': 'A white poster board with scissors and pieces of cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326658.jpg', 'caption': 'A sheet of white paper with a pair of scissors on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326658.jpg', 'caption': 'a blank canvas with a pair of scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326658.jpg', 'caption': 'A pair of scissors with white handles sits on a white piece of paper near several sheets of flannel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326658.jpg', 'caption': 'A large white sheet of cardboard on top of colored fabrics.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497031.jpg', 'caption': 'A child cuts pieces of pink fabric with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497031.jpg', 'caption': 'A young man sitting at a table holding a piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497031.jpg', 'caption': 'A person in green shirt using scissors at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497031.jpg', 'caption': 'person cutting paper with scissors at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497031.jpg', 'caption': 'A person wearing a tshirt is cutting a piece of paper using scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194595.jpg', 'caption': 'a person at an office supply store holding a pair of scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194595.jpg', 'caption': 'Scissors with a blue handle are in a plastic package. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194595.jpg', 'caption': 'Someone holding a package of scissors with multiple blades.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194595.jpg', 'caption': 'A pair of scissors with multiple blades in a package', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000194595.jpg', 'caption': 'A pair of brand new scissors with more then one blade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433924.jpg', 'caption': 'A woman holding a scissor close to her hair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433924.jpg', 'caption': 'We are looking through a pair of opened scissors at a young woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433924.jpg', 'caption': 'The woman is getting ready to cut her bangs with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433924.jpg', 'caption': 'A woman holding a pair of scissors in front of her face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433924.jpg', 'caption': 'A woman holding a pair of scissors near her hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117404.jpg', 'caption': 'A little girl sitting on her dads back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117404.jpg', 'caption': 'A little girl riding on someones shoulders with her butt crack exposed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117404.jpg', 'caption': 'A man holding a girl on his shoulders looking at the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117404.jpg', 'caption': 'A young child holding a teddy bear and sitting on a adults shoulders.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117404.jpg', 'caption': 'a child riding on the shoulders of an adult', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178795.jpg', 'caption': 'a table top with some plates of food on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178795.jpg', 'caption': 'Plates of partially eaten food at the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178795.jpg', 'caption': 'Two plates of breakfast foods on a restaurant table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178795.jpg', 'caption': 'Several plates of partially eaten food with silverware.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178795.jpg', 'caption': 'Two plates with food sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031368.jpg', 'caption': 'A group of people eat a meal at an outdoor event', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031368.jpg', 'caption': 'A young man is making a silly face while eating. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031368.jpg', 'caption': 'Man smiling with food and hands squeezing ketchup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031368.jpg', 'caption': 'Two men at a blue table eating food that includes eggs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031368.jpg', 'caption': 'A person is smiling next to someone pouring ketchup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067686.jpg', 'caption': 'The restaurant presents a gourmet breakfast of eggs and toast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067686.jpg', 'caption': 'A full plate of dessert, bread, and a veggie pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067686.jpg', 'caption': 'A breakfast plate containing eggs, bread and french toast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067686.jpg', 'caption': 'A plate of food that includes toast, hash browns and eggs with cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067686.jpg', 'caption': 'A cheese omelet with toast on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485290.jpg', 'caption': 'A rectangular plate with a waffle, fork and bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485290.jpg', 'caption': 'A waffle is dusted with sugar beside a bowl of gravy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485290.jpg', 'caption': 'A white plate covered in a waffle with a cup of syrup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485290.jpg', 'caption': 'a trey that have some pastries and a fork on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485290.jpg', 'caption': 'a waffle on a tray with a fork and a bowl of chocolate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043261.jpg', 'caption': 'A white table with various plates and dishes of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043261.jpg', 'caption': 'A table is covered with many dishes of various foods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043261.jpg', 'caption': 'the table is filled with lots of different foods. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043261.jpg', 'caption': 'A hand that is holding a spoon in food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000043261.jpg', 'caption': 'An individual reaching for a bowl of various vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218404.jpg', 'caption': 'A table set with place settings of food and drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218404.jpg', 'caption': 'A glittering light is shining on a table full of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218404.jpg', 'caption': 'A person at a table with plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218404.jpg', 'caption': 'A table that has various foods on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218404.jpg', 'caption': 'A table topped with lots of plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203835.jpg', 'caption': 'A bowl of berries sitting next to a bowl of salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203835.jpg', 'caption': 'A table holding two bowls of food that include strawberries and salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203835.jpg', 'caption': 'A bowl of ripe strawberries and a bowl of salad sitting on a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203835.jpg', 'caption': 'A bowl of strawberries and a bowl with tossed salad on a counter top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203835.jpg', 'caption': 'A bowl of raspberries next to a bowl of chopped salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281679.jpg', 'caption': 'Two people sitting at a table with bottles and glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281679.jpg', 'caption': 'People at wooden tables covered in beverages in frotn of a store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281679.jpg', 'caption': 'Men sitting outside drinking beverages and smiling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281679.jpg', 'caption': 'Men in sunglasses are sitting at a table smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281679.jpg', 'caption': 'Two men are smiling while wearing sunshades at an outdoor restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063231.jpg', 'caption': 'Two men sitting at a table with smiles on their faces.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063231.jpg', 'caption': 'Two men sit at a table outside and talk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063231.jpg', 'caption': 'A couple of people sitting at a table with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063231.jpg', 'caption': 'Two people are sitting at an outdoor table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063231.jpg', 'caption': 'Two men smile while sitting at a table outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155732.jpg', 'caption': 'A bowl of pudding sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155732.jpg', 'caption': 'White china bowl with pudding and cinnamon on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155732.jpg', 'caption': 'A bowl of something with a spoon it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155732.jpg', 'caption': 'A bowl of food with a spoon in it on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155732.jpg', 'caption': 'A bowl of cream wheat with a spoon in it and cinnamon on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161222.jpg', 'caption': 'A table topped with plates of food and wine glasses..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161222.jpg', 'caption': 'A dinner table with three plates of gourmet hamburgers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161222.jpg', 'caption': 'a table full of restaurant food that includes gourmet hamburgers with sweet potato fries, onion rings, and dips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161222.jpg', 'caption': 'There is a bunch of plates of gourmet meals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161222.jpg', 'caption': 'Burgers, fries and onion rings served at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013148.jpg', 'caption': 'Two men standing next to each other in front of a table full of alcohol.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013148.jpg', 'caption': 'Two men standing in front of a table of bottles and wine glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013148.jpg', 'caption': 'A table of products with two men standing behind it, one of whom is talking on a microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013148.jpg', 'caption': 'Some old men are advertising some wines to sell. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013148.jpg', 'caption': 'A man speaking into a microphone at a wine tasting event', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308487.jpg', 'caption': 'A group of people standing at a table with bottles of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308487.jpg', 'caption': 'A group with drinks posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308487.jpg', 'caption': 'A group of people posing for a picture at a corporate event', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308487.jpg', 'caption': 'A group of people toasting with a table full of bottles in front of them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308487.jpg', 'caption': 'A group of people celebrate with champagne around a table with liquor bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548729.jpg', 'caption': 'A group of people standing around a table with wine on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548729.jpg', 'caption': 'a few people that are standing by some wine bottles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548729.jpg', 'caption': 'A group of people are wine tasting at a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548729.jpg', 'caption': 'A group of people celebrating with bottles of alcohol.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548729.jpg', 'caption': 'a line of people stand behind a table with many bottles of wine as some of them sip at glasses of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381682.jpg', 'caption': 'A man holding a wine glass in order to smell the wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381682.jpg', 'caption': 'A man smelling a glass of white wine. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381682.jpg', 'caption': 'A man smells his wine before drinking it at a wine tasting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381682.jpg', 'caption': 'A man drinks out of a wine glass in a public restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381682.jpg', 'caption': 'A man is sniffing a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260818.jpg', 'caption': 'a man drinking from a glass while sitting in front of a table full of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260818.jpg', 'caption': 'A man drinks wine while sitting at a table of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260818.jpg', 'caption': 'a man takes a drink in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260818.jpg', 'caption': 'A man drinks wine at a small table with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260818.jpg', 'caption': 'A man drinking wine at dinner in a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108838.jpg', 'caption': 'People outside a building on a street with a gay crossing, girl with bicycle, and a motorcycle rider with helmut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108838.jpg', 'caption': 'a person walking with a bicycle on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108838.jpg', 'caption': 'A girl pushes her bike across the busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108838.jpg', 'caption': 'A girl waits to cross a street with her bicycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108838.jpg', 'caption': 'a woman walking her bike on the side of the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445309.jpg', 'caption': 'A woman riding a bike next to a red compact car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445309.jpg', 'caption': 'a lady riding her bike next to a red car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445309.jpg', 'caption': 'The woman is riding her bike with the traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445309.jpg', 'caption': 'A person on a bike riding by a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445309.jpg', 'caption': 'A woman riding a bicycle on a street next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140197.jpg', 'caption': 'A number of people riding bicycles in a metropolitan area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140197.jpg', 'caption': 'A group of people riding bikes down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140197.jpg', 'caption': 'a line of bikes that have people on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140197.jpg', 'caption': 'Several bike riders are traveling up a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140197.jpg', 'caption': 'Many people riding bicycles down a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184703.jpg', 'caption': 'A man walking down a street holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184703.jpg', 'caption': 'a man walking on the street using an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184703.jpg', 'caption': 'A person walking across the street in a blue umbrella with white trim in a city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184703.jpg', 'caption': 'A man that is on a sidewalk with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184703.jpg', 'caption': 'THERE ARE PEOPLE THAT ARE WALKING ON THE STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521994.jpg', 'caption': 'A young boy holding a blue surfboard in his right arm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521994.jpg', 'caption': 'A surf boarder is superimposed into a computer-generated scene.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521994.jpg', 'caption': 'a little boy posing for a picture holding a surf board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521994.jpg', 'caption': 'A boy is standing with a surfboard on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521994.jpg', 'caption': 'A young boy with a snowboard heading to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277073.jpg', 'caption': 'Two people are on a bike together traveling down the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277073.jpg', 'caption': 'She is riding on the back of that motor bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277073.jpg', 'caption': 'Group of people traveling on a busy city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277073.jpg', 'caption': 'a green and yellow car and two people on a scooter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277073.jpg', 'caption': 'A pair of people ride on a moped on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281696.jpg', 'caption': 'a road that has a bunch of bikers driving down it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281696.jpg', 'caption': 'Men who are on police motorcycles driving down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281696.jpg', 'caption': 'a number of people riding motorcycles on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281696.jpg', 'caption': 'A large group of motorcycles driving in a parade with parade onlookers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281696.jpg', 'caption': 'A group of police officers on motorcycles in a parade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115370.jpg', 'caption': 'A couple of bikers riding on top of motorcycles down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115370.jpg', 'caption': 'Two people riding on a motorcycle in the street near a gas station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115370.jpg', 'caption': 'a couple of guys riding down the road with bikes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115370.jpg', 'caption': 'Two guards look at each other while riding motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115370.jpg', 'caption': 'A LARGE CROWD OF PEOPLE SITTING ON THE SIDE OF THE STREET WATCHING A PARADE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464153.jpg', 'caption': 'A person on a red and black moped on a sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464153.jpg', 'caption': 'An Asian man riding a motor scooter on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464153.jpg', 'caption': 'A person on a scooter passing a blue garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464153.jpg', 'caption': 'a man on a scooter at the top of some steps', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464153.jpg', 'caption': 'A man riding a motor scooter on a wet road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569652.jpg', 'caption': 'a stainless steel tabletop covered in dinnerware in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569652.jpg', 'caption': 'a kitchen with many plates and bowls on a counter top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569652.jpg', 'caption': 'Kitchen area with dishes, bowels an utensils. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569652.jpg', 'caption': 'White dishes stacked on a stainless steel counter with utensils and towels hanging over head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569652.jpg', 'caption': 'There are large stacks of kitchenware neatly arranged on the stainless stail counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074135.jpg', 'caption': 'A man standing next to another man as they prepare food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074135.jpg', 'caption': 'People are preparing food in a commercial kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074135.jpg', 'caption': 'Two people in a butcher shop processing meat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074135.jpg', 'caption': 'A man and women working in a butcher shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074135.jpg', 'caption': 'Two Asian men, one of whom is preparing a large fish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071306.jpg', 'caption': 'He was standing in the kitchen by the stove talking on the telephone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071306.jpg', 'caption': 'A man standing in a kitchen talking on a telephone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071306.jpg', 'caption': 'a man talking on a regular phone in the kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071306.jpg', 'caption': 'A person wearing glasses using a land line telephone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071306.jpg', 'caption': 'A man standing alone in a small kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019456.jpg', 'caption': 'A man carefully places the food on the pan as a small crowd watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019456.jpg', 'caption': 'A man preparing food inside of a kitchen on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019456.jpg', 'caption': 'A group of people watching a man assemble some food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019456.jpg', 'caption': 'A man getting food ready while people watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019456.jpg', 'caption': 'there is a chef making food as people watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281315.jpg', 'caption': 'A group of people that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281315.jpg', 'caption': 'several people in a field with some tables and umbrellas playing Frisbee ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281315.jpg', 'caption': 'People standing in the grass playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281315.jpg', 'caption': 'A group of teens playing a game of Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281315.jpg', 'caption': 'a group of people in a field with a frisbee ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378561.jpg', 'caption': 'A red headed boy sits hugging his Black Labrador dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378561.jpg', 'caption': 'A person sitting in the grass with a dog on their lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378561.jpg', 'caption': 'A young man is sitting and holding his black dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378561.jpg', 'caption': 'A black dog sitting on a mans lap on a grassy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378561.jpg', 'caption': 'The man is sitting in the park on the grass with his large, black dog on his lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201190.jpg', 'caption': 'A woman with a braid holds her dog in her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201190.jpg', 'caption': 'A woman sitting on a bench holding onto a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201190.jpg', 'caption': 'A woman holds a dog on her lap. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201190.jpg', 'caption': 'A woman is sitting with a large dog in her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201190.jpg', 'caption': 'A woman is sitting down holding a dog in her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490286.jpg', 'caption': 'A pan full of food on top of a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490286.jpg', 'caption': 'There is a saucepan filled with liquid on top of the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490286.jpg', 'caption': 'a pot of food cooking on a stove ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490286.jpg', 'caption': 'A pot that is on the stove with some food in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490286.jpg', 'caption': 'a kitchen with a pot of soup on the stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231644.jpg', 'caption': 'A couple of people flying kites on top of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231644.jpg', 'caption': 'Some people are flying a kite at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231644.jpg', 'caption': 'People standing and some sitting on the sand of a beach with a kite flying and water in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231644.jpg', 'caption': 'A couple of people fly a kite on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231644.jpg', 'caption': 'A couple flies a kite on a large beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092678.jpg', 'caption': 'A couple flying a kite at dusk on the seaside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092678.jpg', 'caption': 'two people flying a rainbow colored kite on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092678.jpg', 'caption': 'Man and woman standing on the beach in the process of flying a kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092678.jpg', 'caption': 'A couple is flying a rainbow kite on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092678.jpg', 'caption': 'A couple flying a kite at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534659.jpg', 'caption': 'A kitchen with a metallic refrigerator and stove top oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534659.jpg', 'caption': 'View of a kitchen with stainless refrigerator and black dish washer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534659.jpg', 'caption': 'A view of a kitchen shows a gas range, sink, and refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534659.jpg', 'caption': 'A modern kitchen features several appliances, including a fridge, stove, dishwasher and microwave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534659.jpg', 'caption': 'This kitchen has wooden cabinets and silver and black appliances', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375317.jpg', 'caption': 'A black stove top oven sitting next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375317.jpg', 'caption': 'A brand new black stove in a primarily white colored kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375317.jpg', 'caption': 'A kitchen with wood cabinets and a black stove and microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375317.jpg', 'caption': 'A kitchen has wooden cabinets and a black stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375317.jpg', 'caption': 'A kitchen with a microwave over the stove and a window by the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392892.jpg', 'caption': 'a dining room table that is in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392892.jpg', 'caption': 'A kitchen with white cup boards and a brown table and chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392892.jpg', 'caption': 'a table top sitting inside of a kitchen ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392892.jpg', 'caption': 'A wooden table is sitting just outside a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392892.jpg', 'caption': 'A bright, clean, modern kitchen sports track lighting and white cabinetry. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399879.jpg', 'caption': 'A woman in a red robe is sitting at a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399879.jpg', 'caption': 'A woman in a red flowered shawl sits at a table while a man wearing jeans is in the kitchen looking at her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399879.jpg', 'caption': 'A person sits at a table and another person stands in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399879.jpg', 'caption': 'A woman is sitting at a table wearing a robe while a man is cooking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399879.jpg', 'caption': 'Man and woman in a kitchen looking in the same direction. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510707.jpg', 'caption': 'a kitchen with a big sink and a rack for the pots', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510707.jpg', 'caption': 'A kitchen sink that has pots hanging above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510707.jpg', 'caption': 'A neat and well organized kitchen is a tool in itself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510707.jpg', 'caption': 'A kitchen with two large metal sinks under a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510707.jpg', 'caption': 'A modern and bright kitchen with green walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010192.jpg', 'caption': 'A woman sitting at a table smoking cigarette.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010192.jpg', 'caption': 'A woman sits smoking at the table in a mostly blue kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010192.jpg', 'caption': 'A woman smoking a cigarette is seated at the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010192.jpg', 'caption': 'A woman sits at a wooden table smoking a cigarette.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010192.jpg', 'caption': 'A woman sits at a kitchen table smoking a cigarette.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096183.jpg', 'caption': 'A kitchen with a stove, sink, microwave and various other items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096183.jpg', 'caption': 'This is a picture of a organized kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096183.jpg', 'caption': 'A view of a kitchen with a tile backsplash', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096183.jpg', 'caption': 'A small kitchen with a stove and counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096183.jpg', 'caption': 'Small kitchen with white countertop space and a small stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568717.jpg', 'caption': 'A very roomy, clean kitchen in green and white tile. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568717.jpg', 'caption': 'A kitchen with tiled floors and counter tops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568717.jpg', 'caption': 'Functional tiled white and green kitchen with sink and stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568717.jpg', 'caption': 'A kitchen with lots of white counter space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568717.jpg', 'caption': 'A kitchen with tiles counters and a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329957.jpg', 'caption': 'A couple of girls are standing in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329957.jpg', 'caption': 'Ladies standing in a kitchen posing for the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329957.jpg', 'caption': 'Two women preparing a meal in a modern kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329957.jpg', 'caption': 'There are two woman smiling in the kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329957.jpg', 'caption': 'Two happy women smiling together in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008292.jpg', 'caption': 'A narrow kitchen with a refrigerator at the end of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008292.jpg', 'caption': 'A small kitchen with an even smaller fridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008292.jpg', 'caption': 'A long narrow kitchen with small stove and refrigerator', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008292.jpg', 'caption': 'a narrow kitchen with a white fridge at the end', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008292.jpg', 'caption': 'A skinny kitchen with a visible fridge, microwave and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048910.jpg', 'caption': 'a kitchen with a sink a shelf and a chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048910.jpg', 'caption': 'an all white kitchen with a sink and stove ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048910.jpg', 'caption': 'A kitchen with a shelf, cabinets, a sink and stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048910.jpg', 'caption': 'A home kitchen with a door leading to the living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048910.jpg', 'caption': 'A narrow kitchen with beams in the ceiling leads to a family room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157669.jpg', 'caption': 'The silver refrigerator is across the kitchen from a black stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157669.jpg', 'caption': 'An empty kitchen in a house with sunlight coming through.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157669.jpg', 'caption': 'A kitchen with a stove, sink, and fridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157669.jpg', 'caption': 'A clean kitchen with a sink, stove, and refridgerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157669.jpg', 'caption': 'View of new, unused home kitchen with ample counter space and cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321811.jpg', 'caption': 'Small woman with a cooking apron around her waste reaching into the oven and pulling out a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321811.jpg', 'caption': 'A women who is taking something out of an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321811.jpg', 'caption': 'A person holding a plate of food next to an open oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321811.jpg', 'caption': 'A woman leaning over an open over door, holding a towel and a dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321811.jpg', 'caption': 'A woman crouches to remove a dish from an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544432.jpg', 'caption': 'A group of people that are gathered around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544432.jpg', 'caption': 'A crowd of young people in a kitchen at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544432.jpg', 'caption': 'A number a girls around a table while one girl pour a mixture into a pan. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544432.jpg', 'caption': 'A classroom is gathered around a lady about to bake cupcakes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544432.jpg', 'caption': 'A group of people are being social around a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179930.jpg', 'caption': 'A man watches a giraffe eating from a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179930.jpg', 'caption': \"too dark I can't see the image here.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179930.jpg', 'caption': 'The back of a man looking at an adult giraff.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179930.jpg', 'caption': 'A man sitting in a chair watching a giraffe eat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179930.jpg', 'caption': 'A man sitting in a chair in a field next to a giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429924.jpg', 'caption': 'A boat is parked alongside a row of parked bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429924.jpg', 'caption': 'a red barge is floating in a duck filled river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429924.jpg', 'caption': 'a bunch of bikes lined up along the river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429924.jpg', 'caption': 'A large red shit sitting next to a row of bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429924.jpg', 'caption': 'A large barge docked next to a long bike parking area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012993.jpg', 'caption': 'A cyclist and bus splash past one another on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012993.jpg', 'caption': 'A bus and a bicyclist driving through a large puddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012993.jpg', 'caption': 'A bus riding through a puddle of water near a man on a bicycle with a poncho on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012993.jpg', 'caption': 'A street full of water with a bus and a bike rider traveling through the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012993.jpg', 'caption': 'A person with a rain jacket on their bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111099.jpg', 'caption': 'People standing and sitting around at a pier', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111099.jpg', 'caption': 'People are walking and sitting near a body of water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111099.jpg', 'caption': 'A city pier with benches to enjoy the view', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111099.jpg', 'caption': 'People sitting on benches and walking along a water front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111099.jpg', 'caption': 'A group of people hanging out next to the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358103.jpg', 'caption': 'A lucky bamboo plant in the window of a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358103.jpg', 'caption': 'Small white bathroom with a sink, shower, and small window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358103.jpg', 'caption': 'A bathroom with a plant and vase in window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358103.jpg', 'caption': 'A pristine white bath room with a pedestal sink, black and white tile and a window at the far end', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358103.jpg', 'caption': 'A small, white bathroom has a bamboo plant, a single sink and a shower with a shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255928.jpg', 'caption': 'An old, dirty, grubby tub, sink and toiled is in a dirty, old room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255928.jpg', 'caption': 'A very dirty bathroom with bathtub sink and window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255928.jpg', 'caption': 'The bathroom has been demolished, and still required renovation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255928.jpg', 'caption': 'A dirty bathtub that is inside of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255928.jpg', 'caption': 'A dirty bathtub sits in a bathroom with a big window on the side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158344.jpg', 'caption': 'A white toilet sitting next to a white sink in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158344.jpg', 'caption': 'A bathroom is shown with a toilet, sink and bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158344.jpg', 'caption': 'A white bathroom is in need of a good cleaning and new spot to hang toilet paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158344.jpg', 'caption': 'The toilet is sitting with the toilet cover open, and a mop next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158344.jpg', 'caption': 'Small toilet with the seat up next to a shower and sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185041.jpg', 'caption': 'A view of a bathroom with an old tub and a hanging shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185041.jpg', 'caption': 'A very small bathroom with a green tub and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185041.jpg', 'caption': 'A bathroom with a green tub and a white curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185041.jpg', 'caption': 'A bathroom with a curtain and green bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185041.jpg', 'caption': 'A bathroom with a mint green tub and sink, filled with various personal items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060203.jpg', 'caption': 'A hot tub sitting under a window in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060203.jpg', 'caption': 'An object is seen here in this unique image.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060203.jpg', 'caption': 'a big deep tub sits in a bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060203.jpg', 'caption': 'A large light blue bathtub near a window with several bottles stacked on the edge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060203.jpg', 'caption': 'A bathroom has a large teal tub that takes up the entire room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320951.jpg', 'caption': ' A bathroom with a toilet, sink, counter and large mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320951.jpg', 'caption': 'A picture of a very clean and tidy modern looking bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320951.jpg', 'caption': 'The door leading to a bathroom is open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320951.jpg', 'caption': 'a bathroom in a hotel room with the door open ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320951.jpg', 'caption': 'An open door reveals a toilet and a bathroom counter and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562289.jpg', 'caption': 'A cat sitting behind a white toilet next to a rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562289.jpg', 'caption': 'A CAT IS SITTING NEAR A TOILET SEAT', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000562289.jpg', 'caption': 'A cat is peering out from behind a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562289.jpg', 'caption': 'Small grey and white cat sticking its head out from behind a toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562289.jpg', 'caption': 'gray and white cat hiding underneath a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045976.jpg', 'caption': 'A man standing in front of a mirror shaving', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045976.jpg', 'caption': 'A man with no reflection as he shaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045976.jpg', 'caption': 'A man shaving his face in a bathroom mirror above a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045976.jpg', 'caption': 'Picture of man shaving but mirror looks headless.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045976.jpg', 'caption': 'A man in a blue shirt shaving his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488240.jpg', 'caption': 'A man sees a double reflection in his mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488240.jpg', 'caption': 'A man with black hair looks in the mirror while holding a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488240.jpg', 'caption': 'A man looking into a mirror holding a tooth brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488240.jpg', 'caption': 'A young boy making a silly face in the mirror with a toothbrush in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488240.jpg', 'caption': 'a man taking a selfie as he brushes his teeth in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410301.jpg', 'caption': 'A bathroom with a blue toilet next to a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410301.jpg', 'caption': 'A bathroom with a toilet, sink, mirror, and toiletries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410301.jpg', 'caption': 'A small tiled bathroom with a sink and a toilet with the tank high above the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410301.jpg', 'caption': 'Tiny toilet with an elevated tank next to a small sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410301.jpg', 'caption': 'A bathroom with the color scheme of orange and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124300.jpg', 'caption': 'A toilet sitting next to a bathroom counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124300.jpg', 'caption': 'A bathroom sink complete with a sink, shower and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124300.jpg', 'caption': 'Remodeling the bathroom with white tiles on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124300.jpg', 'caption': 'A bathroom has a glass sliding shower door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124300.jpg', 'caption': 'A bathroom with a white wall and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461692.jpg', 'caption': 'A toilet is sitting in an empty bathroom with a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461692.jpg', 'caption': 'A clean and naturally lit bathroom with a walk-in shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461692.jpg', 'caption': 'A residential bathroom with tan floor tiles and a single window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461692.jpg', 'caption': 'A doorway leading to a tiled bathroom with white appliances', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461692.jpg', 'caption': 'Sunshine streams through a small room and lights up a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274494.jpg', 'caption': 'A white sink and shower in a small bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274494.jpg', 'caption': 'A bathroom containing a mirror, sink and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274494.jpg', 'caption': 'a bathroom that is stylish with a walk in shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274494.jpg', 'caption': 'A sink, mirror and shower in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274494.jpg', 'caption': 'A bathroom with mirrors, a sink and railing with a towel draped over it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221681.jpg', 'caption': 'A white bathroom sink sitting next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221681.jpg', 'caption': 'a sink sits in a bathroom with a tiled floor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221681.jpg', 'caption': 'A bathroom with a sink and empty shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221681.jpg', 'caption': 'A brightly lit bathroom with busy tile has a large sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221681.jpg', 'caption': 'The bathroom includes an extra long sized sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095300.jpg', 'caption': 'A walk in shower next to a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095300.jpg', 'caption': 'A blue tiled bathroom is shown with a blue curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095300.jpg', 'caption': 'a blue tiled bathroom with a stand alone shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095300.jpg', 'caption': 'A very blue tiled shower and sink in a newly decorated bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095300.jpg', 'caption': 'a blue bathroom with a shower and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036053.jpg', 'caption': 'A bathroom with a shower and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036053.jpg', 'caption': 'a small bathroom with a walk in shower ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036053.jpg', 'caption': 'A small bathroom with a sink and a stand-up shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036053.jpg', 'caption': 'A glass enclosed corner shower sitting next to a pedestal sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036053.jpg', 'caption': 'A white sink and shower in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196342.jpg', 'caption': 'An empty narrow bathroom with the sink outside of the door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196342.jpg', 'caption': 'A bathroom with a mirror, and paper towel dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196342.jpg', 'caption': 'A white sink and mirror in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196342.jpg', 'caption': 'A photo of a public bathroom with a hallway leading outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196342.jpg', 'caption': 'A bathroom sink has a mirror above it with towel and soap dispensers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008045.jpg', 'caption': 'Tub and shower on platform in modern tiled bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008045.jpg', 'caption': 'A bathroom with a shower combination tub and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008045.jpg', 'caption': 'A tiled bathroom with a sink, shower, and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008045.jpg', 'caption': 'A modernized full bathroom with several small LEDs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008045.jpg', 'caption': 'A bathroom with a sink and a tub and a minimal, modern style design.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296707.jpg', 'caption': 'A bathroom with a toilet, towel rack and a tub in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296707.jpg', 'caption': 'a black and white tub in a home bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296707.jpg', 'caption': 'Interior of bathroom with tub and sliding glass divider and dark tile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296707.jpg', 'caption': 'A dark bathroom with a white bathtub and a white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296707.jpg', 'caption': 'A bathroom that has white towels in a rack over the tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465545.jpg', 'caption': 'Bathroom with wood trim and toiletries with window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465545.jpg', 'caption': 'A bathroom with a tub, toilet and mirror is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465545.jpg', 'caption': 'A large bathroom with sink, toilet, tub and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465545.jpg', 'caption': 'Very neat and clean bathroom with white and hardwood colors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465545.jpg', 'caption': 'A bathroom showing a toilet, sink and shower and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245996.jpg', 'caption': 'A clean bathroom is seen in this image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245996.jpg', 'caption': 'There are two sinks and a toilet in the bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245996.jpg', 'caption': 'A bathroom with two sinks, a toilet, and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245996.jpg', 'caption': 'Bathroom with two sinks, one toilet and one shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245996.jpg', 'caption': 'a bath room with two sinks and mirrors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239082.jpg', 'caption': 'A white toilet sitting on top of a wood floor in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239082.jpg', 'caption': 'A white toilet in a white bathroom seen partially through glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239082.jpg', 'caption': 'a nice toilet site right beside the shoer in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239082.jpg', 'caption': 'A modern bathroom features a shower as well as a toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239082.jpg', 'caption': 'This bathroom has a toilet, a metal spiral towel rack, an a shower with a glass door. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487525.jpg', 'caption': 'a bath room with a toilet a bath tub and curtains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487525.jpg', 'caption': 'The small bathroom has brown tile on the shower walls and floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487525.jpg', 'caption': 'A bathroom with brown tile and a white shower curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487525.jpg', 'caption': 'A bathroom with a sink, toilet and shower with curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487525.jpg', 'caption': 'A washroom having toilet,bathtub.In between is a partition by curtain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110559.jpg', 'caption': 'A tiled bathroom containing a vanity sink, toilet and bathtub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110559.jpg', 'caption': 'a bath room with a toilet a bath tub and a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110559.jpg', 'caption': 'There is a bathroom with a toilet and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110559.jpg', 'caption': 'A white toilet and bath in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110559.jpg', 'caption': 'A white bathtub sitting next to a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409842.jpg', 'caption': 'A shower door with a white towel hanging from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409842.jpg', 'caption': 'A towels hanging from a towels rack outside a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409842.jpg', 'caption': 'A white towel hanging on a glass shower door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409842.jpg', 'caption': 'A white towel hanging on a glass shower door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409842.jpg', 'caption': 'A frameless glass shower door with a white towel hanging from the handle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503200.jpg', 'caption': 'A shower has a removable shower head and a glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503200.jpg', 'caption': 'Shower head in Bathroom with beige colored wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503200.jpg', 'caption': 'A large shower with hanging faucet and hose', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503200.jpg', 'caption': 'A shower that has a detachable attachment. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503200.jpg', 'caption': 'A bathroom with a see through glass shower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369820.jpg', 'caption': 'A very rusty old car near some pretty flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369820.jpg', 'caption': 'A view of an old automobile, flower bush and a yellow fire hydrant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369820.jpg', 'caption': 'The older car is parked on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369820.jpg', 'caption': 'A fire hydrant in a clump of flowering bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369820.jpg', 'caption': 'A car is parked in front of a building.There is a water hydrant at the side of the road and flower plants behind water hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401623.jpg', 'caption': 'A nice shower has a glass enclosure and sliding door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401623.jpg', 'caption': ' WHITE BATH TUB, WITH TOWEL HANGING OVER THE SIDE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401623.jpg', 'caption': \"Renovated bathroom's walk in shower and bath tub\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401623.jpg', 'caption': 'A bathroom with a tub set against full-length mirror walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401623.jpg', 'caption': 'A white bath tub sits empty in a tan, clean bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411968.jpg', 'caption': 'A clean bathroom is pictured in this image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411968.jpg', 'caption': 'A bathroom counter with a white sink inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411968.jpg', 'caption': 'a bathroom with a black counter and a big mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411968.jpg', 'caption': 'A black topped sink and mirror in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000411968.jpg', 'caption': 'A motel style bathroom vanity, sink, mirror and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185512.jpg', 'caption': 'A small blue and white bathroom with a toiler and sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185512.jpg', 'caption': 'A bathroom with a toilet next to a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185512.jpg', 'caption': 'A small bathroom with a pedestal sink and toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185512.jpg', 'caption': 'A bathroom with a toilet, sink and shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185512.jpg', 'caption': 'A bathroom with a toilet and a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034830.jpg', 'caption': 'A white urinal in a small red tiled bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034830.jpg', 'caption': 'A bathroom with a red and black tiled wall next to urinal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034830.jpg', 'caption': 'A white urinal mounted to a wall in a restroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034830.jpg', 'caption': 'this bathroom has a urinal and red and black tiles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034830.jpg', 'caption': 'The corner of a bathroom with a urinal on the tiled wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430420.jpg', 'caption': \"A bathroom sink sitting underneath a mirror mounted on it's wall.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430420.jpg', 'caption': 'A BATHROOM WITH A MIRROR AND A SINK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430420.jpg', 'caption': 'A pink and green dated bathroom still has flair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430420.jpg', 'caption': 'A bathroom with a pink sink and blue tiles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000430420.jpg', 'caption': 'A bathroom scene with focus on the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395230.jpg', 'caption': 'A small white car with a small white dog riding in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395230.jpg', 'caption': 'A parked white car with and open door and a dog inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395230.jpg', 'caption': 'A dog sits in a white car with the door open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395230.jpg', 'caption': 'a little white car that has a dog in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395230.jpg', 'caption': 'there is a dog that is sitting in a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559950.jpg', 'caption': 'An adorable dog looking out the side of a car door window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559950.jpg', 'caption': 'a close up of a dog in a car window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559950.jpg', 'caption': 'A small dog is peeping out of car window on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559950.jpg', 'caption': 'No image is displaying for this image description.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559950.jpg', 'caption': 'A Pekinese dog looking out a window wearing a yellow leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274657.jpg', 'caption': 'A teddy bear is seen looking out the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274657.jpg', 'caption': 'A teddy bear sits in a blue car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274657.jpg', 'caption': 'A window reflecting a giant yellow teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274657.jpg', 'caption': 'Small stuffed bear near dashboard of blue motor vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274657.jpg', 'caption': 'The teddy bear was left in the car over night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378502.jpg', 'caption': 'A person on a motor bike and a car on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378502.jpg', 'caption': 'A man in the city riding a motorcycle in traffic without a helmet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378502.jpg', 'caption': 'A person on a motorcycle with a large back wheel riding on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378502.jpg', 'caption': 'A man riding on the back of a motorcycle behind a red car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378502.jpg', 'caption': 'A group of cars driving through an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561578.jpg', 'caption': 'a brick clock tower in the middle of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561578.jpg', 'caption': 'There is a small tower in the center of a sidewalk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561578.jpg', 'caption': 'A clocktower that is on the sidewalk alongside a street is showing four twenty as the time. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561578.jpg', 'caption': 'Clock tower in middle of town made of brick and painted whote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561578.jpg', 'caption': 'A clock tower stands on the side of two streets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401614.jpg', 'caption': 'A cat crawling into a white toilet seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401614.jpg', 'caption': 'a white and black cat inside of a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401614.jpg', 'caption': 'a black and white cat sticking its head in a toilet bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401614.jpg', 'caption': \"A black and white cat sticking it's head inside of a toilet.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401614.jpg', 'caption': 'a cat putting its head in a toilet pit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024053.jpg', 'caption': 'This room has a wall with a mural on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024053.jpg', 'caption': 'A toilet next to a wall painted with trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024053.jpg', 'caption': 'the toilet in this bathroom is in disrepair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024053.jpg', 'caption': 'A toilet with no service sits in a room with a wall painted with palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024053.jpg', 'caption': 'A living area with a painting of palm trees and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550527.jpg', 'caption': 'A bathroom with an odd shaped toilet next to a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550527.jpg', 'caption': 'A simple bathroom with a toilet and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550527.jpg', 'caption': 'a toilet with a shower near by with tiled walls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550527.jpg', 'caption': 'Buckets are in the corner of a bathroom with white tiled walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550527.jpg', 'caption': 'A bathroom with a toilet and a shower with no stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203732.jpg', 'caption': 'A white toilet seat in some lavatory somewhere.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203732.jpg', 'caption': 'A small bathroom with a toilet and a shower stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203732.jpg', 'caption': 'The interior of an airplane bathroom with toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203732.jpg', 'caption': 'A open toilet in a very small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203732.jpg', 'caption': 'a small bathroom with a toilet and a trash can', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002061.jpg', 'caption': 'A public restroom with a garbage can and shower hose', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002061.jpg', 'caption': 'A toilet in a stall with the toilet seat up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002061.jpg', 'caption': 'A white toilet in a restroom next to a small trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002061.jpg', 'caption': 'An empty bathroom stall with toilet and trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002061.jpg', 'caption': 'A toilet with an odd lever on it and a water hose next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334015.jpg', 'caption': 'a small toilet stall with a toilet brush and 3 rolls of toilet paper ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334015.jpg', 'caption': 'A clean, European toilet with toilet paper and cleaning brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334015.jpg', 'caption': 'A public toilet stall with toilet paper and a cleaning brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334015.jpg', 'caption': 'An empty, clean toilet stall with a stack of toilet paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334015.jpg', 'caption': 'There is a white toilet in a very narrow bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026730.jpg', 'caption': 'A dog sitting in the sidecar of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026730.jpg', 'caption': 'A yellow dog sits in a sidecar attached to a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026730.jpg', 'caption': 'A dog sitting in a seat on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026730.jpg', 'caption': 'A large brown dog sitting in the side car of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000026730.jpg', 'caption': 'A dog sits in the black sidecar of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136793.jpg', 'caption': 'a toilet a toilet paper roll and a newspaper', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136793.jpg', 'caption': 'A toilet paper dispenser with an empty tube and a newspaper stuffed behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136793.jpg', 'caption': 'A close up in the bathroom with newspaper instead of toilet paper.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136793.jpg', 'caption': 'There is newspaper in the spot where the toilet paper should be.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136793.jpg', 'caption': 'A dirty public washroom with a newspaper near the toilet roll.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199540.jpg', 'caption': 'A women holding up a very large pair of scissors .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199540.jpg', 'caption': 'A woman is holding a giant pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199540.jpg', 'caption': 'a woman with eye glasses holding a giant pair od scissors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199540.jpg', 'caption': 'A lady holding a large pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199540.jpg', 'caption': 'A woman holds a giant pair of scissors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561037.jpg', 'caption': 'A cruiser bike in line with others at a biker gathering', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561037.jpg', 'caption': 'A red motorcycle parked next to other motorcycles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561037.jpg', 'caption': 'Motor cycles parked in a lot near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561037.jpg', 'caption': 'A red motorcycle parked with other motorcycles in front a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561037.jpg', 'caption': 'A red motorcycle parked with others in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005965.jpg', 'caption': 'A big teddy bear on a black motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005965.jpg', 'caption': 'A large stuffed bear takes up the back seat of a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005965.jpg', 'caption': 'A bear waits for the bikes owner to get back to take a ride. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005965.jpg', 'caption': 'A parked motorcycle with a large stuffed animal on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005965.jpg', 'caption': 'A huge teddy bear sitting on a parked motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504811.jpg', 'caption': 'A biplane flying over a small church with a steeple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504811.jpg', 'caption': 'An airplane flies past a building with a steeple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504811.jpg', 'caption': 'A black and white photo of a small plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504811.jpg', 'caption': 'An airplane flying low and in front of a church', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504811.jpg', 'caption': 'A low flying pane lands in the UK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414711.jpg', 'caption': 'A building tower has two clocks on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414711.jpg', 'caption': 'A SUPER LARGE CLOCK TOWER ON A CHURCH HAS THE MOON BEHIND IT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414711.jpg', 'caption': 'Clock tower of old cathedral with full moon emerging on side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414711.jpg', 'caption': \"A very tall brick clock tower with a clock on each of it's sides.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414711.jpg', 'caption': 'A couple of clocks that are on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436467.jpg', 'caption': 'A pan filled with veggies and a block of butter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436467.jpg', 'caption': 'Butter or cheese on top of some vegetables in a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436467.jpg', 'caption': 'Spoon in a bowl of chopped vegetables with butter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436467.jpg', 'caption': 'A pan with butter and other ingredients for a dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436467.jpg', 'caption': 'Pot with variety of chopped vegetables, big chunk of butter and spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208991.jpg', 'caption': 'A couple of red motorcycles parked in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208991.jpg', 'caption': 'Cars and bikes are sitting outside of a storefront.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208991.jpg', 'caption': 'Motorcycles and cars are parked outside of an old building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208991.jpg', 'caption': 'A car with its doors open on a street in the city with motorcycles parked on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208991.jpg', 'caption': 'A car with doors open sitting in front of a group of motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263700.jpg', 'caption': 'A citizen stands pointing to a Police motorcycle as the cop looks on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263700.jpg', 'caption': 'A man standing beside a police motorcycle with the cop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263700.jpg', 'caption': 'A man gesturing next to a police motorcycle with a police officer nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263700.jpg', 'caption': 'A man pointing at a police motorcycle and officer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263700.jpg', 'caption': 'a man standing by a police motorcycle with a policeman', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237626.jpg', 'caption': 'a motorcycle on the back of a truck with a fence in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237626.jpg', 'caption': 'A motorcycle being transported by a car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237626.jpg', 'caption': 'A motorcycle tied down to a trailer on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237626.jpg', 'caption': 'A motorcycle parked on the trailer behind a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237626.jpg', 'caption': 'A blue motorcycle strapped onto a vehicle trailer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117725.jpg', 'caption': 'A view of a building with two clocks on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117725.jpg', 'caption': \"A view of a church's roof top between some trees.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117725.jpg', 'caption': 'A clock is shown at the top of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117725.jpg', 'caption': 'A clock tower with a steeple rises above shingled roofs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117725.jpg', 'caption': 'A large tall building with a clock on the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445537.jpg', 'caption': 'a pointed clock tower of an investment building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445537.jpg', 'caption': 'A clock tower is shown above a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445537.jpg', 'caption': 'An \"Investments\" building with a clock tower above it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445537.jpg', 'caption': 'A building with a clock on top and a sign that says investments ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445537.jpg', 'caption': 'A steeple on top of a building with clocks on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144062.jpg', 'caption': 'A white toilet sitting next to a window in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144062.jpg', 'caption': 'A framed photo of a restroom showing a toilet next to a window,', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144062.jpg', 'caption': 'A clean restroom with a view of the outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144062.jpg', 'caption': 'A photo of an organized bathroom pulls from the black window trim.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144062.jpg', 'caption': 'A home bathroom with a window right by the toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360371.jpg', 'caption': 'A toilet sitting in a bathroom next to a scale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360371.jpg', 'caption': 'a bath room with a toilet and a bath tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360371.jpg', 'caption': 'The weight scale is next to the toilet in the bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360371.jpg', 'caption': 'a tan toilet sitting by a mint green wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360371.jpg', 'caption': 'An aerial view of a toilet and a tub with sliding shower doors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063882.jpg', 'caption': 'A PINK TOILET AND A PINK BATH TUB IN THE BATHROOM', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063882.jpg', 'caption': 'A pink toilet and a pink bathtub in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063882.jpg', 'caption': 'A colorful bathroom with a pink toilet and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063882.jpg', 'caption': 'a bathroom with a pink tub and toilet and a gray tile floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063882.jpg', 'caption': 'The bathroom has a pink tub and pink toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010039.jpg', 'caption': 'A very large tower has a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010039.jpg', 'caption': 'The clock is at the base of a tall spire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010039.jpg', 'caption': 'A clock sits on the top of a tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010039.jpg', 'caption': 'A tall, spiral-shaped building with a bright blue and white clock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010039.jpg', 'caption': 'An antique clock tower rises above into the cloudy skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368821.jpg', 'caption': 'A clock sits at the top of the ceiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368821.jpg', 'caption': 'An ornate metal balcony with a banner hanging.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368821.jpg', 'caption': 'a clock on a wall with paintings on a ceiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368821.jpg', 'caption': 'The clock has many designs and sculptures carved around it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368821.jpg', 'caption': 'A clock and other items near the ceiling in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305472.jpg', 'caption': 'A very tall building has a clock on the front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305472.jpg', 'caption': 'A bird flying near a clock tower in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305472.jpg', 'caption': 'A large church steeple with a clock on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305472.jpg', 'caption': 'A very tall clock tower next to other tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305472.jpg', 'caption': 'A large tall brick tower has a clock on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148766.jpg', 'caption': 'some white and blue porcelain designer toilet bowls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148766.jpg', 'caption': 'Porcelain bowls inside of a museum with placards describing them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148766.jpg', 'caption': 'Pottery is displayed on a shelf in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148766.jpg', 'caption': 'Several similarly designed dishes are presented on platforms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148766.jpg', 'caption': 'Assorted blue and white vases sitting on top of a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530631.jpg', 'caption': 'A man works on a motorcycle inside a motorcycle repair garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530631.jpg', 'caption': 'A man in a shop working on some motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530631.jpg', 'caption': 'A mechanic assembles a custom motorcycle in his shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530631.jpg', 'caption': 'Mechanic in the garage working on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530631.jpg', 'caption': 'A young man working on a fork assembly in his garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178084.jpg', 'caption': 'A motorcycle being held up slightly by its back tire.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178084.jpg', 'caption': 'A silver motorcycle in the foreground of an area where there are other motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178084.jpg', 'caption': 'A futuristic looking gas powered motorcycle in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178084.jpg', 'caption': 'A black and silver motorcycle with back wheel on a mount', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178084.jpg', 'caption': 'A unique motorcycle is parked in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109860.jpg', 'caption': 'A toilet in the ground next to a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109860.jpg', 'caption': 'A dirty urinal in the floor of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109860.jpg', 'caption': 'A toilet that is on the ground near a trash bin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109860.jpg', 'caption': 'A white toilet sitting on the floor next to a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109860.jpg', 'caption': 'a squat down toilet with a trash can near by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514116.jpg', 'caption': 'A toilet as is typical in Asian countries. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514116.jpg', 'caption': 'Interior of a public toilet stall in a country that squats to defecate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514116.jpg', 'caption': 'Dirty toilet sitting in the middle of a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514116.jpg', 'caption': \"There's a toilet in a bathroom with a mirror behind it.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514116.jpg', 'caption': 'Bathroom with an in the floor toilet bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120021.jpg', 'caption': 'A motorcycle with a red seat is on top of a stand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120021.jpg', 'caption': 'a motorcycle with a red seat up on a red jack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120021.jpg', 'caption': 'A motorcycle is raised on a jack inside a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120021.jpg', 'caption': 'A motorcycle with red seat sits parked in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120021.jpg', 'caption': 'People looking at a motorcycle that is on display. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449038.jpg', 'caption': 'A large white clock tower sitting on top of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449038.jpg', 'caption': 'A clock tower attached to a white building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449038.jpg', 'caption': 'The top of a cathedral tower rising from behind the main structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449038.jpg', 'caption': 'A church steeple is portrayed against a blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449038.jpg', 'caption': 'A white church steeple with a clock, crock, and black shingles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442136.jpg', 'caption': 'A man looks over a parked motorcycle that has an American flag on the back. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442136.jpg', 'caption': 'A man looks at a motorcycle in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442136.jpg', 'caption': 'A man standing next to a red motorcycle in a parking space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442136.jpg', 'caption': 'Man studying motorcycle very closely in parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442136.jpg', 'caption': 'A man looking at motorcycle in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580704.jpg', 'caption': 'A group of people on motorbikes ride on a path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580704.jpg', 'caption': 'A group of people on some motor bikes on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580704.jpg', 'caption': 'A group of people on motorcycles with grass on each side and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580704.jpg', 'caption': 'Motorcyclists are lined up in formation along a driveway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580704.jpg', 'caption': 'Motorcyclists riding their bikes on a hot summer day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104865.jpg', 'caption': 'A bowl filled with food and a white spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104865.jpg', 'caption': 'A spoon and bowl of green pea soup and red beans with onions, carrots and cabbage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104865.jpg', 'caption': 'The soup is cooked and ready to be eaten ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104865.jpg', 'caption': 'a bowl of bean soup with carrots and a spoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104865.jpg', 'caption': 'The soup in the bowl has peas, noodles, chicken, and carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171349.jpg', 'caption': 'An unfinished bathroom with a boarded window and exposed pipes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171349.jpg', 'caption': 'The bathroom in this home needs to be remodeled. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171349.jpg', 'caption': 'A toilet, sink and mirror sitting in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171349.jpg', 'caption': 'A toilet and a sink in a washroom being renovated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171349.jpg', 'caption': 'A bathroom with a toilet, sink and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139169.jpg', 'caption': 'Two magazine photos of a motorcycle and rider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139169.jpg', 'caption': 'A photograph of a man riding a dirt bike on a dirt track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139169.jpg', 'caption': 'An open book displays earlier times of motocross racing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139169.jpg', 'caption': 'a close up of an open book with a person riding a dirt bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139169.jpg', 'caption': 'A book opened to a page depicting a motor bike race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154721.jpg', 'caption': 'a man rides a motor cycle across a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154721.jpg', 'caption': 'A book on a carpet opened to a page with motorcycles and riders.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154721.jpg', 'caption': 'Open book with a magazine cover of motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154721.jpg', 'caption': 'a book folds open on to an image of a person on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154721.jpg', 'caption': 'A book containing a picture spanning two pages of a motorcycle rider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237860.jpg', 'caption': 'there is a one way street sign under a street name sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237860.jpg', 'caption': 'A one way sign that is in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237860.jpg', 'caption': 'Street signs sitting in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237860.jpg', 'caption': 'The one way sign is in front of colorfully painted doors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237860.jpg', 'caption': 'a building with a door sitting behind a sign ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174898.jpg', 'caption': 'A motorcycle parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174898.jpg', 'caption': 'A motorcycle is parked in front of a cemetary.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174898.jpg', 'caption': 'a motorcycle stting by the side of the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174898.jpg', 'caption': 'A motorcycle parked outside on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174898.jpg', 'caption': 'a motorcycle with a blue vortex at the bottom because its by a grave yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217181.jpg', 'caption': 'They are standing next to some stylish motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217181.jpg', 'caption': 'Three men are standing around looking at sports motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217181.jpg', 'caption': 'A small group of men are standing around a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217181.jpg', 'caption': 'Two men surrounding a blue motorcycle and others', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217181.jpg', 'caption': 'A few blue motorcycles are parked in a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368196.jpg', 'caption': 'Two metal bowls filled with apples and oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368196.jpg', 'caption': 'A closeup of a bunch of oranges and apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368196.jpg', 'caption': 'Many whole oranges are stacked together close to apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368196.jpg', 'caption': 'Two bowls containing produce: many oranges and a few apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368196.jpg', 'caption': 'Two bowls of oranges and apples next to a shelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275754.jpg', 'caption': 'A small child in pajamas is holding bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275754.jpg', 'caption': 'A smiling child in a blue sleeper holding two bananas and sitting on a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275754.jpg', 'caption': 'A young child in a blue jumpsuit holds two bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275754.jpg', 'caption': 'A child sitting on a counter with some bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275754.jpg', 'caption': 'A boy in blue pajamas holding bananas on counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039871.jpg', 'caption': \"The door of a public bus with a reflection of a woman's photo in the side window of the bus.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039871.jpg', 'caption': 'A bus pulls up to a sidewalk and bus stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039871.jpg', 'caption': 'A bus that is stopped on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039871.jpg', 'caption': 'A red and white bus is on a street at night while a ad is seen in a bus window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039871.jpg', 'caption': 'A female model in an advertisement on the side of a city bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470423.jpg', 'caption': 'Motorcycles and helmets are parked on the sparse grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470423.jpg', 'caption': 'Three police motorcycles sitting beside each other in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470423.jpg', 'caption': 'Cop motorcycles lined up parked next to each other with the helmets on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470423.jpg', 'caption': 'Several police motorcycles that are parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470423.jpg', 'caption': 'There white motorcycles on grassy area next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444209.jpg', 'caption': 'there are many motorcycles that are parked by each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444209.jpg', 'caption': 'a white and black parked motorcycle and some other parked bikes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444209.jpg', 'caption': 'A group of motorcycles parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444209.jpg', 'caption': 'A group of bikers standing next to each other on a road near a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444209.jpg', 'caption': 'A line of motorcycles parked on a small street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531234.jpg', 'caption': 'A man working on a motorcycle suspended in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531234.jpg', 'caption': 'A man fixing a motorcycle with a hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531234.jpg', 'caption': 'A man working on a motorcycle that is hoisted in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531234.jpg', 'caption': 'A man working on a raised motorcycle in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531234.jpg', 'caption': 'MAN WORKING ON A MOTORCYCLE IN A GARAGE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177938.jpg', 'caption': 'A man standing next to a parked motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177938.jpg', 'caption': 'A man in a garage tinkers with a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177938.jpg', 'caption': 'Man at a cycle shop inspecting a motorcycle on a cycle lift.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177938.jpg', 'caption': 'A man is working on a motorcycle in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177938.jpg', 'caption': 'A guy is in a shop working on a motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359086.jpg', 'caption': 'A parked motorcycle sitting on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359086.jpg', 'caption': 'A motorcycle parked in grass next to a building with cars and an airplane parked nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359086.jpg', 'caption': 'a black motorcycle is parked on the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359086.jpg', 'caption': 'A motorcycle is parked at the edge of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359086.jpg', 'caption': 'a motorcycle parked in the grass by a factory', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131597.jpg', 'caption': 'Row of motorcycles parked at curb in outdoor area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131597.jpg', 'caption': 'A group of motorcycles parked on the side of a street near a picnic table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131597.jpg', 'caption': 'Few motorcycles parked next to each other on a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131597.jpg', 'caption': 'A row of parked motorcycles sitting on the side of a rod.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131597.jpg', 'caption': 'A line up of motorcycles sitting on their kickstands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023369.jpg', 'caption': 'This motorcycle is parked on the side of the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023369.jpg', 'caption': 'A motorcycle with a side satchel compartment sitting in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023369.jpg', 'caption': 'A black motorcycle parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023369.jpg', 'caption': 'A motorcycle parked near a grassy area with a flag in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023369.jpg', 'caption': 'A motorcycle outside parked somewhere in a park-like setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024396.jpg', 'caption': 'On a small stage, a stylish motorcycle sits on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024396.jpg', 'caption': 'THERE IS A MOTOR BKE THAT IS ON DISPLAY ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024396.jpg', 'caption': 'a motorcycle on a black showcase floor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024396.jpg', 'caption': 'A Triumph motorcycle in a showroom, surrounded by informational displays.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024396.jpg', 'caption': 'Triumph motorcycle and informational wall signage on display at an indoor showroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421131.jpg', 'caption': 'Two men sit on boxes with their motorcycle on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421131.jpg', 'caption': 'A pair of young men sit on a case beside a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421131.jpg', 'caption': 'A man sits by a motorcycle on a box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421131.jpg', 'caption': 'two guys sitting on a crate near a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421131.jpg', 'caption': 'Riders rest on a travel box beside a motorcycle that appears to be packed for a long trip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174390.jpg', 'caption': 'A police man on a motorcycle drives down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174390.jpg', 'caption': 'An officer on a gray motorcycle next to buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174390.jpg', 'caption': 'A man riding on the back of a motorcycle down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174390.jpg', 'caption': 'A person on a motor bike on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174390.jpg', 'caption': 'A police officer riding a motorcycle down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065001.jpg', 'caption': 'A large group of motorcycles that are parked in a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065001.jpg', 'caption': 'A parking lot with many different motor bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065001.jpg', 'caption': 'a big line of motorcycle that is parked on a concrete ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065001.jpg', 'caption': 'a large group of motorcycles is parked in a lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065001.jpg', 'caption': 'a bunch of bikes are parked in a lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090501.jpg', 'caption': 'A wooden bench sitting in front of a white building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090501.jpg', 'caption': 'a green wooden bench outside of a row of white houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090501.jpg', 'caption': 'a bench in front of a building near flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090501.jpg', 'caption': 'A row of white houses all down the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090501.jpg', 'caption': 'A very cute green wooden bench and some very pretty flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188818.jpg', 'caption': 'a painting is hanging over a television in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188818.jpg', 'caption': 'A desk sitting against a wall that has a picture on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188818.jpg', 'caption': 'A painting is displayed next to a chair in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188818.jpg', 'caption': 'A view of a desk with computer screen and a colorful painting of a house with people in striped shirts standing around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188818.jpg', 'caption': 'a room that has some furniture and a picture on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263834.jpg', 'caption': 'Person riding a motorcycle with someone holding a child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263834.jpg', 'caption': 'A child sits on the back of a motorcycle in heavy traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263834.jpg', 'caption': 'Two people sitting on a motorcycle sitting in traffic next to a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263834.jpg', 'caption': 'A man and a woman is on the motor bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263834.jpg', 'caption': 'A couple of people are riding a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445561.jpg', 'caption': 'A small private plane that is coming in for a landing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445561.jpg', 'caption': 'a gray red black and white airplane flying', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445561.jpg', 'caption': 'a small plane flying through a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445561.jpg', 'caption': 'An airplane flying in the big blue sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445561.jpg', 'caption': 'A small plane flying through a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442688.jpg', 'caption': 'A plane on a runway at a small airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442688.jpg', 'caption': 'A plane on a runway in front of a stand of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442688.jpg', 'caption': 'An airplane driving down a runway at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442688.jpg', 'caption': 'A white and black jet airliner on runway next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442688.jpg', 'caption': 'There is a large plane on the runway for takeoff', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285068.jpg', 'caption': 'A helicopter flying through a light blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285068.jpg', 'caption': 'This is a red, white, and blue helicopter with the initials LAR.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285068.jpg', 'caption': 'A gray red and blue helicopter flies in a bright blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285068.jpg', 'caption': 'A helicopter is flying in the clear sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285068.jpg', 'caption': 'A red and blue chopper is hovering in the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022797.jpg', 'caption': 'An airplane close to the ground with its landing gear dropped', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022797.jpg', 'caption': 'a big white airplane that is in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022797.jpg', 'caption': 'A jet airplane is coming in for a landing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022797.jpg', 'caption': 'A large airplane in the air on top of a runway taking off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022797.jpg', 'caption': 'A plane landing on a runway, in the middle of the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298372.jpg', 'caption': 'a white and green plane is in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298372.jpg', 'caption': 'a plane on air ready to land at the airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298372.jpg', 'caption': 'The green and white airplane is preparing to land.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298372.jpg', 'caption': 'A plane taking off over a large field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298372.jpg', 'caption': 'A airplane in the air flying south in direction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185622.jpg', 'caption': 'A large jetliner taking off from a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185622.jpg', 'caption': 'AN AIR PLANE IS ABOUT TO TAKE OFF THE RUNWAY ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185622.jpg', 'caption': 'An ANA airline plane taking off from an airstrip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185622.jpg', 'caption': 'A large commercial plane about to fly at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185622.jpg', 'caption': 'A plane is taking off from an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237060.jpg', 'caption': 'A huge airplane looks small against a wide open concrete area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237060.jpg', 'caption': 'A commercial airplane being pulled across the runway by a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237060.jpg', 'caption': 'A white ANA jet sits on the runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237060.jpg', 'caption': 'A small vehicle taxis a large jet down a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237060.jpg', 'caption': 'an airplane that is on a empty runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413096.jpg', 'caption': 'A plane on the runway is being led by a tow cart', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413096.jpg', 'caption': 'Large airplane being tugged by a small airport vehicle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413096.jpg', 'caption': 'A large white and blue plane is at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413096.jpg', 'caption': 'A commercial jet liner being taxied on runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413096.jpg', 'caption': 'AIRPLANE AT AN AIRPORT ON THE TARMAC WITH A VEHICLE IN FRONT OF IT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113801.jpg', 'caption': 'Airplane with vintage bus in front of air plane hangar', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113801.jpg', 'caption': 'A bus parked in front of an air plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113801.jpg', 'caption': 'A bus parked in front of a private jet plain at an airport hanger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113801.jpg', 'caption': 'A green bus is parked next to a passenger jet on the run way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113801.jpg', 'caption': 'Large white airplane with a green and yellow bus next to it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018975.jpg', 'caption': 'An airport with large jetliners and a bus traveling on a tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018975.jpg', 'caption': 'An airplane and busses are lined up at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018975.jpg', 'caption': 'a group of buses driving around at the airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018975.jpg', 'caption': 'Airplanes sit at the gate as transportation vehicles move about.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018975.jpg', 'caption': 'A busy runway with buses and luggage carts driving around', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255096.jpg', 'caption': 'A large jetliner sitting on top of an airport tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255096.jpg', 'caption': 'A airplane that is on a tarmac behind a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255096.jpg', 'caption': 'at the airport showing a bus and a plane', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255096.jpg', 'caption': 'A view out the window of an airport terminal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000255096.jpg', 'caption': 'A busy landing area with planes and vehicles at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460373.jpg', 'caption': 'Planes lined up at an airport with the city skyline in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460373.jpg', 'caption': 'Airplanes are parked in a row at the airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460373.jpg', 'caption': 'A view of four airplane tails from inside an airport window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460373.jpg', 'caption': 'A few planes parted out on the runway at their gates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460373.jpg', 'caption': 'A bunch of airplanes lined up in a row at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569016.jpg', 'caption': 'A runway has many old-fashioned planes and helicopters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569016.jpg', 'caption': 'A propeller plane sitting on top of a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569016.jpg', 'caption': \"A military cargo plane on a runway with other aircraft's.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569016.jpg', 'caption': 'Several airplanes are parked on an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569016.jpg', 'caption': 'a very old rusty looking airplane with two propellers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364145.jpg', 'caption': 'A plane on a runway in an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364145.jpg', 'caption': 'The huge four engine airliner is driving on the runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364145.jpg', 'caption': 'A large blue and white airplane on a lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364145.jpg', 'caption': 'A large jumbo jet on the runway of an airport.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000349006.jpg', 'caption': 'Person riding their skateboard on the street with the cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349006.jpg', 'caption': 'A closeup of a skateboarder riding on asphalt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349006.jpg', 'caption': 'a person skating down the street next to traffic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442348.jpg', 'caption': 'A woman sitting down holding onto a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442348.jpg', 'caption': 'A young woman is sitting at a table eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442348.jpg', 'caption': 'A girl eats a bagel at a table in a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442348.jpg', 'caption': 'Girl sitting at table eating a plate of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442348.jpg', 'caption': 'Seated teenage girl eating her breakfast at home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531299.jpg', 'caption': 'a person riding a skate board on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531299.jpg', 'caption': 'A man is standing on a lane getting ready to ride a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531299.jpg', 'caption': 'A skate boarder pauses at the top of a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531299.jpg', 'caption': 'A young man on a skateboard looking down street with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531299.jpg', 'caption': 'a man standing on a skateboard in the middle of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275034.jpg', 'caption': 'A person kneels a bit as they race down a special ski path', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275034.jpg', 'caption': 'A child wearing a helmet skis along the snow past a sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275034.jpg', 'caption': 'A young skier skiing down a snowy slalom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275034.jpg', 'caption': 'A person on some skis in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275034.jpg', 'caption': 'A young skiier races downhill past a blue marker on packed snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455414.jpg', 'caption': 'A young skier is attempting to go down the hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455414.jpg', 'caption': 'A young skier is skiing downhill in a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455414.jpg', 'caption': 'A child downhill skiing at a ski resort. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455414.jpg', 'caption': 'A child on skis going down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455414.jpg', 'caption': 'A person skiing on an ski obstacle course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048034.jpg', 'caption': 'A person skiing down the side of a snow covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048034.jpg', 'caption': 'A skier going down a hill around several flags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048034.jpg', 'caption': 'The person is snow skiing around the blue flag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048034.jpg', 'caption': 'A young skier goes through a slalom course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048034.jpg', 'caption': 'A skier skis down a slope, with blue and red course markers in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541017.jpg', 'caption': 'A skateboarder is about to go down a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541017.jpg', 'caption': 'A young boy skateboarding on a high ramp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541017.jpg', 'caption': 'A skateboarder is poised on the lip of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541017.jpg', 'caption': 'A teenager preparing to ride down the side of a skate ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541017.jpg', 'caption': 'This is a boy on skateboard about to go down a ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507935.jpg', 'caption': 'a small child is standing on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507935.jpg', 'caption': 'A child on a skate board is performing on a skating wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507935.jpg', 'caption': 'A girl standing on a skateboard on the edge of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507935.jpg', 'caption': 'A young girl on a skateboard jumping off of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507935.jpg', 'caption': 'a person riding a skate board on a skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415768.jpg', 'caption': 'The dish in the pot contains several different kinds of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415768.jpg', 'caption': 'Sliced onions and carrots in a saucepan with a wooden spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415768.jpg', 'caption': 'A wooden spoon inside a pot filled with carrots and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415768.jpg', 'caption': 'A mix of vegetables in a pot with a spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415768.jpg', 'caption': 'Pot on stove cooking vegetables and being stirred by a wooden spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408289.jpg', 'caption': 'A boy is going up a ramp on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408289.jpg', 'caption': 'A little boy wearing a helmet rides a skateboard on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408289.jpg', 'caption': 'A young boy in a blue tshirt rides a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408289.jpg', 'caption': 'A child rides a skateboard up a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408289.jpg', 'caption': 'He is young, but he definitely knows how to ride that skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191000.jpg', 'caption': 'A kid on a skateboard on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191000.jpg', 'caption': 'A young boy in a red shirt is on a skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191000.jpg', 'caption': 'Child in black and red outfit riding on top of a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191000.jpg', 'caption': 'a little boy riding on a skate board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191000.jpg', 'caption': 'A young boy is skateboarding in a red shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057843.jpg', 'caption': 'some dessert is laying out on a yellow and white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057843.jpg', 'caption': 'A plate containing a slice of dessert, two forks and some piped cream', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057843.jpg', 'caption': 'Pastry sitting on top of a golden white plate with forks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057843.jpg', 'caption': 'Two forks on a plate of cake and cream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057843.jpg', 'caption': 'THIS IS A PHOTO OF A DESERT PLATE FOR TWO', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358982.jpg', 'caption': 'A small child wears a helmet while riding a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358982.jpg', 'caption': 'An action photo of a child on a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358982.jpg', 'caption': 'A young girl in a helmet riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358982.jpg', 'caption': 'A person is skateboarding while wearing a blue helmet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358982.jpg', 'caption': 'A small child wearing a helmet skateboards at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131841.jpg', 'caption': 'a slice of bundt cake sits on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131841.jpg', 'caption': 'A piece of cake sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131841.jpg', 'caption': 'There is a piece of bread and a fork on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131841.jpg', 'caption': 'A PIECE OF POUND CAKE ON A WHITE PLATE ON A WOOD TABLE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131841.jpg', 'caption': 'A slice of banana bread on a plate with a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534421.jpg', 'caption': 'A group of young children playing in the snow next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534421.jpg', 'caption': 'A little kid on skis in the snow with a helmet on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534421.jpg', 'caption': 'A child is learning how to ski while a parent helps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534421.jpg', 'caption': 'A person offering a hand to a young child wearing a helmet and snow skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534421.jpg', 'caption': 'A man standing beside his little boy while they are in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088552.jpg', 'caption': 'Two little boys are wearing helmets, goggles and snow gear as they stand and sit in the middle of the snowy terrain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088552.jpg', 'caption': 'There are several small children riding skies together ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088552.jpg', 'caption': 'young boys are skiing in the snow with helmets on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088552.jpg', 'caption': 'A boy in a safety vest lays in the snow as another boy on skies stands near by while a man in a red jacket kneels in the snow by the boys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088552.jpg', 'caption': 'A group of children in the snow on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182424.jpg', 'caption': 'A guy looking down at a big knife he is holding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182424.jpg', 'caption': 'A man standing in a kitchen standing under a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182424.jpg', 'caption': 'A man with a knife cutting something in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182424.jpg', 'caption': 'The man is getting ready to cut the pepper in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182424.jpg', 'caption': 'A man holding a knife in his hand cutting a tomato.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514901.jpg', 'caption': 'Saltine crackers lay next to a wedge of cheese, with grapes and other items surrounding them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514901.jpg', 'caption': 'Bread, crackers, and fruit sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514901.jpg', 'caption': 'A block of cheese has a piece slice off and crackers in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514901.jpg', 'caption': 'A loaf of cheese, served with crackers, bread and grapes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514901.jpg', 'caption': 'A block of cheese near grapes bread and crackers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517619.jpg', 'caption': 'A person snowboard on a snow covered ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517619.jpg', 'caption': 'Several snowboarders do tricks indoors under a roof. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517619.jpg', 'caption': 'A few people snowboarding on an indoor snowboarding course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517619.jpg', 'caption': 'a couple of people on snowboards moving across a track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517619.jpg', 'caption': 'An arena is packed with snow as snowboarders perform stunts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145295.jpg', 'caption': 'Many skateboarders going down a very wide city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145295.jpg', 'caption': 'A city street filled with people riding skateboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145295.jpg', 'caption': 'The skateboarders are racing towards the popular destination.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145295.jpg', 'caption': 'Bunch of people crowding the street all on skateboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145295.jpg', 'caption': 'A large group of skateboarders are in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248655.jpg', 'caption': 'a person is standing in the snow in skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248655.jpg', 'caption': 'A person on skis posing for the picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248655.jpg', 'caption': 'A woman who is standing on a ski slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248655.jpg', 'caption': 'A woman posing with her pair of skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248655.jpg', 'caption': 'there is a woman posing on skies at the top of a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115866.jpg', 'caption': 'various food items in bowls on white counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115866.jpg', 'caption': 'A table topped with four cups and bowls filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115866.jpg', 'caption': 'Several containers of food sitting on a table beside a blue mug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115866.jpg', 'caption': 'In portions of the thermos various foods can make a complete meal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115866.jpg', 'caption': 'A table with aa few dishes of food and some coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334185.jpg', 'caption': 'Two guys wearing skis are posing for a picture. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334185.jpg', 'caption': 'Two people in ski gear standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334185.jpg', 'caption': 'two people standing side by side on the snow covered ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334185.jpg', 'caption': 'Some skiers in the snow on a very big hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334185.jpg', 'caption': 'Two people smile at the camera with their ski equipment. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196516.jpg', 'caption': 'A skateboarder leaps low above his board in a concrete area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196516.jpg', 'caption': 'a man on a skate board does a trick ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196516.jpg', 'caption': 'A guy and a skateboard in mid air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196516.jpg', 'caption': 'A man is doing tricks on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196516.jpg', 'caption': 'A skateboarder in the middle of performing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274455.jpg', 'caption': 'A man riding a skateboard on top of pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274455.jpg', 'caption': 'A skateboarder is taking a break at a skatepark. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274455.jpg', 'caption': 'A man at a skate park with his foot on the side of the skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274455.jpg', 'caption': \"A person with their food on a skateboard that's on the ground.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274455.jpg', 'caption': 'A skateboarder with his foot on his board that is laying on its side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407443.jpg', 'caption': 'The skateboarder has his hands in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407443.jpg', 'caption': 'A skateboarder wearing jeans and a black t-shirt rides the rim of a skateboard park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407443.jpg', 'caption': 'A young man is doing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407443.jpg', 'caption': 'A man doing a trick with his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407443.jpg', 'caption': 'A man riding a skateboard up the side of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421218.jpg', 'caption': 'Skateboarder is riding his skateboard down the steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421218.jpg', 'caption': 'a person jumping a skate board in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421218.jpg', 'caption': 'He is flying over the steps on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421218.jpg', 'caption': 'A man on a skateboard jumping down a set of stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421218.jpg', 'caption': 'Male skateboarder displaying leaping ability over steps with handrails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519744.jpg', 'caption': 'A young man standing on a skateboard wearing a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519744.jpg', 'caption': 'A person in black pants and a purple shirt standing on a skateboard in a park area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519744.jpg', 'caption': 'A young teenager is standing on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519744.jpg', 'caption': 'A young man is smiling for the camera while standing on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519744.jpg', 'caption': 'A boy rides on a skateboard and smiles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487391.jpg', 'caption': 'Two hot dogs sitting side by side with condiments.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487391.jpg', 'caption': 'Two hot dogs are laden with relish, ketchup, and mustard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487391.jpg', 'caption': 'two hot dogs on a plate loaded with condiments ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487391.jpg', 'caption': 'Two hot dogs covered with ketchup and relish on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487391.jpg', 'caption': 'Two hot dogs in buns are smothered with condiments. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007989.jpg', 'caption': 'A snow boarder riding a ski lift up a snow covered ski slople', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007989.jpg', 'caption': 'A skier sitting and riding up the snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007989.jpg', 'caption': 'A person sits on a ski lift in a snowy forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007989.jpg', 'caption': 'Skiers look downward as they ride a ski lift up the mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007989.jpg', 'caption': 'Someone riding a ski lift wearing a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268400.jpg', 'caption': 'A young man riding a skateboard down a dark street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268400.jpg', 'caption': 'A skateboarder sits with his feet on his board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268400.jpg', 'caption': 'A man wearing shoes with red shoelaces propping his feet on a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268400.jpg', 'caption': 'A man sitting on a bench with his feet on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268400.jpg', 'caption': 'A man bending his legs on a skateboard at night. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125971.jpg', 'caption': 'A hotdog with toppings served in a red basket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125971.jpg', 'caption': 'A view of a delicious hot dog and a drink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125971.jpg', 'caption': 'a container holding a hot dog next to a tall water glass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125971.jpg', 'caption': 'A hot dog with lots of toppings is served in a red basket with a soda. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125971.jpg', 'caption': 'A condiment filled hotdog is in a red basket next to an iced beverage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119513.jpg', 'caption': 'a kid is in the air on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119513.jpg', 'caption': 'Boy making a jump on at skateboard park with an assembled crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119513.jpg', 'caption': 'A young skateboarder is in the air as he performs stunts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119513.jpg', 'caption': 'A young boy in the air on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000119513.jpg', 'caption': 'a person jumping a skate board in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039988.jpg', 'caption': 'A low shot of a man on a snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039988.jpg', 'caption': 'A man riding a snowboard down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039988.jpg', 'caption': 'A snowboarder sits at the top of a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039988.jpg', 'caption': 'A person rides a sled down a snowy hill on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000039988.jpg', 'caption': 'Snowboarder relaxes in the sun on the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175082.jpg', 'caption': 'A group of children eat mini food items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175082.jpg', 'caption': 'children enjoying a new sausage preparation on a field trip.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175082.jpg', 'caption': 'A few children eating small finger food in red shirts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175082.jpg', 'caption': 'Kids are trying mini meatball subs with sauce on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175082.jpg', 'caption': 'Children trying little hamburgers from a tray at school', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505157.jpg', 'caption': 'A young man riding a skateboard at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505157.jpg', 'caption': 'A skateboarder jumping through the air and doing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505157.jpg', 'caption': 'A man performs a skateboard trick in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505157.jpg', 'caption': 'A man skateboarding at a skate park among onlookers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505157.jpg', 'caption': 'A skateboarder rides on concrete with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000661.jpg', 'caption': 'A chicken sandwich in a wrapper near a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000661.jpg', 'caption': 'A fast food sandwich half wrapped in a wrapper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000661.jpg', 'caption': 'A sandwich that is in paper on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000661.jpg', 'caption': 'A table with a chicken sandwich and a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000661.jpg', 'caption': 'A sandwich in a wrapper on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413043.jpg', 'caption': 'A young man riding a skateboard down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413043.jpg', 'caption': 'A man riding a skateboard down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413043.jpg', 'caption': 'A man skateboards down a steep incline on an area painted with graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413043.jpg', 'caption': 'MAN ON A SKATE BOARD CROSSING OVER SOME GRAFFITI ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413043.jpg', 'caption': 'A man riding a skateboard down a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522639.jpg', 'caption': 'A group of young men standing next to each other in front of a white wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522639.jpg', 'caption': 'Snowboarders are standing in a group in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522639.jpg', 'caption': 'a number of people with snow boards on a snowy surface', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522639.jpg', 'caption': 'Snowboarding competitors and their supporters giving the peace sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522639.jpg', 'caption': 'Several people posing in cold weather gear in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334947.jpg', 'caption': 'Two hot dogs covered in toppings on a blue tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334947.jpg', 'caption': 'Two hot dogs in cardboard plate one with pickle and the other with cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334947.jpg', 'caption': 'two hotdogs topped with a dill pickle tomatoes and tofu', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334947.jpg', 'caption': 'Two types of sandwiches sit in cardboard boxes on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334947.jpg', 'caption': 'Two sandwiches in paper baskets sitting on a blue tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465346.jpg', 'caption': 'A burger and a bunch of fries on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465346.jpg', 'caption': 'A sandwich and fries are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465346.jpg', 'caption': 'A breaded patty sandwich with fries on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465346.jpg', 'caption': 'Chicken sandwich with lettuce and tomatoes on a plate with French fries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465346.jpg', 'caption': 'A sandwich and french fries are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107360.jpg', 'caption': 'The man is wearing coveralls and holding a snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107360.jpg', 'caption': 'A man is crouched down holding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107360.jpg', 'caption': 'A man is standing in a cinderblock corner with a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107360.jpg', 'caption': 'A person in a helmet and goggles poses with a snowboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107360.jpg', 'caption': 'A man standing in a muscle man post holding a snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483965.jpg', 'caption': 'a close up of a person eating a hot dog ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483965.jpg', 'caption': 'A woman biting down into a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483965.jpg', 'caption': 'A woman laughing and eating a hotdog in a dark room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483965.jpg', 'caption': 'a woman poses with a hot dog to her mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483965.jpg', 'caption': 'A woman eating a giant hot dog with both of her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071933.jpg', 'caption': 'A plastic container with mustard on one side and a chili cheese dog on the other half', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071933.jpg', 'caption': 'A chili dog on a bun with mustard in a container. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071933.jpg', 'caption': 'a chili cheese sandwich and some yellow mustard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071933.jpg', 'caption': 'A chili dog covered with cheese and mustard on the side in a to-go container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071933.jpg', 'caption': 'A hot-dog with chili is sitting in a styrofoam container next to a serving of mustard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490688.jpg', 'caption': 'A gourmet hot dog presented with a side of couscous. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490688.jpg', 'caption': 'There is a hot dog and some other food on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490688.jpg', 'caption': 'A hotdog in a bun sitting on a plate with some corn. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490688.jpg', 'caption': 'A plate on a table with a hot dog and corn sitting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490688.jpg', 'caption': 'A hot dog pastry and a pile of vegtables ont he side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549780.jpg', 'caption': 'A purple gloved hand holds out a hot dog bun that has chili on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549780.jpg', 'caption': 'A person wearing a glove holding a chili dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549780.jpg', 'caption': 'hotdog bun with chili is held by food service worker', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549780.jpg', 'caption': 'A hot dog bun smothered in chili sitting on a wooden counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549780.jpg', 'caption': 'A hand in a purple glove holding a hotdog bun full of chili.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233651.jpg', 'caption': 'A man holding a bag with a doughnut in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233651.jpg', 'caption': 'A man chewing a bite of a donut. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233651.jpg', 'caption': 'A man eating donut out of a paper bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233651.jpg', 'caption': 'A man eating Dunkin Donuts out of a bag ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000233651.jpg', 'caption': 'a black and white photo of a person with a doughnut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467726.jpg', 'caption': 'A tray with four different types of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467726.jpg', 'caption': 'The plastic tray with a lid has three compartments filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467726.jpg', 'caption': 'A packed meal in a plastic tray that includes a beverage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467726.jpg', 'caption': 'A tray of food on a table with a fork ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467726.jpg', 'caption': 'A lunchbox with vegetables, fruit, a sandwich and a cup of tea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476349.jpg', 'caption': 'A man riding a snowboard down the side of a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476349.jpg', 'caption': 'A snowboarder is sitting on a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476349.jpg', 'caption': 'Snowboarder in blue coat making turn on large slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476349.jpg', 'caption': 'a boy is sitting out in the snow with a board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476349.jpg', 'caption': 'The snow boarder is sitting in the snow on the hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548336.jpg', 'caption': 'THIS IS A PHOTO OF TWO HAPPY CHILDREN SITTING AT THE TABLE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548336.jpg', 'caption': 'The two children are happy about the donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548336.jpg', 'caption': 'a coupe of kids sit at a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548336.jpg', 'caption': 'a couple of kids that are sitting at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548336.jpg', 'caption': 'a young boy and young girl surprised sitting at a kitchen table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013832.jpg', 'caption': 'close up of a chicken sandwich and fries on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013832.jpg', 'caption': 'A burger with fried chicken, lettuce, and pickles on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013832.jpg', 'caption': 'A sandwich with lettuce and pickles and a side of fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013832.jpg', 'caption': 'A fried chicken sandwich on a bun, and fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013832.jpg', 'caption': 'A very tasty looking sandwich and fries waiting to be eaten. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317028.jpg', 'caption': 'A chocolate donut with a hole in the middle and a partial hole beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317028.jpg', 'caption': 'Person holding a donut shaped object with a chain attached.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317028.jpg', 'caption': 'A man holds up what looks like a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317028.jpg', 'caption': 'A man holds up a chocolate doughnut with chocolate frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317028.jpg', 'caption': 'A young person that is holding a donut in front of their face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153026.jpg', 'caption': 'The pizza has mushroom, sausage, and black olives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153026.jpg', 'caption': 'Meat, cheese, onions, mushrooms and olives on a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153026.jpg', 'caption': 'A very close up picture of a pizza with several toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153026.jpg', 'caption': 'The cheesey pizza has a lot of olives on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153026.jpg', 'caption': 'A closeup picture of a pizza with sausage, olives, and mushrooms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516865.jpg', 'caption': 'Several skiers on the slop in mid jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516865.jpg', 'caption': 'A punch of different shots of a man in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516865.jpg', 'caption': 'The image shows different stages of a jumping skier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516865.jpg', 'caption': 'A group of skiers in the air making crosses with their skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516865.jpg', 'caption': 'A man who is performing a jump on snow skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581205.jpg', 'caption': 'some food is laying out on some plates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581205.jpg', 'caption': 'A table topped with two plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581205.jpg', 'caption': 'two plates on a table with some little sandwiches on them ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581205.jpg', 'caption': 'A choice of poached eggs and bacon on a bagel or donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581205.jpg', 'caption': 'A table set with coffee, sandwiches and donuts. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397063.jpg', 'caption': \"A small ring of raw meat in someone's palm\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397063.jpg', 'caption': 'A person is holding a ring of meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397063.jpg', 'caption': 'A hand holding a donut shaped piece of meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397063.jpg', 'caption': 'A person is holding something circular in their hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397063.jpg', 'caption': 'A circle of uncooked meat in someones hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581010.jpg', 'caption': 'A small bowl containing food beside a coffee cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581010.jpg', 'caption': 'Two doughnut holes in a bowl next to a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581010.jpg', 'caption': 'A cup of coffee and a bowl of muffins on a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581010.jpg', 'caption': 'a close up of a bowl of food near a cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581010.jpg', 'caption': 'A cup off coffee and two muffins on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505792.jpg', 'caption': 'there is a male snowboarder that is in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505792.jpg', 'caption': 'A snowboarder mid flight doing a trick with clouds in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505792.jpg', 'caption': 'A person on a snowboard that just went off of a jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505792.jpg', 'caption': 'A man is getting air on his snowboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505792.jpg', 'caption': 'there is a man jumping in the air on a snow board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212766.jpg', 'caption': 'Two boxes of pizza sit on a wood table and one of the boxes is closed while the other is open to reveal a whole pizza inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212766.jpg', 'caption': 'Two boxes of pizza, one is ham and pineapple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212766.jpg', 'caption': 'A Dominos Pizza with pineapples on the pizza on the table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212766.jpg', 'caption': 'A takeout pizza with pineapple next to a pizza box on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212766.jpg', 'caption': 'two pizza boxes sitting on a dining table, one of them left open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192457.jpg', 'caption': 'A donut on a plate with a fork and knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192457.jpg', 'caption': 'A donut is on a plate with knife and fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192457.jpg', 'caption': 'A glazed donut on a plate with a knife and fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192457.jpg', 'caption': 'A butter knife and a fork next to a glazed doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192457.jpg', 'caption': 'A glazed donut sits on a plate inbetween a fork and a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558955.jpg', 'caption': 'A black and white soccer ball sits in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558955.jpg', 'caption': 'A picture of a soccer ball in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558955.jpg', 'caption': 'a black and white soccer ball on some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558955.jpg', 'caption': 'An out of focus soccer ball on a green field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558955.jpg', 'caption': 'A close up of a soccer ball sitting on a green lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401027.jpg', 'caption': 'A plate that has a sandwich on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401027.jpg', 'caption': 'A white plate topped with a sandwich and mustard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401027.jpg', 'caption': 'A plate of food with bread, grape tomatoes, cheese, cucumbers and sauce on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401027.jpg', 'caption': 'A table with a white dinner plate that has a sandwich on it and side of mustard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401027.jpg', 'caption': 'A sandwich with vegetables and cheese on thick bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498940.jpg', 'caption': 'A group of people including military personnel play soccer together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498940.jpg', 'caption': 'A group of men kicking around a ball on a pile of rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498940.jpg', 'caption': 'soldiers playing a game with some of the locals in the area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498940.jpg', 'caption': 'Two soldiers kick a ball with several young men. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000498940.jpg', 'caption': 'American soldiers playing football with some asians ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457566.jpg', 'caption': 'A plate with an open face sandwiched topped with cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457566.jpg', 'caption': 'A generously packed sandwich makes a good lunch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457566.jpg', 'caption': 'Sandwich sitting on a plate next to a glass of juice. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457566.jpg', 'caption': 'An open sandwich with onions on a small plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457566.jpg', 'caption': 'A sandwich served on a plate with a drink next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063804.jpg', 'caption': 'A woman with a computer is eating a doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063804.jpg', 'caption': 'A women getting ready to eat a doughnut .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063804.jpg', 'caption': 'There is a woman eating a donut in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063804.jpg', 'caption': 'The women eats a donut in front of her computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063804.jpg', 'caption': 'A woman eating a doughnut sitting at a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028998.jpg', 'caption': 'A kid in a field with a muffin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028998.jpg', 'caption': 'a small boy in a red shirt is holding a donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028998.jpg', 'caption': 'A young boy holding up a piece of food at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028998.jpg', 'caption': 'Little boy eating a donut at a fair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028998.jpg', 'caption': 'A boy holds something in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361901.jpg', 'caption': 'Food items in basket with wine glass on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361901.jpg', 'caption': 'a couple of sandwiches are sitting on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361901.jpg', 'caption': 'some sandwiches wrapped in white paper and a drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361901.jpg', 'caption': 'There are two sandwiches in the basket lined with paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361901.jpg', 'caption': 'a basket that has some kind of sandwich on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343254.jpg', 'caption': 'a trey with some bread and juice on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343254.jpg', 'caption': 'Red Wine, Coffee and pastries are served. There is a statue of a frog riding a snail on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343254.jpg', 'caption': 'A table has a plate adorned with desert and coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343254.jpg', 'caption': 'a plate of food with cups on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343254.jpg', 'caption': 'Wine and desserts are served on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220270.jpg', 'caption': 'There are some whole leaves on a sandwich', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220270.jpg', 'caption': 'The sandwich is made of basil, tomato, cheese, prosciutto, and bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220270.jpg', 'caption': 'A sandwich with meat, tomatoes and green leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220270.jpg', 'caption': 'A white plate holding a sandwich that includes meat and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220270.jpg', 'caption': 'A sandwich with meat,cheese and vegetable with the top piece of bread slightly off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005540.jpg', 'caption': 'A cutting board topped with bread, meat and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005540.jpg', 'caption': 'Basil, cheese, tomatoes and bread on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005540.jpg', 'caption': 'a plate with tomato, lettuce, onion and meat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005540.jpg', 'caption': 'tomato, mozzarella, prosciutto and lettuce by a toasted roll', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005540.jpg', 'caption': 'Ingredients for a sandwich sit on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051174.jpg', 'caption': 'A sandwich roll filled with meat on top of tin foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051174.jpg', 'caption': 'A sandwich is laying on its wrapper ready to be eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051174.jpg', 'caption': 'A round sandwich sits on a piece of tin foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051174.jpg', 'caption': 'A beef sandwich on a roll sitting on tin foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051174.jpg', 'caption': 'A meat sandwich resting on top of tin foil. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524535.jpg', 'caption': 'A person is holding a pan full of donuts with blue icing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524535.jpg', 'caption': 'A tray icing covered donuts while a person in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524535.jpg', 'caption': 'Doughnuts with frosting are being made in the kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524535.jpg', 'caption': 'a tray of doughnuts with white icing on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524535.jpg', 'caption': 'Glazed doughnuts on cookie sheet near doughnut machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007107.jpg', 'caption': 'A tray of a variety of donuts with glaze, sprinkles and coconut. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007107.jpg', 'caption': 'A selection of doughnuts sits on an aluminum tray. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007107.jpg', 'caption': 'The plate is covered with small donuts with different icings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007107.jpg', 'caption': 'a large plate that has a bunch of doughnuts on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007107.jpg', 'caption': 'People are being tempted by the donuts on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049502.jpg', 'caption': 'An incredible picture of an individual in the stillness movement. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049502.jpg', 'caption': 'A boy is jumping from a wave on a surfboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049502.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049502.jpg', 'caption': 'A young boy squats on a surfboard above a wave. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049502.jpg', 'caption': 'a young kid does a trick on a surf boar', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196506.jpg', 'caption': 'A woman decorating a double layer cake on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196506.jpg', 'caption': 'A woman decorating a fancy cake in her kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196506.jpg', 'caption': 'A woman standing in front of a coloured cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196506.jpg', 'caption': 'A woman is going to decorate a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196506.jpg', 'caption': 'A woman stands behind a cake and baking decorations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235621.jpg', 'caption': 'A person sitting on rocks near the water holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235621.jpg', 'caption': 'A guy carrying a surfboard and wearing a backpack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235621.jpg', 'caption': 'A person with a backpack with on some rocks with a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235621.jpg', 'caption': 'A woman sitting on a large rock looking out at the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235621.jpg', 'caption': 'A woman is looking into the water ready to go surfing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132509.jpg', 'caption': 'A photo of a person carrying a surf board out of the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132509.jpg', 'caption': 'Image of a photograph of a female surfer carrying a board on her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132509.jpg', 'caption': 'A surfer is walking on the beach on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132509.jpg', 'caption': 'a severely edited photo with too many filters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000132509.jpg', 'caption': 'A woman carrying a surfboard on top of a snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542260.jpg', 'caption': 'kids play soccer is a soccer field, one boy just kicked the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542260.jpg', 'caption': 'A young man kicking a soccer ball down a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542260.jpg', 'caption': 'A player defends his goal during a soccer game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542260.jpg', 'caption': 'A group of kids wearing blue uniforms playing soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542260.jpg', 'caption': 'A boy kicking a soccer ball during a soccer game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439326.jpg', 'caption': 'A black and white panda bear sitting on the ground next to a white thing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439326.jpg', 'caption': 'The Panda is licking the large mound of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439326.jpg', 'caption': 'A panda bear trying to eat from a pack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439326.jpg', 'caption': 'A panda inspecting something that is in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000439326.jpg', 'caption': 'A panda bear investigating a strange object in its pen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139281.jpg', 'caption': 'A black and white panda playing with a rusted sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139281.jpg', 'caption': 'a black bear feeding in the bush alone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139281.jpg', 'caption': 'A panda bear licking an object on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139281.jpg', 'caption': 'A panda bear licking something on the ground. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139281.jpg', 'caption': 'a close up of a panda bear next to a bag ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536517.jpg', 'caption': 'A panda is eating a frozen treat with fruit in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536517.jpg', 'caption': 'a panda bear laying in a field near a rock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536517.jpg', 'caption': 'A panda resting on a hard surface on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536517.jpg', 'caption': 'A panda curled up asleep on a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536517.jpg', 'caption': 'A panda bear playing with a rock. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271759.jpg', 'caption': 'A woman cuts a pan of cookies into bars on a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271759.jpg', 'caption': 'A woman preparing a large pastry in her own kitchen ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271759.jpg', 'caption': 'an elder woman cutting cake into slices ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271759.jpg', 'caption': 'A woman is using a knife to cut fudge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271759.jpg', 'caption': 'A woman that is standing in front of a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505754.jpg', 'caption': 'a piece of cake on a plate near a cup of coffee on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505754.jpg', 'caption': 'A piece of carrot cake and a cup of coffee on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505754.jpg', 'caption': 'A piece of carrot cake and cup of coffee are by a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505754.jpg', 'caption': 'A piece of carrot cake on a white plate with a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505754.jpg', 'caption': 'A piece of coffee cake on a small plate with a mug of coffee beside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052700.jpg', 'caption': 'A group of people standing around a table with plates of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052700.jpg', 'caption': 'Long table filled with cake on individual plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052700.jpg', 'caption': 'Plates of cake sit on a long table at a gathering. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052700.jpg', 'caption': 'A long white table holds many small plates with pieces of cake and forks on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052700.jpg', 'caption': 'Group of people standing along a long table with plates of cake on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327315.jpg', 'caption': 'A cake with a golf scene decorated on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327315.jpg', 'caption': 'This is a cake decorated like a golf green with a bag of golf clubs and two balls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327315.jpg', 'caption': 'A birthday cake that has a golf bag on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327315.jpg', 'caption': 'A cake covered in green and white frosting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327315.jpg', 'caption': 'A cake with green and white frosting and a golf theme.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424880.jpg', 'caption': 'A large slice of angel food cake sitting on top of a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424880.jpg', 'caption': 'A small plate contains a large slice of cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424880.jpg', 'caption': 'A quarter of a cake on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424880.jpg', 'caption': 'A large piece of yellow cake sits on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000424880.jpg', 'caption': 'A large slab of sponge cake sits upon a flowery plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409496.jpg', 'caption': 'A man carrying a surfboard across a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409496.jpg', 'caption': 'A man with goatee carrying a wooden surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409496.jpg', 'caption': 'The man has a surfboard under his arm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409496.jpg', 'caption': 'A man is standing while holding a wooden surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409496.jpg', 'caption': 'A man smiles at the camera while holding a board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522163.jpg', 'caption': 'A man holding a surfboard inside of a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522163.jpg', 'caption': 'His surfboard is a perfect fit for his height.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522163.jpg', 'caption': 'A man is standing in a room holding a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522163.jpg', 'caption': 'The older man is getting ready to surf again.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522163.jpg', 'caption': 'the man holds a newly made surfboard before it is painted', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501122.jpg', 'caption': 'A man standing over an ironing board wearing a gas mask.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501122.jpg', 'caption': 'A man wearing a mask holding a sander.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501122.jpg', 'caption': 'a male in a black shirt is sanding a board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501122.jpg', 'caption': 'A man wearing a protective mask is sanding wood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000501122.jpg', 'caption': 'A man wearing a mask is doing some woodworking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376564.jpg', 'caption': 'A large sheet cake with pools of fruit filling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376564.jpg', 'caption': 'Several items outlined in white with some orange and red items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376564.jpg', 'caption': 'A cake made with several different sections with a candle behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376564.jpg', 'caption': 'A very large cake showing the year sits next to a lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376564.jpg', 'caption': 'A cake that has various gelatins in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234677.jpg', 'caption': 'A giant sonic the hedgehog standing on a beach with a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234677.jpg', 'caption': 'A cartoon character and North Shore surfboard are in the sands of this beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234677.jpg', 'caption': 'A large figure and a surf board in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234677.jpg', 'caption': 'A large Sonic statue on a beach next to a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234677.jpg', 'caption': 'A cartoon character standing on the beach by a surf boards standing in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288224.jpg', 'caption': 'A sandwich on a plate near a bowl of chips and glass of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288224.jpg', 'caption': 'A chicken and tomato sandwich with chips and water on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288224.jpg', 'caption': 'A sandwich sits next to a bowl of chips, and glass of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288224.jpg', 'caption': 'A sandwich sits on a green plate with a glass of water near.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288224.jpg', 'caption': 'A red tray with plates of food and a glass of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147309.jpg', 'caption': 'A plate that has a piece of cake and ice cream on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147309.jpg', 'caption': 'Slices of cheese cake and a glass of wine on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147309.jpg', 'caption': 'Several desserts and a glass of wine on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147309.jpg', 'caption': 'some plates with little desserts on them ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147309.jpg', 'caption': 'A white plate with a piece of cheese cake on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162332.jpg', 'caption': 'two people standing next to a table with a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162332.jpg', 'caption': 'A bride and groom cutting the wedding cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162332.jpg', 'caption': 'A bride and groom cutting their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162332.jpg', 'caption': 'A bride and groom cutting a cake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000162332.jpg', 'caption': 'a couple cutting their wedding cake with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488934.jpg', 'caption': 'A young couple shows off a birthday cake on a plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488934.jpg', 'caption': 'A photo of two people next to a birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488934.jpg', 'caption': 'Two people near a big cake that is decorated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488934.jpg', 'caption': 'A young man and older woman pose for a picture with a birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488934.jpg', 'caption': 'Two people are posing in front of the cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332851.jpg', 'caption': 'A man riding on top of a paddle board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332851.jpg', 'caption': 'A man standing on a surf board with a paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332851.jpg', 'caption': 'A man on a surfboard paddling through the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332851.jpg', 'caption': 'a man that is floating across a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332851.jpg', 'caption': 'A person with a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031280.jpg', 'caption': 'The lamp shines next to the made up bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031280.jpg', 'caption': 'A bedroom area with a bed, lamp and tall windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031280.jpg', 'caption': 'this bed is very large and is under a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031280.jpg', 'caption': 'A bed next to a lit lamp sits empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031280.jpg', 'caption': 'a large bed sitting next to a wall with open windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510857.jpg', 'caption': 'A group of people riding sailboats on blue water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510857.jpg', 'caption': 'People are in the water on boards with sails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510857.jpg', 'caption': 'A couple of windsailers out at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510857.jpg', 'caption': 'A man stands in the surf and watches people windsurfing on a calm ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510857.jpg', 'caption': 'Three surf boards with sails on them in the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111211.jpg', 'caption': 'A television sits on the counter in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111211.jpg', 'caption': 'An empty hotel room with a small bed, tv, and desk with speakers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111211.jpg', 'caption': 'A bedroom with a bed and other furniture and decor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111211.jpg', 'caption': 'A bed in a room next to a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000111211.jpg', 'caption': 'The view of a motel room taken from just inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152012.jpg', 'caption': 'A group of boys play a game of soccer outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152012.jpg', 'caption': 'a group of people playing a game of soccer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152012.jpg', 'caption': 'A group of players kicking a ball on a soccer field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152012.jpg', 'caption': 'A group of youth soccer players playing a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152012.jpg', 'caption': 'A team of soccer players playing a game on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010837.jpg', 'caption': 'Soccor players approach a ball that is in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010837.jpg', 'caption': 'Several young male soccer players play on a field as a ball sails overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010837.jpg', 'caption': 'a group of people playing soccer in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010837.jpg', 'caption': 'Soccer players look on as the soccer ball flies in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010837.jpg', 'caption': 'Several men playing with a soccer ball in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296724.jpg', 'caption': 'A pink and red couch in a room with a pink rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296724.jpg', 'caption': 'The sun hits the floor in a rustic bedroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296724.jpg', 'caption': 'A bed in a bedroom with plaid pillows and blankets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296724.jpg', 'caption': 'a small bedroom all filled with pink colors and accents', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296724.jpg', 'caption': 'A room that has a brick wall and wood floorings with throw carpets on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313770.jpg', 'caption': 'A couple of women standing in front of a large sheet cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313770.jpg', 'caption': 'Two women are at a food table cutting a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313770.jpg', 'caption': 'Two women standing at a table where these it a dessert and other people around in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313770.jpg', 'caption': 'some people and a table with food and drinks', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000192676.jpg', 'caption': 'A large white dead polar bear on display in a museum.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192676.jpg', 'caption': 'A stuffed polar bear posed in mid stride.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192676.jpg', 'caption': 'A polar bear exhibit in a glass case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192676.jpg', 'caption': 'The large stuffed polar bear is on display behind glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192676.jpg', 'caption': 'an image of a stuffed polar bear in a glass case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524263.jpg', 'caption': 'a couple of black bears are in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524263.jpg', 'caption': 'two bears on a field with a stump ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524263.jpg', 'caption': 'Two black animals tied to each other, one standing on a tree stump while the other is standing in the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524263.jpg', 'caption': 'Two cutouts of baby black bears beside a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524263.jpg', 'caption': 'Two bear cubs are chained to each other outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140289.jpg', 'caption': 'Two born bears walking though a forest surrounded by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140289.jpg', 'caption': 'Two full grown brown bears in a habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140289.jpg', 'caption': 'Two bears are roaming around in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140289.jpg', 'caption': 'Two bears around logs in front of a large rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140289.jpg', 'caption': 'Two big bears wandering through the woods together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124387.jpg', 'caption': 'A boy with a monkey backpack throws a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124387.jpg', 'caption': 'Young boy carrying white Frisbee with toy stuffed monkey on back. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124387.jpg', 'caption': 'A young blond boy with a monkey on his back holding a white frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124387.jpg', 'caption': 'A boy wearing a monkey backpack holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124387.jpg', 'caption': 'A little boy is playing Frisbee with a monkey on his back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253693.jpg', 'caption': 'Three zebras in a field of dry brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253693.jpg', 'caption': 'A group of zebra standing in a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253693.jpg', 'caption': 'A group of zebras standing on a dry grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253693.jpg', 'caption': 'Three zebras and a bird standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253693.jpg', 'caption': 'Three zebras that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024776.jpg', 'caption': 'A young child with an orange piece around their head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024776.jpg', 'caption': 'A little girl is wearing a Frisbee on her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024776.jpg', 'caption': 'A young girl who has a disc around her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024776.jpg', 'caption': 'A close up of a young lady wearing an orange ring. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024776.jpg', 'caption': 'A young girl who has an orange disc on her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178616.jpg', 'caption': \"A large dog holding a Frisbee in it's mouth on grassy field.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178616.jpg', 'caption': 'A dog running with a frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178616.jpg', 'caption': 'A dog running with a frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178616.jpg', 'caption': 'A dog runs with a frisbee that he has caught.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178616.jpg', 'caption': \"A black dog is in motion with a frisbee in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093360.jpg', 'caption': 'A small dog is jumping into the air and catching a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093360.jpg', 'caption': 'A dog jumping to catch a purple Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093360.jpg', 'caption': 'A black, white and brown dog jumping to catch a plastic disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093360.jpg', 'caption': 'a dog is jumping up to catch a frisbbe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093360.jpg', 'caption': 'a dog jumping up to catch a frisbee in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403950.jpg', 'caption': 'A group of zebras grazing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403950.jpg', 'caption': 'The zebra are standing near a barbed wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403950.jpg', 'caption': 'A group of zebras shown in a outdoor enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403950.jpg', 'caption': 'a group of zebras standing next to a wire fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403950.jpg', 'caption': 'Some white and black zebras in a field behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020459.jpg', 'caption': 'Two men playing a game of frisbee together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020459.jpg', 'caption': 'a group of kids playing frisbee chasing it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020459.jpg', 'caption': 'Two men playing competitive frisbee against each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020459.jpg', 'caption': 'Two people wearing jerseys are playing with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020459.jpg', 'caption': 'Two men are outside playing with a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418110.jpg', 'caption': 'A dog that is in front of an open refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418110.jpg', 'caption': 'A dog stands on a tile floor in front of an open refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418110.jpg', 'caption': 'a black and white dog and an open refrigerator door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418110.jpg', 'caption': 'A small dog stands beside an open refrigerator door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418110.jpg', 'caption': 'The white and black dog is in front of an open refrigerator', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351787.jpg', 'caption': 'A herd of zebra in a grassy field under a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351787.jpg', 'caption': 'Small group of adult zebras standing under a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351787.jpg', 'caption': 'a group of zebras under a huge shade tree in the middle of a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351787.jpg', 'caption': 'Four zebras gather together beneath the shade of a tree on the grass-swept plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000351787.jpg', 'caption': 'A group of zebras standing beside a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555366.jpg', 'caption': 'A black and white zebra stands in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555366.jpg', 'caption': 'A zebra running at trotting speed across a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555366.jpg', 'caption': 'A zebra standing in a grassy field with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555366.jpg', 'caption': 'A zebra stands in a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555366.jpg', 'caption': 'A zebra standing in a bright green field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041449.jpg', 'caption': 'A young girl tossing a frisbee to an older man', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041449.jpg', 'caption': 'A man and girl playing with frisbee in grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041449.jpg', 'caption': 'A young girl and an older man are tossing a round frisbee at dusk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041449.jpg', 'caption': 'A young girl who is throwing a disc to an older man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041449.jpg', 'caption': 'A man and a girl toss a ring frisbee to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167152.jpg', 'caption': 'Many zebra and one wildebeest on a savanna ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167152.jpg', 'caption': 'A picture of wild livestock in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167152.jpg', 'caption': 'The large herd includes zebra standing amongst antelope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167152.jpg', 'caption': 'A group of zebras and a few wildebeest on the savannah', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167152.jpg', 'caption': 'Herds of animals are on a grassy plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251582.jpg', 'caption': \"A baby zebra drinking milk from a mama zebra's tit.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251582.jpg', 'caption': 'A mother zebra nursing her baby in a fenced in area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251582.jpg', 'caption': 'Two zebras relax in the shade of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251582.jpg', 'caption': 'a young zerbra nursing on its mother in a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251582.jpg', 'caption': 'Mother Zebra nursing Baby zebra under shade tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050782.jpg', 'caption': 'a woman tosses a frisbee in a public park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050782.jpg', 'caption': 'A woman in a grassy field throwing a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050782.jpg', 'caption': 'a woman throwing a frisbee in an unkept filed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050782.jpg', 'caption': 'A woman throwing a frisbee in a small field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050782.jpg', 'caption': 'A woman in a blue shirt engaged in play with a plastic disc.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358799.jpg', 'caption': 'a large zebra standing on some short grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358799.jpg', 'caption': 'A zebra walks across a field of green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358799.jpg', 'caption': 'A zebra that is walking through the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358799.jpg', 'caption': 'A black and white zebra walking in the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358799.jpg', 'caption': 'Zebra prodding in an open grassy field looking agitated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557252.jpg', 'caption': 'a family of two zebras and a baby zebra out on a plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557252.jpg', 'caption': 'A group of zebra standing next to each other on a dry grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557252.jpg', 'caption': 'Three zebras having some fun in the wild.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557252.jpg', 'caption': 'Three zebras are standing close together on the land.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557252.jpg', 'caption': 'Three zebras stand in a grassy area in the wilderness. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136170.jpg', 'caption': 'A zebra walks next to a chain linked fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136170.jpg', 'caption': 'A zebra is all alone in a field of dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136170.jpg', 'caption': \"Zebra walking in it's enclosed fence in the sun\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136170.jpg', 'caption': 'Lonely Zebra walking in the sandy sunny area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136170.jpg', 'caption': 'A zebra walking in dirt area next to fence and blue tarps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186177.jpg', 'caption': 'A pair of zebras in their natural habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186177.jpg', 'caption': 'black and white picture of two zebras in a savannah', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186177.jpg', 'caption': 'Zebras hanging out in their enclosure at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186177.jpg', 'caption': 'One zebra is drinking water while the other is looking out on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000186177.jpg', 'caption': 'Two zebras by a tree one in the foreground and the other in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405998.jpg', 'caption': 'A cake with animals and candles on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405998.jpg', 'caption': 'a close up of a heavily decorated birthday cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405998.jpg', 'caption': \"In front of a child's photograph many toys and candles are kept.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405998.jpg', 'caption': 'An elaborate fourth birthday cake holds plastic animals in a farm scene.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405998.jpg', 'caption': 'A birthday cake decorated with plastic animals and green frosting for grass and a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330022.jpg', 'caption': 'Several toy animals and trees on fake grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330022.jpg', 'caption': 'A farm scene made from small fake trees and animals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330022.jpg', 'caption': 'a bunch of cupcakes with a farm decoration around it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330022.jpg', 'caption': 'A tree, dog, chicken and horse figures stuck into the icing of a cake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330022.jpg', 'caption': 'The miniature plastic toys make up a farm scene.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036765.jpg', 'caption': 'A man is riding a horse and buggy on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036765.jpg', 'caption': 'A photo of a horse pulling a man in a carriage on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036765.jpg', 'caption': 'The man is riding along the beach in a two-wheeled cart pulled by a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036765.jpg', 'caption': 'A horse pulling a sulky walking on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036765.jpg', 'caption': 'A man is on the beach with a brown horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533032.jpg', 'caption': 'An individual is gotten in the quiet of the picture. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533032.jpg', 'caption': 'A man guiding a horse in a black and white photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533032.jpg', 'caption': 'an officer with a horse giving a man a ticket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533032.jpg', 'caption': 'A black and white photo shows a man next to a horse on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533032.jpg', 'caption': 'A horse in harness is standing in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528458.jpg', 'caption': 'A bunch of jockeys riding their horses around a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528458.jpg', 'caption': 'horses running down the track with their jockets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528458.jpg', 'caption': 'Jockeys on horses riding on a racing track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528458.jpg', 'caption': 'The jockeys ride their horses on the dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528458.jpg', 'caption': 'Five horses and their jockeys are in a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134103.jpg', 'caption': 'Four people on horses walk down a trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134103.jpg', 'caption': 'some people are riding horses in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134103.jpg', 'caption': 'A group of people riding horses down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134103.jpg', 'caption': 'Group of four horseback riding through the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134103.jpg', 'caption': 'A group of four people on horseback, riding in an open area that has snow on one side and mountains on the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266991.jpg', 'caption': 'Horses standing around eating grass beside a river. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266991.jpg', 'caption': 'A group of horses are grazing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266991.jpg', 'caption': 'Horses graze in a grassy field behind a stream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266991.jpg', 'caption': 'A heard of wild horses are seen grazing on some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266991.jpg', 'caption': 'some brown and black horses some water grass bushes and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291038.jpg', 'caption': 'A pair of zebras standing in pen, in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291038.jpg', 'caption': 'A zebra is standing next to another smaller zebra near some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291038.jpg', 'caption': 'Two zebras stand next to each other on a cement slab.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291038.jpg', 'caption': 'An adult and baby zebra standing near several logs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000291038.jpg', 'caption': 'A zebra and her baby are standing near wooden logs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156834.jpg', 'caption': 'A female wearing a helmet is riding a horse down a street with stone buildings behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156834.jpg', 'caption': 'A man riding on a horse on a residential street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156834.jpg', 'caption': 'A person riding a horse on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156834.jpg', 'caption': 'A man rides a brown horse down a residential street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156834.jpg', 'caption': 'A person riding a horse on a city street near buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104701.jpg', 'caption': 'Giraffes are grazing on the grass on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104701.jpg', 'caption': 'The trash in the field provides some interest for the Zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104701.jpg', 'caption': 'A zebra in the middle of a field with his head down eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104701.jpg', 'caption': 'A zebra grazes on grass around rocks next to a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104701.jpg', 'caption': 'A zebra standing on top of a field next to a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509766.jpg', 'caption': 'A brown horse leading a horse drawn carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509766.jpg', 'caption': 'The horse and wagon is standing in front of a fruit vendor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509766.jpg', 'caption': 'The horse is hauling produce to the market while a child watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509766.jpg', 'caption': 'some people an outdoor market and a brown horse pulling a cart', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509766.jpg', 'caption': 'A kid stands in front of a horse drawn carriage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208002.jpg', 'caption': 'A horse and colt in tall grass near a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208002.jpg', 'caption': 'A large horse standing with a foal in tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208002.jpg', 'caption': 'A brown horse standing in a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208002.jpg', 'caption': 'A horse and pony stand together in tall grasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000208002.jpg', 'caption': 'A horse standing in a field of tall brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512467.jpg', 'caption': 'A tall black and white horse standing on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512467.jpg', 'caption': 'A large black and white horse has long hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512467.jpg', 'caption': 'A white and black horse grazing in a grass field with trees in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512467.jpg', 'caption': 'A while horse bending down eating grass .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000512467.jpg', 'caption': 'A horse eating grass in a green field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523681.jpg', 'caption': 'A horse eating grass from a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523681.jpg', 'caption': 'There is a black and white horse eating grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523681.jpg', 'caption': 'A black and white horse grazes on short cropped grass in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523681.jpg', 'caption': 'A black and white horse leaned over eating grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523681.jpg', 'caption': 'A black and white horse grazing in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449132.jpg', 'caption': 'A black and white spotted horse in a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449132.jpg', 'caption': 'A spotted horse is grazing in a grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449132.jpg', 'caption': 'A spotted horse grazing next to a decrepit building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449132.jpg', 'caption': 'A spotted horse grazing near to an older model home or barn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449132.jpg', 'caption': 'A spotted horse eats something off the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166255.jpg', 'caption': 'A group of men and women riding horses in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166255.jpg', 'caption': 'A woman smiles as she and a group of people ride horses through the mud.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166255.jpg', 'caption': 'A group of people riding horses into a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166255.jpg', 'caption': 'A person that is on top of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166255.jpg', 'caption': 'A young woman horseback riding with her friends', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413634.jpg', 'caption': 'A person rides on the back of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413634.jpg', 'caption': 'A woman riding a horse in equestrian clothing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413634.jpg', 'caption': 'A woman in equestrian dress rides a palomino in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413634.jpg', 'caption': 'A jockey riding their horse across a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413634.jpg', 'caption': 'A lady in a fancy riding suit on top of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382770.jpg', 'caption': 'A person riding on a waterski holding a handle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382770.jpg', 'caption': 'This picture taken from a boat shows a person water skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382770.jpg', 'caption': 'A wake boarder riding on a wave, in the middle of a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382770.jpg', 'caption': 'A man skis behind a boat on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382770.jpg', 'caption': 'A person on a board in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368602.jpg', 'caption': 'A man is water skiing behind a motorboat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368602.jpg', 'caption': 'A guy wearing green shorts and water skiing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368602.jpg', 'caption': 'a water skier in green trunks is water skiing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368602.jpg', 'caption': 'a man waterskiing behind a white boat on a lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368602.jpg', 'caption': 'A man skies across the water behind a boat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209431.jpg', 'caption': 'A white plate with an egg, parsley, dates, and lettuce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209431.jpg', 'caption': 'A plate of food is arranged with fruit and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209431.jpg', 'caption': 'A plate with vegetables and a tangerine around the edge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209431.jpg', 'caption': 'A plate holds several different vegetables and fruit including an orange and lettuce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209431.jpg', 'caption': 'A white table with a plate of food that includes orange and egg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156772.jpg', 'caption': 'Several fruits with Chinese characters written on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156772.jpg', 'caption': 'the apple has words on it in chinese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156772.jpg', 'caption': 'Apples and oranges grouped together in a bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156772.jpg', 'caption': 'a couple of apples and oranges next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156772.jpg', 'caption': 'The red apples near the oranges have writing on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117337.jpg', 'caption': 'A series of images of fruit, cake and other items sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117337.jpg', 'caption': 'A series of photographs with an orange and turquoise theme', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117337.jpg', 'caption': 'A collaboration of colorful pictures with orange and blue and green', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117337.jpg', 'caption': 'There is a collage of various pictures of various things', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117337.jpg', 'caption': 'different photos of assored orange and blue items', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360529.jpg', 'caption': 'a bunch of items on a store shelf ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360529.jpg', 'caption': 'an assortment of toys being displayed in the store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360529.jpg', 'caption': 'Some shelves in a store selling Halloween items', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360529.jpg', 'caption': 'A store shelf filled with lots of Halloween items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360529.jpg', 'caption': 'An aisle in a store that is selling holiday items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575179.jpg', 'caption': 'A plate topped with small sandwiches with meat and veggies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575179.jpg', 'caption': 'Those sandwiches look very delicious and are healthy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575179.jpg', 'caption': \"Several sandwich's sliced and neatly arranged on a plate.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575179.jpg', 'caption': 'Cucumber sandwiches and tuna sandwiches sit on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575179.jpg', 'caption': 'Small sandwiches with tomatoes and cucumbers slices in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548957.jpg', 'caption': 'A bunch of apples and oranges in a closeup ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548957.jpg', 'caption': 'We see a pile of apples and oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548957.jpg', 'caption': 'There are apples and oranges in a pile', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548957.jpg', 'caption': 'Apples and oranges pile in well lit color photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548957.jpg', 'caption': 'A bunch of apples and oranges stacked together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463724.jpg', 'caption': 'Orange slices, onion slices, and pieces of bologna frying in a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463724.jpg', 'caption': 'A pot of liquid filled with fruit and meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463724.jpg', 'caption': 'An orange and some sausage are in a frying pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463724.jpg', 'caption': 'Oranges, beets, and meat in a red juice or sauce. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463724.jpg', 'caption': 'a bowl fiilled with a liquid with fruit slices', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130948.jpg', 'caption': 'a day of the dead offering with fruit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130948.jpg', 'caption': 'Candles, pumpkins, and skull decorations on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130948.jpg', 'caption': 'A table topped with Halloween decorations and food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130948.jpg', 'caption': 'A table decorated with skulls with apples, oranges, and pumpkins. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130948.jpg', 'caption': 'A display on a table, with skulls, candles, and small pumpkins.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064136.jpg', 'caption': 'A banana tree in a forest of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064136.jpg', 'caption': 'a banana tree in the woods with bananas on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064136.jpg', 'caption': 'A vine holding several bunches of green bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064136.jpg', 'caption': 'A bunch of fruit growing in the forest ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064136.jpg', 'caption': \"Green banana's on banana tree surrounded by other trees.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189566.jpg', 'caption': 'A woman and two men are displayed on a small television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189566.jpg', 'caption': 'A picture of two guys and a girl Photoshopped onto a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189566.jpg', 'caption': 'The people are watching a show on television. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189566.jpg', 'caption': 'A small old fashioned TV with rabbit ears on a small stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189566.jpg', 'caption': 'A picture of three people inside an old-time TV set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336360.jpg', 'caption': 'A woman standing over a table filled with bowls of oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336360.jpg', 'caption': 'A woman in a green shirt stands near a table with bowls or oranges on it in a market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336360.jpg', 'caption': 'Vendors in an open air market cell varieties of citrus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336360.jpg', 'caption': 'An Asian couple working in a market stall selling oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000336360.jpg', 'caption': 'People at a fruit stand looking at oranges to buy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232460.jpg', 'caption': 'A man wearing a glove pitching a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232460.jpg', 'caption': 'I am not sure if he is a professional baseball player or not.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232460.jpg', 'caption': 'A baseball player throws his arm back to make a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232460.jpg', 'caption': 'a baseball player wearing black and white is throwing a ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232460.jpg', 'caption': 'A baseball player is preparing to pitch the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174386.jpg', 'caption': 'Bananas hanging from the ceiling by attached strings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174386.jpg', 'caption': 'Bunches of bananas are hanging on hooks in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174386.jpg', 'caption': 'Several bunches of bananas hanging from pieces of string', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174386.jpg', 'caption': 'Several bunches of bananas, some still attached to the branch, hanging from hooks in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174386.jpg', 'caption': 'Several bunches of bananas hanging in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346752.jpg', 'caption': 'a big plate that has some fruit on top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346752.jpg', 'caption': 'A plate with oranges and cups on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346752.jpg', 'caption': 'a plate with a bunch of grapefruit slices on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346752.jpg', 'caption': 'Slices of orange peel filled with orange jello.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346752.jpg', 'caption': 'A white plate topped with blood oranges on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067002.jpg', 'caption': 'A store filled with merchandise with workers and customers standing inside of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067002.jpg', 'caption': 'A number of small shops set up at a trade show.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067002.jpg', 'caption': 'a small square food stand selling bananas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067002.jpg', 'caption': 'A colorful market booth sells bananas to a customer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067002.jpg', 'caption': 'A banana banner is advertising bags of foods while next door a pipe banner advertises for fruit at a grocery stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096327.jpg', 'caption': 'A banana, peanut butter, and crackers is sitting on a white plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096327.jpg', 'caption': 'A spoon of peanut butter is on a plate with a banana and cookies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096327.jpg', 'caption': 'A white plate topped with a sliced up banana, peanut butter and cookies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096327.jpg', 'caption': 'A plate that has some peanut butter, a banana, and some crackers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000096327.jpg', 'caption': 'A banana and some healthy snacks on a plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160341.jpg', 'caption': 'A person holding skis standing in front of a cabin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160341.jpg', 'caption': 'A woman standing in front of a cabin in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160341.jpg', 'caption': 'Individual standing by a set of skis with a lodge in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160341.jpg', 'caption': 'A person outside of a ski lodge with a collection of skis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160341.jpg', 'caption': 'A man sanding on a ski slope while holding a set of skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406403.jpg', 'caption': 'A person skis with mountains in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406403.jpg', 'caption': 'The person stands on the snow near the snow covered mountains. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406403.jpg', 'caption': 'A person who is walking with snow skis on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406403.jpg', 'caption': \"a person that's wearing skis near huge mountains.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406403.jpg', 'caption': 'This is a mountainous view from the side of a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368459.jpg', 'caption': 'Two people riding a ski lift with snowboards on their feet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368459.jpg', 'caption': 'Two people are sitting in a chair lift with their feet on a snow board and skis dangling ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368459.jpg', 'caption': 'a couple sitting on a bench and headed up a snow mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368459.jpg', 'caption': 'Two people sit on a ski lift with snowboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000368459.jpg', 'caption': 'Two snowboarders ride the ski lift to the top of the mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184207.jpg', 'caption': 'A little boy standing next to a bunch of unripe bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184207.jpg', 'caption': 'A boy in white shirt standing next to a bunch of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184207.jpg', 'caption': 'A person picking a leaf off of a banana tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184207.jpg', 'caption': 'there is a boy and a man standing near a banana tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184207.jpg', 'caption': 'A young boy is standing next to the banana tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266932.jpg', 'caption': 'A bunch of cooking supplies and bananas sitting on a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266932.jpg', 'caption': 'Some ripe bananas are on a kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266932.jpg', 'caption': 'A kitchen counter with ingredients measured and ready to mix in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266932.jpg', 'caption': 'A kitchen counter with some bananas and eggs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266932.jpg', 'caption': 'the supplies on a counter to make some banana bread ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259037.jpg', 'caption': 'A man dressed in baseball clothing and holding a baseball glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259037.jpg', 'caption': 'Man wearing athletic shirt and baseball glove on wooden floor indoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259037.jpg', 'caption': 'A man indoors in a baseball uniform and ball glove expecting a throw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259037.jpg', 'caption': 'A person standing in a room with a baseball glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259037.jpg', 'caption': 'A man in a uniform holding a catchers mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478550.jpg', 'caption': 'A man riding skis down a snow covered ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478550.jpg', 'caption': 'Man skiing in a black coat down a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478550.jpg', 'caption': 'A skier using poles while skiing over snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478550.jpg', 'caption': 'a man skiing by himself through the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478550.jpg', 'caption': 'A snow skier is going through the glassy snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388130.jpg', 'caption': 'A plate of food with vegetables and meat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388130.jpg', 'caption': 'There are vegetables and meat on the dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388130.jpg', 'caption': 'A plate is filled with stir fried vegetables and meat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388130.jpg', 'caption': 'A picture of a play on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388130.jpg', 'caption': 'A plate of food containing meat, carrots and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528875.jpg', 'caption': 'pans filled with assorted veggies, fruit and rice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528875.jpg', 'caption': 'TWO CONTAINERS OF FOOD SITTING ON TOP OF CONCRETE STEP', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528875.jpg', 'caption': 'a close up of a container with many different foods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528875.jpg', 'caption': 'Two rectangular boxes with chop sticks have food in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528875.jpg', 'caption': 'Two bento boxes of stir fry, rice and assorted fruits and vegetables, with one pair of chopsticks resting on a container of the food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013991.jpg', 'caption': 'A pan filled with meat and vegetables cooking on a stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013991.jpg', 'caption': 'A tofu and broccoli dish simmering on the stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013991.jpg', 'caption': 'A spoon sits in a dish of tofu, broccoli, and mushrooms on a gas stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013991.jpg', 'caption': 'Tofu, broccoli and mushrooms being cooked on a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013991.jpg', 'caption': 'A skillet filled with meat and vegetables on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161124.jpg', 'caption': 'Two skiers sliding down the hill on the pathway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161124.jpg', 'caption': 'Two snow skiers are going down a trail by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161124.jpg', 'caption': 'Two people skiing downhill in the woods together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161124.jpg', 'caption': 'Two skiers going through a snowy forest at daytime.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161124.jpg', 'caption': 'Two people in the middle of a skiing trail with trees lined on each side of the trail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420357.jpg', 'caption': 'A baseball player in red and white contorts his body as a ball hovers in the air above him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420357.jpg', 'caption': 'A baseball player throwing a ball towards the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420357.jpg', 'caption': 'A baseball player throws the ball in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420357.jpg', 'caption': 'A baseball player after he threw the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420357.jpg', 'caption': 'The baseball player is throwing the ball hard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402410.jpg', 'caption': 'A person jumping down a snowy hill on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402410.jpg', 'caption': ' a single person snowboarding down a hill surrounded by bushes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402410.jpg', 'caption': 'A man with blue pants is on a snowy hillside a couple feet off the ground on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402410.jpg', 'caption': 'there is a snowboarder going down a snow hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402410.jpg', 'caption': 'The man is in the air after jumping on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425964.jpg', 'caption': 'an image of a man sitting in front of desert at a restaurant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425964.jpg', 'caption': 'A man looking at an ice cream dessert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425964.jpg', 'caption': 'A man looks at a dessert sitting in front of him at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425964.jpg', 'caption': 'A young man sitting with a large banana split in front of him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000425964.jpg', 'caption': 'A young man sits at a restaurant looking at a huge banana split sundae.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235244.jpg', 'caption': 'A plate topped with bananas and red potatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235244.jpg', 'caption': 'The fried dough is on a plate next to small bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235244.jpg', 'caption': 'A white table holding a plate of food that includes small bananas and fried balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235244.jpg', 'caption': 'A white and blue plate with raw and fried plantains..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000235244.jpg', 'caption': \"A group of fried foods next to a small stack of banana's.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192095.jpg', 'caption': 'A man pitching a baseball on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192095.jpg', 'caption': 'A woman is preparing to throw the baseball at the game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192095.jpg', 'caption': 'A baseball pitcher is in a position to throw the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192095.jpg', 'caption': 'A baseball player in a red jersey winding up for a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192095.jpg', 'caption': 'A person throwing a baseball onto the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510080.jpg', 'caption': 'A man presses a banana against his forehead while staring forward.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510080.jpg', 'caption': 'man with brown eyes holding a banana to his temple ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510080.jpg', 'caption': 'A man holding up a ripe yellow banana to the side of his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510080.jpg', 'caption': 'An image of a man holding a banana to his temple', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510080.jpg', 'caption': 'A man is holding a banana up to his temple. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260036.jpg', 'caption': 'A man riding up the side of a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260036.jpg', 'caption': 'A young man performing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260036.jpg', 'caption': 'A shirtless man is riding a skateboard on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260036.jpg', 'caption': 'A person on a skate board flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000260036.jpg', 'caption': 'A shirtless skateboarder enjoying his sport with no protective gear on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480509.jpg', 'caption': 'A crowd watches as a man rides a skateboard in a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480509.jpg', 'caption': 'A person riding on his skateboard in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480509.jpg', 'caption': 'A skateboarder grinding on a bowl in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480509.jpg', 'caption': 'People watching a skateboard competition with one participant about to descend down the ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480509.jpg', 'caption': 'A skateboarder does a trick in a crowded skatepark covered in graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360716.jpg', 'caption': 'The skiing woman is jumping in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360716.jpg', 'caption': 'A skier is making a jump off of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360716.jpg', 'caption': 'a person is in the air on a pair of skis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360716.jpg', 'caption': 'A professional ski jumper skiing off a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360716.jpg', 'caption': 'a kid doing a jump off of a little hill on snow skis ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478723.jpg', 'caption': 'A kid on a skate board at the top of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478723.jpg', 'caption': 'a person standing on a skateboard along the side of a wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478723.jpg', 'caption': 'A skateboarder is balanced on the edge of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478723.jpg', 'caption': 'The man is riding down the wall on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478723.jpg', 'caption': 'A man doing a skateboard trick on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211476.jpg', 'caption': 'Two plastic black containers filled with food on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211476.jpg', 'caption': 'A bento box of food with a powered lemonade mix stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211476.jpg', 'caption': 'Two bowls of food next to a pack of lemonade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211476.jpg', 'caption': 'Two large pots full of different kinds of food .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211476.jpg', 'caption': 'Two ready to go meals along with some lemonade drink mix.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048719.jpg', 'caption': 'a close up of a plate of broccoli and sauce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048719.jpg', 'caption': 'a plate full of vegetables and dressing on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048719.jpg', 'caption': 'A pile of broccoli with bacon bits covered in ranch dressing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048719.jpg', 'caption': 'A white plate topped with cheese covered broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048719.jpg', 'caption': 'Broccoli with diced red pepper and a cream sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330986.jpg', 'caption': 'A human a doing something right now that is full.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330986.jpg', 'caption': 'A woman standing on skis in the show posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330986.jpg', 'caption': 'A women who is wearing some snow skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330986.jpg', 'caption': 'A young lady thats skiing is smiling for the camera man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330986.jpg', 'caption': 'A woman on skies standing on a hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146240.jpg', 'caption': 'A man riding skateboard into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146240.jpg', 'caption': 'A guy performing a trick on his skateboard at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146240.jpg', 'caption': 'a man is doing a trick on a skateboard in a ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146240.jpg', 'caption': 'A man in the air on a skateboard doing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146240.jpg', 'caption': 'A young man is skating on the ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363522.jpg', 'caption': 'A man riding on top of a hand rail with a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363522.jpg', 'caption': 'A man skating on stairs next to a building as people watch him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363522.jpg', 'caption': 'A man skating down a stair rail in front of a bunch of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363522.jpg', 'caption': 'A skateboarder is skating down a railing next to some stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363522.jpg', 'caption': 'A man riding a skateboard down the rail of some stairs while a group of people watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181677.jpg', 'caption': 'A skateboarder in mid air during a stunt ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181677.jpg', 'caption': 'A person on his skate board in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181677.jpg', 'caption': 'A man riding a skateboard while riding into the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181677.jpg', 'caption': 'a person jumping a skate board in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000181677.jpg', 'caption': 'An individual is in the open view in the image.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298691.jpg', 'caption': 'a big bowl on a table filled with broccoli ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298691.jpg', 'caption': 'A pan that has some meat and vegetables in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298691.jpg', 'caption': 'A metal pan of food that includes broccoli and nuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298691.jpg', 'caption': 'A broccoli based stir fry in a metal round pan with nuts on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298691.jpg', 'caption': 'A bowl of several different types of vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426777.jpg', 'caption': 'Several pieces of a pie with broccoli on it among other things. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426777.jpg', 'caption': 'A pan with missing slices of pizza that had cheese, meat and broccoli as its toppings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426777.jpg', 'caption': 'Broccoli and beef pizza on a plate for a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426777.jpg', 'caption': 'A pan topped with a half of a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426777.jpg', 'caption': 'A pizza cut into slices with unusual ingredients.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370170.jpg', 'caption': 'A salad of noodles, asparagus and meat in a dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370170.jpg', 'caption': 'A bowl filled with pasta and broccoli covered in sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370170.jpg', 'caption': 'a skillet with some food inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370170.jpg', 'caption': 'some noodles and veggies are in a bowl together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370170.jpg', 'caption': 'a pasta dish with broccoli and bacon bits', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149470.jpg', 'caption': 'A man jumping into the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149470.jpg', 'caption': 'A skateboarder riding on a park bench, on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149470.jpg', 'caption': 'A YOUNG MAN IS DOING A STUNT ON HIS SKATEBOARD', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149470.jpg', 'caption': 'The man is doing tricks on his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149470.jpg', 'caption': 'A man skateboarding at an outdoor skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142360.jpg', 'caption': 'A man riding a skateboard through the air next to a palm tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142360.jpg', 'caption': 'A gentleman is trying to pull off a skateboarding trick. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142360.jpg', 'caption': 'A skateboarder is separated from the board as he performs a stunt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142360.jpg', 'caption': 'A boy is flying off of his skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142360.jpg', 'caption': 'A boy is practicing jumping on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134542.jpg', 'caption': 'A newspaper covered in candy, fruit and goodies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134542.jpg', 'caption': 'Halloween trick-o-treat goodies laid out on newspaper after sorting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134542.jpg', 'caption': 'A newspaper that has assorted food items scattered on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134542.jpg', 'caption': 'A bunch of food and candy sorted on a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134542.jpg', 'caption': 'a lot of treats on a newspaper with candies and apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216576.jpg', 'caption': 'A group of young people wearing ski equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216576.jpg', 'caption': 'many skiers are standing in a row with red black and blue jackets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216576.jpg', 'caption': 'A group of skiers are standing in semi circle for a photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216576.jpg', 'caption': 'A large group of people in skis are lined up for a group picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216576.jpg', 'caption': 'A group of people lined up wearing ski suits and skis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249277.jpg', 'caption': 'A group of people walking down a street near a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249277.jpg', 'caption': 'some people sitting on benches and some people walking', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249277.jpg', 'caption': 'Many people are near and on the benches close to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249277.jpg', 'caption': 'A group of people sit and stand in front of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249277.jpg', 'caption': 'People are walking along the sidewalk next to a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018336.jpg', 'caption': 'A little girl taking a bite out of a apple. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018336.jpg', 'caption': 'a small child is eating some red fruit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018336.jpg', 'caption': 'The young child is eating a piece of fruit at the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018336.jpg', 'caption': 'A young girl eats a piece of fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000018336.jpg', 'caption': 'Small girl eating apple with pink cupcake shirt on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021217.jpg', 'caption': 'Two apples and a bowl and jar of applesauce on a cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021217.jpg', 'caption': 'Apples and applesauce are sitting on a white doily.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021217.jpg', 'caption': 'A striped place mat and lace doily are on a table with two apples and apple butter in a jar and bowl with spoons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021217.jpg', 'caption': 'Two apples next to a bowl and a cup with applesauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000021217.jpg', 'caption': 'A bowl and a jar of applesauce sits next to two apples on a white doily and striped red tablecloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516641.jpg', 'caption': 'a small cup of oats revolution oatmeal with apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516641.jpg', 'caption': 'Small bowl of oatmeal and the box it came from, with apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516641.jpg', 'caption': 'A bowl of oats next to some apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516641.jpg', 'caption': 'A bowl of oats sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516641.jpg', 'caption': 'A bowl with cereals, a spoon, apples and a packet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030447.jpg', 'caption': 'a bunch of bowls of soup sit next to a bowl of fruit ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030447.jpg', 'caption': 'Ramekins filled and cooked in front of a bowl on apples. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030447.jpg', 'caption': 'Ramekins of food next to a bowl of fresh apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030447.jpg', 'caption': 'A table topped with a white bowl of fruit next to brown cups of something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030447.jpg', 'caption': 'a couple of bowls filled with some soup ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262325.jpg', 'caption': 'A bowl that has various types of food in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262325.jpg', 'caption': 'A white bowl filled with broccoli and carrot slices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262325.jpg', 'caption': 'A serving of broccoli and carrots in a white dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262325.jpg', 'caption': 'Broccoli and carrots shown in white serving dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262325.jpg', 'caption': 'Some of the broccoli in this bowl are starting to yellow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004256.jpg', 'caption': 'A table set for two with salad and bread', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004256.jpg', 'caption': 'a table set for two with servings of broccoli with sauce on each plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004256.jpg', 'caption': 'A birds eye view of a set table containg a meal for two ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004256.jpg', 'caption': 'A meal for two of broccoli and bread', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004256.jpg', 'caption': 'A place setting with bowls of broccoli and cauliflower with utensils', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347276.jpg', 'caption': 'Two plates have brocolli on them that is smothered in cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347276.jpg', 'caption': 'Two white plates of broccoli covered in white sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347276.jpg', 'caption': 'Two plates with broccoli covered in a white sauce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347276.jpg', 'caption': 'There is some roasted broccoli covered in a white sauce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347276.jpg', 'caption': 'Broccoli florets topped with hollandaise sauce on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471342.jpg', 'caption': 'A bowl filled with lots of vegetables and rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471342.jpg', 'caption': 'A dish of rice and broccoli on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471342.jpg', 'caption': 'A nice looking plate of broccoli with rice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471342.jpg', 'caption': \"A bowl of broccolli and something else that I don't know.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471342.jpg', 'caption': 'Broccoli and rice in a large bowl on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567444.jpg', 'caption': 'A tree filled with lots of apples and leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567444.jpg', 'caption': 'A bunch of apples growing on a branch together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567444.jpg', 'caption': 'Several apples of various sizes on a tree limb. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567444.jpg', 'caption': 'A bunch of apples are hanging from a branch with leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567444.jpg', 'caption': 'some red apples are growing on a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122239.jpg', 'caption': 'A small boy with blonde hair eats an apple', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122239.jpg', 'caption': 'This little boy wearing a jacket is holding a red apple. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122239.jpg', 'caption': 'A little kid that is eating an apple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122239.jpg', 'caption': 'a small blond boy has a red apple', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122239.jpg', 'caption': 'The young boy is holding an apple with bites in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044627.jpg', 'caption': 'A boy doing a trick on a skateboard off a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044627.jpg', 'caption': 'A man doing a trick on his skate board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044627.jpg', 'caption': 'The skateboarder is attempting a very difficult trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044627.jpg', 'caption': 'A man who is performing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044627.jpg', 'caption': 'A skateboarder in air after a skateboard jump ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349006.jpg', 'caption': 'A person riding a skateboard down a street lined with parked cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000349006.jpg', 'caption': 'A person is riding a skateboard down the street.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000347688.jpg', 'caption': 'A person is jumping and stretching holding a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347688.jpg', 'caption': 'a person playing tennis and stretching to reach the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347688.jpg', 'caption': 'tennis playing reaching to get the ball on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347688.jpg', 'caption': 'Man in blue shorts and grey shirt swinging at a tennis ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565571.jpg', 'caption': 'a young man on a tennis court swinging a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565571.jpg', 'caption': 'A person on a tennis court in the middle of the play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565571.jpg', 'caption': 'a tennis players runs to hit the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565571.jpg', 'caption': 'A tennis player hitting a ball in a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565571.jpg', 'caption': 'A woman has just hit a tennis ball with her racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258628.jpg', 'caption': 'A young boy getting ready to swing at a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258628.jpg', 'caption': 'A boy about to hit a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258628.jpg', 'caption': 'Young boy playing tennis gets ready to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258628.jpg', 'caption': 'A young boy on a tennis court with a racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258628.jpg', 'caption': 'Boy poised about to forehand smash a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569900.jpg', 'caption': 'This living room features clashing colors between the couch and the door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569900.jpg', 'caption': 'Jackets hanging on a rack in a room with a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569900.jpg', 'caption': 'A small living room has a couch and tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569900.jpg', 'caption': 'A living room with a couch, table, tv, door, and coat holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569900.jpg', 'caption': 'A living room in a small apartment complex.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015947.jpg', 'caption': 'A room filled with furniture and hardwood floors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015947.jpg', 'caption': 'The house appears to be clean and beautifully decorated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015947.jpg', 'caption': 'View of a partial kitchen and living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015947.jpg', 'caption': 'A neat living room and clean kitchen with a hardwood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015947.jpg', 'caption': 'An interior shot of a living area with wooden accent modern decor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120285.jpg', 'caption': 'A living room filled with furniture next to a fire place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120285.jpg', 'caption': 'A modern living room has large bright windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120285.jpg', 'caption': 'A clean, organized room with a fireplace and TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120285.jpg', 'caption': 'The living room of a modern house with large windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120285.jpg', 'caption': 'A spacious and airy room with sofa, table, chairs and LED.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552504.jpg', 'caption': 'a little girl that is running around with a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552504.jpg', 'caption': 'A young girl holds the string of a kite over her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552504.jpg', 'caption': 'A little girl playing with a kite in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552504.jpg', 'caption': 'A young girl playing with a kite, in a football field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552504.jpg', 'caption': 'A little girl flying a white kite on a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422383.jpg', 'caption': 'a bunch of tents set up on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422383.jpg', 'caption': 'Several kites sitting on a sandy beach during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422383.jpg', 'caption': 'Kites laying on the beach on a sunny day ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422383.jpg', 'caption': 'Several kites of different colors laying on the sand on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422383.jpg', 'caption': 'Some personal tents are in the dirt outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115459.jpg', 'caption': 'A young girl flying a kite in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115459.jpg', 'caption': 'A girl on a field pulling an orange kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115459.jpg', 'caption': 'A girl flying a yellow kite on a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115459.jpg', 'caption': 'A barefoot girl with braids flies a kite. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115459.jpg', 'caption': 'A girl flying a kite near some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250571.jpg', 'caption': 'A kite flying over the ocean in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250571.jpg', 'caption': 'A large flamingo kite is flying high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250571.jpg', 'caption': 'The people are flying the large kite on the beach by the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250571.jpg', 'caption': 'A beach with people and a kite that looks like a bird in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250571.jpg', 'caption': 'A flamingo shaped kite flying over the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118432.jpg', 'caption': 'A crowd of people flying kites on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118432.jpg', 'caption': 'A group of people fly kites in the field of a city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118432.jpg', 'caption': 'Many people enjoying flying kites in a city park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118432.jpg', 'caption': 'Several people in a park sitting and standing flying kites. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118432.jpg', 'caption': 'A park with a lot of people flying kites ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060069.jpg', 'caption': 'A person kiteboarding over waves in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060069.jpg', 'caption': 'a guy on a surfboard with a kite attached to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060069.jpg', 'caption': 'A person parasailing near the beach with a black and white sail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060069.jpg', 'caption': 'A kite surfer moving with a strong wind', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000060069.jpg', 'caption': 'Someone is wind sailing cross the ocean in a wet suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378048.jpg', 'caption': 'People sitting and some standing on the grass with a kite flying and palm trees in the background near buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378048.jpg', 'caption': 'People are watching other people fly a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378048.jpg', 'caption': 'some people are on some grass flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378048.jpg', 'caption': 'A park with not much shade and a kite flying', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378048.jpg', 'caption': 'A group of people flying kites on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065860.jpg', 'caption': 'A man flying a kite above in a blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065860.jpg', 'caption': 'A man flying an airplane kite in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065860.jpg', 'caption': 'A man is looking up at a kite in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065860.jpg', 'caption': 'A man flying a kit shaped like a jet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065860.jpg', 'caption': 'a close up of a person looking up at a kite flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566550.jpg', 'caption': 'A group of people flying kites on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566550.jpg', 'caption': 'People are flying kites on a beach by the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566550.jpg', 'caption': 'Several people on a beach flying kites on a gray looking day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566550.jpg', 'caption': 'Lots of people at the beach flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566550.jpg', 'caption': 'A group of people are flying kites on a beach on a cold day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440226.jpg', 'caption': 'An American flag is waving in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440226.jpg', 'caption': 'American flag flying in foreground of beautiful landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440226.jpg', 'caption': 'People para sailing on a windy day with an American flag blowing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440226.jpg', 'caption': 'A flag flying with kites all around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440226.jpg', 'caption': 'A tilted American flag is jutting into the foreground and flapping in a sky that also holds, what appears to be para-sails, while a bridge marks the distance between a flat expanse of ground and rolling hills fronted by water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205230.jpg', 'caption': 'An individual is in the open view in the image.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205230.jpg', 'caption': 'Children learning to make their own kites. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205230.jpg', 'caption': 'A little girl is sitting at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205230.jpg', 'caption': 'Children are making kites at a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205230.jpg', 'caption': 'A couple kids sitting at a table making arts and crafts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058949.jpg', 'caption': 'A little girl with a baseball bat is waiting for the pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058949.jpg', 'caption': 'A pitcher and batter playing in a softball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058949.jpg', 'caption': 'A girl throwing a softball to a girl with a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058949.jpg', 'caption': 'A girl is up to bat and she has her bat back while the pitcher has his met out and his hand with the ball is ready to pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058949.jpg', 'caption': 'Several children playing softball in a clay field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392010.jpg', 'caption': 'a small girl chasing a white kite in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392010.jpg', 'caption': 'A man and a young child fly a kite in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392010.jpg', 'caption': 'People sitting at picnic tables and flying kites at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392010.jpg', 'caption': 'A man and a child in a park area playing with a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392010.jpg', 'caption': 'A man and a young boy playing with a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007899.jpg', 'caption': 'A baby sitting in the grass watching kites fly in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007899.jpg', 'caption': 'A little baby at the park during a nice day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007899.jpg', 'caption': 'A toddler sits in the grass as kites fly above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007899.jpg', 'caption': 'A baby sitting in the grass looking at the kites in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007899.jpg', 'caption': 'The child is sitting down while watching kites go by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345136.jpg', 'caption': 'a toddler wearing a hat sitting in the dry grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345136.jpg', 'caption': 'A boy wearing a hat is laying on a grass field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345136.jpg', 'caption': 'A young child in a sun hat crawling in hay at a kite fair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345136.jpg', 'caption': 'A boy plays in the grass with kites flying in the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345136.jpg', 'caption': 'A young boy in a blue hat crawling in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557720.jpg', 'caption': 'A large clock shadow on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557720.jpg', 'caption': 'A clock that is in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557720.jpg', 'caption': 'An interesting clock is projected onto the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557720.jpg', 'caption': 'An image of a large clock reflecting on a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557720.jpg', 'caption': 'That looks to be an image of a clock from a projector on the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053919.jpg', 'caption': \"A tall building with a large clock tower projected onto it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053919.jpg', 'caption': 'A very large black clock on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053919.jpg', 'caption': 'A gigantic clock is displayed on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053919.jpg', 'caption': 'A big clock projected on the side of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053919.jpg', 'caption': 'a large clock covering the entire side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059567.jpg', 'caption': 'A man is among a crowd and holding his ear to hear on a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059567.jpg', 'caption': 'A man listens on his cellphone with his free hand in his ear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059567.jpg', 'caption': 'Middle aged man talking on his phone in a crowd', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059567.jpg', 'caption': 'Man in white shirt holding up a cellphone in a crowd. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059567.jpg', 'caption': 'The man is trying to hear what is being said on his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262509.jpg', 'caption': 'A small boat sits on the water next to a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262509.jpg', 'caption': 'A city scape that is seen from the other side of the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262509.jpg', 'caption': 'A city scene that was seen from the other side of a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262509.jpg', 'caption': 'A metropolitan city as viewed from the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262509.jpg', 'caption': 'A small boat is in the water in front of an elaborate looking city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404613.jpg', 'caption': 'Young boy with T-ball and bat pointing at ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404613.jpg', 'caption': 'A his holding a baseball bat by a t ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404613.jpg', 'caption': 'Child with bat and a ball on a tee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404613.jpg', 'caption': 'A small child using a baseball bat and a pole to practice hitting a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404613.jpg', 'caption': 'A child points to ball waiting on the tee ball stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314729.jpg', 'caption': 'a black and white baseball player card the player has a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314729.jpg', 'caption': 'An old picture of a baseball player holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314729.jpg', 'caption': 'An old fashioned picture of a baseball player and bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314729.jpg', 'caption': 'A man on a card hitting a ball as a baseball player.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314729.jpg', 'caption': 'An old picture of a baseball player on a card.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376531.jpg', 'caption': 'A young boy in the grass throws a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376531.jpg', 'caption': 'a kid throwing a tennis ball in the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376531.jpg', 'caption': 'A little kid throwing a ball while holding a bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376531.jpg', 'caption': 'A CHILD IS PRACTICING HIS WIFFLE BALL SKILLS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376531.jpg', 'caption': 'A boy playing baseball in his backyard area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131089.jpg', 'caption': 'A young child in the yard holding up a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131089.jpg', 'caption': 'A boy raring back with a baseball bat in a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131089.jpg', 'caption': 'A little boy has a baseball bat in a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131089.jpg', 'caption': 'A boy in black clothes holds a baseball bat over his shoulder near a fence and a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131089.jpg', 'caption': 'a little boy playing in his yard with a baseball bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334928.jpg', 'caption': 'A guy holding a bat and some trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334928.jpg', 'caption': 'A man holding a bat with a divided picture and trees in the next', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334928.jpg', 'caption': 'A young man has a baseball bat over his shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334928.jpg', 'caption': 'two images next to each other, one of a guy with a baseball bat over his shoulder and the other of tree branches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334928.jpg', 'caption': 'Man with bath on his should on left and tree scene on right.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502358.jpg', 'caption': 'A baseball player holding a bat on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502358.jpg', 'caption': 'A baseball player prepares to hit a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502358.jpg', 'caption': 'A baseball player at bat waiting for a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502358.jpg', 'caption': 'A man holding a bat next to a man with a glove on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502358.jpg', 'caption': 'A baseball player waiting for the pitch at home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525381.jpg', 'caption': 'A batter swings hard at a low ball as the catcher reaches out his glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525381.jpg', 'caption': 'A baseball batter swinging his bat and poised to run.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525381.jpg', 'caption': 'A baseball player swinging a baseball bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525381.jpg', 'caption': 'A man swinging at a baseball with an umpire behind him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525381.jpg', 'caption': 'a batter at home plate swinging his baseball bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062878.jpg', 'caption': 'A baseball player in uniform holding a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062878.jpg', 'caption': 'An old picture of a baseball player from the Coast League.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062878.jpg', 'caption': 'A picture of a baseball player from a long time ago.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062878.jpg', 'caption': 'A baseball player in a black and white photograph is holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062878.jpg', 'caption': 'An old time baseball card of a player swinging. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270185.jpg', 'caption': 'a baseball playing is holding his bat and ready for the hit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270185.jpg', 'caption': 'Baseball man ready to swing bat on baseball field with onlookers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270185.jpg', 'caption': 'A baseball player holding bat straight up in a wide leg stance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270185.jpg', 'caption': 'A man rared back with his baseball bat on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270185.jpg', 'caption': 'A baseball player is in his hitting stance as a few people watch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231610.jpg', 'caption': 'A batter standing behind the catcher is taking a swing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231610.jpg', 'caption': 'A man is playing baseball as an audience watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231610.jpg', 'caption': 'A baseball player is swinging at the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231610.jpg', 'caption': 'A batter is swinging at a pitch in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231610.jpg', 'caption': 'A batter and catcher during a baseball game with people watching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555538.jpg', 'caption': 'A catcher in baseball with his arm extended.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555538.jpg', 'caption': 'A man pitches a ball at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555538.jpg', 'caption': 'A baseball player that just threw out a pitch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555538.jpg', 'caption': 'Baseball players playing a game of baseball on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555538.jpg', 'caption': 'The catcher at a baseball game throws ball back to pitcher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144252.jpg', 'caption': 'this is a man swing a bat at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144252.jpg', 'caption': 'The baseball player powers his bat into the hit. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144252.jpg', 'caption': 'A man on a field swinging a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144252.jpg', 'caption': 'A sporting event is taking place in a sporting field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144252.jpg', 'caption': 'A baseball player in the middle of a swing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301670.jpg', 'caption': 'Man playing tennis ball in mid air hit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301670.jpg', 'caption': 'Male tennis player attempts to send ball over net.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301670.jpg', 'caption': 'A guy tries to hit the tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301670.jpg', 'caption': 'Man on tennis court about to hit ball with racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301670.jpg', 'caption': 'A tennis player moves in to hit a forehand volley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579060.jpg', 'caption': 'A man hits a tennis ball with a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579060.jpg', 'caption': 'A man that is playing in a tennis game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579060.jpg', 'caption': 'man is about to hit a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579060.jpg', 'caption': 'A male Tennis player is just about to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579060.jpg', 'caption': 'A tennis player swings the racquet during a game of tennis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053949.jpg', 'caption': 'Men holding tennis rackets are shaking hands above a net.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053949.jpg', 'caption': 'Three tennis players are talking over the net.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053949.jpg', 'caption': 'A group of men standing on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053949.jpg', 'caption': 'Tennis players shake hands over a tennis net. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053949.jpg', 'caption': 'Three men stand around a tennis net while holding tennis rackets, attempting to shake hands with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404237.jpg', 'caption': 'A pizza sitting on top of a metal pan with a spatula.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404237.jpg', 'caption': 'A very big tasty looking pizza with some toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404237.jpg', 'caption': 'three fourths of a pizza with meats and vegetables on a pizza pan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404237.jpg', 'caption': 'A pizza is on a pizza tin with a silver spatula.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404237.jpg', 'caption': 'A pizza on a pizza pan with two pieces removed by a serving ladle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240506.jpg', 'caption': 'Two slices of pepperoni and cheese pizza with crushed red pepper flakes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240506.jpg', 'caption': 'A couple of slices of pizza with pepper sprinkled on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240506.jpg', 'caption': 'Pieces of pizza on trays with stuffed toy and shaker of crushed red pepper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240506.jpg', 'caption': 'two slices of pepperoni pizza sit on a tray', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240506.jpg', 'caption': 'a close up of two slices of pizza on a plate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397809.jpg', 'caption': 'A young boy dressed in costume eating a white cookie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397809.jpg', 'caption': 'A young man wearing goggles with spiky hair dressed up like Robbin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397809.jpg', 'caption': 'A child wearing a costume is taking a bite of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397809.jpg', 'caption': 'A little kid dressed in a costume,eating some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397809.jpg', 'caption': 'A boy wearing a black, red and yellow superhero costume and wearing a painted-on black-and-white \"eye mask\" eats something from a sheet of white wax paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146640.jpg', 'caption': 'A woman bounces a tennis ball on a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146640.jpg', 'caption': 'A woman is hitting a tennis ball with her racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146640.jpg', 'caption': 'A woman bouncing a ball off her tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146640.jpg', 'caption': 'The tennis player with the green ribbon bounces the ball on her racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146640.jpg', 'caption': 'a person with a tennis racket and a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044802.jpg', 'caption': 'a person is holding a tennis racket on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044802.jpg', 'caption': 'a man playing tennis in front of a crowd of people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044802.jpg', 'caption': 'A young man playing a game of tennis against an opponent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044802.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000044802.jpg', 'caption': 'A man on the court is holding the Tennis racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307057.jpg', 'caption': 'A man serving a tennis ball on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307057.jpg', 'caption': 'A tennis player at a match getting ready to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307057.jpg', 'caption': 'A man swings to hit a tennis ball on a court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307057.jpg', 'caption': 'a man getting ready to serve a tennis ball on a court in front of an audience', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307057.jpg', 'caption': 'A tennis player is in the process of serving the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053952.jpg', 'caption': 'Two children sit at the kitchen bar waiting for their meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053952.jpg', 'caption': 'Kids in the kitchen being served some food by their mom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053952.jpg', 'caption': 'A young girl enjoys a slice of fresh baked pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053952.jpg', 'caption': 'A family eating pizza at the kitchen bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053952.jpg', 'caption': 'a group of people eating food in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188447.jpg', 'caption': 'A pizza sitting on top of a wooden cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188447.jpg', 'caption': 'a pizza prepared to be cooked on a wooden spoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188447.jpg', 'caption': 'A pizza laying on a wooden pizza board with a sign below it that says \"Vegan Pizza\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188447.jpg', 'caption': 'A pizza that is sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188447.jpg', 'caption': 'THERE IS A VEGAN PIZZA ON THE TABLE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488869.jpg', 'caption': 'A female tennis player standing with racquet in hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488869.jpg', 'caption': 'A woman is holding a tennis racket outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488869.jpg', 'caption': 'a woman holding a tennis racket in front of a crowd ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488869.jpg', 'caption': 'tennis player holding a racket during a match', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488869.jpg', 'caption': 'A female tennis-player with her racket in-hand in front of a crowd of onlookers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457204.jpg', 'caption': 'a group of people that are standing up on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457204.jpg', 'caption': 'A group of three men standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457204.jpg', 'caption': 'a group of friends are all out on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457204.jpg', 'caption': 'Three men pose for a picture on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457204.jpg', 'caption': 'Three guys in tennis white shorts on a clay tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189842.jpg', 'caption': 'The room with the yellow walls is empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189842.jpg', 'caption': 'a desk with a monitor near a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189842.jpg', 'caption': 'A livign area with music mixing equipment and a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189842.jpg', 'caption': 'An office area decorated with pictures and a mantle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189842.jpg', 'caption': 'A laptop on a special stand near a desk in a yellow room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263292.jpg', 'caption': 'A tall building with a clock mounted to the front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263292.jpg', 'caption': 'A large clock is underneath the sign of a spacious station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263292.jpg', 'caption': 'A walkway and stairs below a clock at an entrance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263292.jpg', 'caption': 'Entrance of a large building with a clock on the front. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263292.jpg', 'caption': 'a clock attached to a building over a door walkway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466935.jpg', 'caption': 'a piece of art depicting a clock-like structure with numbers in a circle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466935.jpg', 'caption': 'A picture of a building in the background and the numbers one to 10 in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466935.jpg', 'caption': 'A figure with several different numbers hanging from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466935.jpg', 'caption': 'A building with numbers hanging next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466935.jpg', 'caption': 'A modern style clock has floating card numbers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432570.jpg', 'caption': 'A vase of flowers is sitting by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432570.jpg', 'caption': 'A vase of roses dwarfed between two large planters sits in a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432570.jpg', 'caption': 'A vase with flowers sitting in front of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432570.jpg', 'caption': 'A small pot of flowers between two larger potted plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432570.jpg', 'caption': 'Small vase with flowers sits between two large potted plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035827.jpg', 'caption': 'An office scene with laptops, printers and chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035827.jpg', 'caption': 'A young man looking through papers no a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035827.jpg', 'caption': 'A man pulls a piece of paper from a printer in an small office.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035827.jpg', 'caption': 'A person is grabbing a piece of paper from a printer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035827.jpg', 'caption': 'A man sitting on a chair by a printer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049985.jpg', 'caption': 'There is a lot of expensive recording equipment on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049985.jpg', 'caption': 'A person who is sitting in an auditorium across from some electrical equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049985.jpg', 'caption': 'Several electronics, including a laptop, are placed on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049985.jpg', 'caption': 'There is a laptop and other electronic equipment on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000049985.jpg', 'caption': 'A table with sound mixing equipment in an auditorium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248591.jpg', 'caption': 'A woman sitting in front of a laptop computer holding a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248591.jpg', 'caption': 'A woman holding a cat is working on her computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248591.jpg', 'caption': 'A woman typing on her laptop with a cat on her lap', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248591.jpg', 'caption': 'a person with a small table and a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000248591.jpg', 'caption': 'A woman using her laptop with a cat in her lap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206757.jpg', 'caption': 'A city plaza with people walking through it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206757.jpg', 'caption': 'City street shopping area with pedestrians walking about.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206757.jpg', 'caption': 'A street view of a tourist area in an older town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206757.jpg', 'caption': 'Pedestrians stroll down the street of a European city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206757.jpg', 'caption': 'A great amount of people walking in a downtown area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323888.jpg', 'caption': 'a large building with a large clock on the front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323888.jpg', 'caption': 'A large domed building has a clock on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323888.jpg', 'caption': 'A night shot of a clock on a stone building that looks like a station of some kind ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323888.jpg', 'caption': 'Two vehicles are parked outside of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323888.jpg', 'caption': 'Cars are parked outside of a large building with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429033.jpg', 'caption': 'A crowd of people sitting next to each other at a meeting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429033.jpg', 'caption': 'A business seminar with several people in the audience using mobile devices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429033.jpg', 'caption': 'A view of an open laptop being used in and auditorium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429033.jpg', 'caption': 'A person using a laptop while in a conference room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429033.jpg', 'caption': 'Someone is taking notes on their laptop in an auditorium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223626.jpg', 'caption': 'a cat sitting on a counter top next to a stove below an oven mitt with a cat design on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223626.jpg', 'caption': 'A small black cat is sitting next to a stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223626.jpg', 'caption': 'A black cat sits on a stove counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223626.jpg', 'caption': 'A black cat sitting on top of a stove top next to a tiled wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223626.jpg', 'caption': 'A can sitting on a kitchen counter under a cat oven mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135572.jpg', 'caption': 'a teddy bear sitting inside a toilet bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135572.jpg', 'caption': 'A teddy bear sitting on top of a small white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135572.jpg', 'caption': 'A small teddy bear sitting on top of a toy toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135572.jpg', 'caption': 'teddy bear sitting on a tiny toilet in a cube shape space', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135572.jpg', 'caption': 'A teddy bear sitting on a toilet in an enclosed stage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113757.jpg', 'caption': 'A group of students sitting in front of laptop computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113757.jpg', 'caption': 'a group of people working on lap tops in an auditorium', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113757.jpg', 'caption': 'A picture of students with laptops attending a training seminar with a speaker by the podium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113757.jpg', 'caption': 'A group of people sitting in front of computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113757.jpg', 'caption': 'a person on the stage addressing very many people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474528.jpg', 'caption': 'Teddy bears are dressed in clothing and stand in a window sill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474528.jpg', 'caption': 'Four stuffed teddy bears dressed in pink and posed together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474528.jpg', 'caption': 'A display of teddy bears dressed in clothing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474528.jpg', 'caption': 'A group of teddy bears standing next to a palm tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474528.jpg', 'caption': 'Some teddy bears, cutely arranged on a flat surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353505.jpg', 'caption': 'There is a little girl crying next to her stuffed animals', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353505.jpg', 'caption': 'a mother and little girl standing next to a bench with two bears sitting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353505.jpg', 'caption': 'A women and girl standing next to a bench that has two teddy bears sitting in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353505.jpg', 'caption': 'A mother comforts her child at the side of the road next to 2 teddy bears', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353505.jpg', 'caption': 'A couple of people and some stuffed bears in a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075655.jpg', 'caption': 'a man is standing in front of a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075655.jpg', 'caption': 'Man holding a box in front of a panel with various cups.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075655.jpg', 'caption': 'A man holding a autographed laptop computer in his hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075655.jpg', 'caption': 'A man stands up to display his autographed laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075655.jpg', 'caption': 'A man with an autographed laptop standing by a microphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258509.jpg', 'caption': 'a chair with many things for a child', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258509.jpg', 'caption': 'A purse on a chair with all of its contents displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258509.jpg', 'caption': 'A purse with various items sitting next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258509.jpg', 'caption': \"All the contents that was in the bag that's at the top.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258509.jpg', 'caption': 'Some supplies sitting outside of a large bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065806.jpg', 'caption': 'Man playing with a lighter, over his cellphone, in a local bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065806.jpg', 'caption': 'A hand on top of a table holding a lit lighter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065806.jpg', 'caption': \"The man's cellphone is on the table while he is talking.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065806.jpg', 'caption': 'A man is lighting something at the bar table next to his phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065806.jpg', 'caption': 'A cellphone rests on a bar counter beside a hand holding a lit match', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199764.jpg', 'caption': 'The view of a crowd of shoppers and vendors at a market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199764.jpg', 'caption': 'A farmer in jean overalls sells roasted peanuts at a country fair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199764.jpg', 'caption': 'A guy is standing outdoors at some kind of booth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199764.jpg', 'caption': 'A man standing under a blue tent preparing food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199764.jpg', 'caption': 'A man standing at a table behind a rope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548942.jpg', 'caption': 'A man looks surprised while taking a photo in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548942.jpg', 'caption': 'a male in a white shirt a mirror and a camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548942.jpg', 'caption': 'The guy with crazy here is taking a picture in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548942.jpg', 'caption': 'A man taking a selfie in a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000548942.jpg', 'caption': 'A man in glasses taking a picture with his cellphone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521643.jpg', 'caption': 'The colorful roses are in a clear glass jar. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521643.jpg', 'caption': 'A recycled jar of flowers on a desk with tins and toys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521643.jpg', 'caption': \"Several Tim's of mints are stacked up with a bottle that has several clipped roses inside\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521643.jpg', 'caption': 'A bunch of flowers that are sitting in a glass jar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000521643.jpg', 'caption': 'Multi-colored roses in a mason jar with small tins.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030932.jpg', 'caption': 'A kitchen scene with a microwave, window, and decorations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030932.jpg', 'caption': 'A small kitchen with some quirky art decorations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030932.jpg', 'caption': 'A small modern kitchen with a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030932.jpg', 'caption': 'A nice kitchen is lit by overhead pendulum lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030932.jpg', 'caption': 'A colorful kitchen is displayed under overhead lighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437564.jpg', 'caption': 'A laptop computer with pictures of giraffes on the homescreen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437564.jpg', 'caption': 'THIS IS A PICTURE OF SOMEONES ELECTRONIC COLLECTION', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437564.jpg', 'caption': 'a laptop computer open with a cell phone and camera sitting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437564.jpg', 'caption': 'A laptop computer sitting on top of a purple table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437564.jpg', 'caption': 'There is a digital camera, flash drive, and cellphone on top of a laptop computer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508339.jpg', 'caption': 'A woman sitting at a table while using a smartphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508339.jpg', 'caption': 'The woman is sitting at the table using her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508339.jpg', 'caption': 'a woman sits as a table as a person watches her ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508339.jpg', 'caption': 'A woman that is sitting down behind a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508339.jpg', 'caption': 'A woman sitting at a table in a restaurant, by the window, and looking at her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176312.jpg', 'caption': 'A woman scanning a tour map with her smartphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176312.jpg', 'caption': 'A woman uses her cell phone to take a picture of the sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176312.jpg', 'caption': 'a woman is looking a tor stop big green sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176312.jpg', 'caption': 'A lady is standing near the Tour sign on her phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176312.jpg', 'caption': 'A woman that is standing in front of a green sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346702.jpg', 'caption': 'An empty kitchen and half wall in a living space', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346702.jpg', 'caption': 'A kitchen with white cabinets, stove, and refrigerator', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346702.jpg', 'caption': 'An empty apartment kitchen with white appliances and light cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346702.jpg', 'caption': 'there is a kitchen with white and brown cabinets and a breakfast nook', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000346702.jpg', 'caption': 'A view of an empty kitchen with white and wood lined cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457581.jpg', 'caption': 'A person opening an oven door filled with baking cookies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457581.jpg', 'caption': 'A hand opens an oven door to show cookies baking on a tin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457581.jpg', 'caption': 'there is fresh food being made in the oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457581.jpg', 'caption': 'A person is baking cookies in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457581.jpg', 'caption': 'An open stove shows a pan full of a food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347203.jpg', 'caption': 'A baker checks on a rack of muffins pulled from an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347203.jpg', 'caption': 'A man takes freshly baked muffins out of the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347203.jpg', 'caption': 'A man pulls muffins out of the industrial oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347203.jpg', 'caption': 'A man inserting a cupcake tray into the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347203.jpg', 'caption': 'Man pulling out baked goods from a large oven with a mitten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527887.jpg', 'caption': 'A woman with a coffee cup talking on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527887.jpg', 'caption': 'A woman talks on a cellphone while holding a drink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527887.jpg', 'caption': 'a woman talking on a cell phone while holding a starbucks drink in the other hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527887.jpg', 'caption': 'Woman talking on the phone with a starbucks coffee in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527887.jpg', 'caption': 'A lady talking on a cellphone walking down a street holding a \\nStarbucks cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118343.jpg', 'caption': 'A person who is taking a picture of something with his phone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118343.jpg', 'caption': 'a couple of men in white are in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118343.jpg', 'caption': 'A man in military uniform looking at his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118343.jpg', 'caption': 'A man in a uniform is using a mobile device.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118343.jpg', 'caption': 'some people and a male in a white jacket and his cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303260.jpg', 'caption': 'Two men, one dressed as a Roman warrior and using the phone, standing outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303260.jpg', 'caption': 'A man in armor smokes and talks on a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303260.jpg', 'caption': 'Man in medevil cosplay smoking a cigarette and talking on the phone next to an old man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303260.jpg', 'caption': 'An elderly man stands next to a large armor clad youth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303260.jpg', 'caption': 'A man in a gladiator costume talking on a cell phone and another man without a costume.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115412.jpg', 'caption': 'a cell phone sits next to a plastic toy ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115412.jpg', 'caption': 'Small yellow container attached to a digital camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115412.jpg', 'caption': 'An object laying on a table next to a small electronic device.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115412.jpg', 'caption': 'A yellow key chain is attached to a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115412.jpg', 'caption': 'An orange keychain is next to a red camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453297.jpg', 'caption': 'A small digital camera and a pineapple keychain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453297.jpg', 'caption': 'Pineapple keychain sitting next to a digital camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453297.jpg', 'caption': 'Pineapple slice, cord and simple red digital camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453297.jpg', 'caption': 'A piece of pineapple and a phone on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453297.jpg', 'caption': 'A keychain sits next to a small cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189932.jpg', 'caption': 'A cell phone has a ritz cracker like keychain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189932.jpg', 'caption': 'A smart phone on top of a table with a cookie attached to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189932.jpg', 'caption': 'a big round yellow thing hooked on a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189932.jpg', 'caption': 'The mobile phone has a trinket attached to it by a cord.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189932.jpg', 'caption': 'A rubber cookie key ring attached to a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275111.jpg', 'caption': 'Two women on a park bench while a man on a cell phone walks down the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275111.jpg', 'caption': 'A person walking while using a cellular phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275111.jpg', 'caption': 'The man is walking down the concrete on his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275111.jpg', 'caption': 'A man is walking on a sidewalk as people sit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275111.jpg', 'caption': 'A man on his cell phone walking past benches in a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449400.jpg', 'caption': 'Woman wearing a black coat holding up a red cellphone. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449400.jpg', 'caption': 'A dark haired woman is looking at her phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449400.jpg', 'caption': 'A woman holding a drink in her right hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449400.jpg', 'caption': 'A woman is on her cell phone at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449400.jpg', 'caption': 'A woman looking down on her phone in a shopping area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158272.jpg', 'caption': 'woman studies a map while standing on street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158272.jpg', 'caption': 'a person that is standing up outside looking at a map', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158272.jpg', 'caption': 'a woman is on the sidewalk with a map', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158272.jpg', 'caption': 'A tourist looking at a map to find directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158272.jpg', 'caption': 'a woman opening up a travel map ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372717.jpg', 'caption': 'A smart phone sitting on a table next to a yellow donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372717.jpg', 'caption': 'A phone and a food item sit on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372717.jpg', 'caption': 'A cellphone is sitting beside a pastry pinwheel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372717.jpg', 'caption': 'A camera and a cookie sitting on a table next to each other .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372717.jpg', 'caption': 'A red and gray cell phone with a charm. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352011.jpg', 'caption': 'A man sitting in a chair with his nipples hanging out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352011.jpg', 'caption': 'A man asleep in a chair with his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352011.jpg', 'caption': 'A man at his desk asleep with cell phone in his hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352011.jpg', 'caption': 'A male with his cell phone in his hand sitting in a chair unconscience.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352011.jpg', 'caption': 'The man is asleep while he waits for a call.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529668.jpg', 'caption': 'A young man is posing in front of a camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529668.jpg', 'caption': 'A woman standing in the dark holding up a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529668.jpg', 'caption': 'A woman with a happy look holding up a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529668.jpg', 'caption': 'A woman on a cell phone with a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529668.jpg', 'caption': 'A woman holding a cell phone while a purse is over her shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566756.jpg', 'caption': 'Little girl stands in the room looking at a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566756.jpg', 'caption': 'A little girl standing playing with a cellular phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566756.jpg', 'caption': 'A small girl is looking down at a toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566756.jpg', 'caption': 'A small girl is playing with a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566756.jpg', 'caption': 'A LITTLE GIRL IN A RED AND WHITE DRESS ON A CELLPHONE.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556751.jpg', 'caption': 'A beautiful little blond girl using a smart phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556751.jpg', 'caption': 'A young girl in a dress holding something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556751.jpg', 'caption': 'A young girl in a dress plays with an iPhone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556751.jpg', 'caption': 'A young girl is playing with an object while standing up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556751.jpg', 'caption': 'Girl in red and white dress holding a mobile device.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551107.jpg', 'caption': 'A child standing in a room with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551107.jpg', 'caption': 'A girl is in a living room in a party dress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551107.jpg', 'caption': 'A girl standing in a dress holding a remote controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551107.jpg', 'caption': 'A little girl is wearing a red and white dress as she looks toward the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000551107.jpg', 'caption': 'Young girl in dress standing on wooden floor in residential home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289572.jpg', 'caption': 'A young girl in a red dress is smiling. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289572.jpg', 'caption': 'A cute little girl smiles for the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289572.jpg', 'caption': 'A little girl that are standing near a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289572.jpg', 'caption': 'a small child in a kitchen on a wooden floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289572.jpg', 'caption': 'Girl in dress smiling on wood floor with chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126744.jpg', 'caption': 'A kitchen with a microwave, a refrigerator, and a dishwasher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126744.jpg', 'caption': 'A drab colored kitchen with a metal shelf and white cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126744.jpg', 'caption': 'Appliances and counters in small kitchen area with metal shelving.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126744.jpg', 'caption': 'The kitchen is clean and the light was left on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126744.jpg', 'caption': 'a kitchen with a microwave and a sink and cupboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564332.jpg', 'caption': 'A man is poking at something in a pizza oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564332.jpg', 'caption': 'A man placing baked goods into an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564332.jpg', 'caption': 'A man putting dough into an oven with a rack of pastries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564332.jpg', 'caption': 'A man working in a restaurant removes food from the oven ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564332.jpg', 'caption': 'A man putting something into a large brick oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546463.jpg', 'caption': 'A full view of a kitchen with stove and counters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546463.jpg', 'caption': 'A kitchen with a stove and a kettle on it, a drawer with a towel hanging from it and a toaster over sitting on the counter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546463.jpg', 'caption': 'A kitchen has a gold oven and white dishwasher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546463.jpg', 'caption': 'a kitchen with a stove a dish washer and a toaster oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546463.jpg', 'caption': 'A kitchen stove that has a kettle on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161047.jpg', 'caption': 'A great shot of a full kitchen and partially a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161047.jpg', 'caption': 'a clean white kitchen with wooden cabinets and furniture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161047.jpg', 'caption': 'A kitchen with both white colored and wooden cupboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161047.jpg', 'caption': 'An oven and a microwave in a kitchen with dining room table and chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161047.jpg', 'caption': 'A plain, empty kitchen with white cabinets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040686.jpg', 'caption': 'A small room with wooden cabinets and two beds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040686.jpg', 'caption': 'A motor home has a refrigerator, stove, and two beds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040686.jpg', 'caption': 'A refrigerator and bed in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040686.jpg', 'caption': 'A motor home that has a small refrigerator and beds on both sides', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000040686.jpg', 'caption': 'A refrigerator surrounded by wood cabinets and single beds in a trailer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184274.jpg', 'caption': 'A shiny vintage refrigerator inside of a camper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184274.jpg', 'caption': 'a retro style refrigeratior is mounted into a kitchen cabinet area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184274.jpg', 'caption': 'an rv with a fridge and a bed in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184274.jpg', 'caption': 'A view inside an RV, including bed and refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184274.jpg', 'caption': 'The door, fridge, and bed inside of a recreational vehicle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190111.jpg', 'caption': 'An advertisement from A Christmas Wonderland store with several GE products.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190111.jpg', 'caption': \"A page in a General Electric's catalog advertising Christmas ideas.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190111.jpg', 'caption': 'Electronics advertised on a paper for Christmas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190111.jpg', 'caption': 'an ad for General Electric with clocks and appliances on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190111.jpg', 'caption': 'A various items such clocks and kitchen appliances are advertized. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159449.jpg', 'caption': 'a red icebox that has some fans beside it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159449.jpg', 'caption': 'A red refrigerator is standing next to two boxes that have fans in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159449.jpg', 'caption': 'The refrigerator is on display in the window of the store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159449.jpg', 'caption': 'A red refrigerator in a window along with two fans in red boxes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159449.jpg', 'caption': 'The red refrigerator is next to a couple of fans in boxes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434829.jpg', 'caption': 'A row of clocks display the time for international travelers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434829.jpg', 'caption': 'Clock with the time to various cities above a door way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434829.jpg', 'caption': 'An old fashioned elevator with clocks stating world time.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000313770.jpg', 'caption': 'Two women are cutting and serving cake at a party. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023754.jpg', 'caption': 'A person on a surfboard jumping out of the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023754.jpg', 'caption': 'A man riding on top of a board on a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023754.jpg', 'caption': 'A man surfing the waves on his surfboard in the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023754.jpg', 'caption': 'A person on a skate board in the air above a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023754.jpg', 'caption': 'Surfer performing aerial trick over breaking ocean wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491681.jpg', 'caption': 'Man on surf board surfing on ocean waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491681.jpg', 'caption': 'A man surfing in the water attempting tricks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491681.jpg', 'caption': 'a person riding a surf board on a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491681.jpg', 'caption': 'A man on a surfboard catching a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491681.jpg', 'caption': 'A person who is riding a wave on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205636.jpg', 'caption': 'A toddler is drinking from a bottle while sitting on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205636.jpg', 'caption': 'A small child is sitting on the bed while drinking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205636.jpg', 'caption': 'The little boy is sitting on the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205636.jpg', 'caption': 'A small boy with a cap with a bottle on the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205636.jpg', 'caption': 'A young boy sitting on a bed drinking a bottle of juice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041110.jpg', 'caption': 'A little boy drinking out of a bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041110.jpg', 'caption': 'A toddler boy drinking from a sippy cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041110.jpg', 'caption': 'a little boy tipping up a bottle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041110.jpg', 'caption': 'A child sitting on the bed drinking from his bottle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041110.jpg', 'caption': 'A boy in striped shirt drinking from a bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289941.jpg', 'caption': 'A little boy sitting on a bed drinking from a cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289941.jpg', 'caption': 'A toddler sitting on a bed, drinking from a sippy cup while holding a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289941.jpg', 'caption': 'A young boy sitting on a bed with a remote control in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289941.jpg', 'caption': 'a young kid in a hat drinks from a cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289941.jpg', 'caption': 'A child drinking from a bottle in one hand and holding a remote control in another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262576.jpg', 'caption': 'a laptop that is sitting on top of a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262576.jpg', 'caption': 'A laptop charging on top of a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262576.jpg', 'caption': 'A laptop that is sitting open on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262576.jpg', 'caption': 'A laptop sitting on top of a bed with the desktop open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262576.jpg', 'caption': 'a laptop is sitting on a blue bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070201.jpg', 'caption': 'A couple cutting their red and white wedding cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070201.jpg', 'caption': 'A man cutting a cake with his bride.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070201.jpg', 'caption': 'A bride and groom cutting their wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070201.jpg', 'caption': 'A man cutting into a cake as a woman watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070201.jpg', 'caption': 'A young man and his bride about to have a piece if wedding cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419816.jpg', 'caption': 'A young woman is laying in bed with a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419816.jpg', 'caption': 'A lady wearing a black and white dress laying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419816.jpg', 'caption': 'A beautiful young blond laying on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419816.jpg', 'caption': 'Woman asleep on a bed fully dressed in a black dress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419816.jpg', 'caption': 'A woman covering her eyes lying on a bed next to a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184386.jpg', 'caption': 'A minimalist bedroom with low furniture and a quote on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184386.jpg', 'caption': 'A large white bed sitting in a bedroom next to pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184386.jpg', 'caption': 'An image of a bed with a quote at the top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184386.jpg', 'caption': 'a message poster with a bed and writing above it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184386.jpg', 'caption': 'A advertisement for a bed spread and mattress. The room looks very elegant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158222.jpg', 'caption': 'A very orderly office with a bed in it was very well lit cause of open windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158222.jpg', 'caption': 'a laptop sitting on a desk in a small office', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158222.jpg', 'caption': 'A home office has a desk and a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158222.jpg', 'caption': 'A room with a desk and a dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158222.jpg', 'caption': 'A bedroom scene complete with a desk and laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236016.jpg', 'caption': 'A bedroom with a dresser, tv, and a lamp in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236016.jpg', 'caption': 'A bedroom with the door open and a few items on the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236016.jpg', 'caption': 'The bedroom features a good size dresser and mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236016.jpg', 'caption': 'A bedroom with a bed, dresser, mirror and television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236016.jpg', 'caption': 'A tv monitor on the desk and a bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256504.jpg', 'caption': 'Two people sitting on a bed working on Mac laptops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256504.jpg', 'caption': 'Two people in bed using their Apple laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256504.jpg', 'caption': 'Two people in bed covered up and using laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256504.jpg', 'caption': 'there are two people in bed using lap tops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256504.jpg', 'caption': 'A couple of people lying in a bed holding laptops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212927.jpg', 'caption': 'A Woman sitting on top of a bed while using a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212927.jpg', 'caption': 'a girl laying in bed with her laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212927.jpg', 'caption': 'A girl sits on her bed using a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212927.jpg', 'caption': 'a person sitting in a bed with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212927.jpg', 'caption': 'Woman in a bed with a laptop on her lap next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332914.jpg', 'caption': 'A young child is playing with the television remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332914.jpg', 'caption': 'A toddler in a striped shirt and tan hat holding a remote control. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332914.jpg', 'caption': 'A young boy wearing a cap plays with the remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332914.jpg', 'caption': 'A little boy on a bed with a hat holding a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000332914.jpg', 'caption': 'A young boy is looking away from the camera, holding a remote. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245460.jpg', 'caption': 'a small boy with a hat playing with a remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245460.jpg', 'caption': 'A young boy on a bed using a remote control', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245460.jpg', 'caption': 'A little boy sitting on a bed holding a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245460.jpg', 'caption': 'The young child is holding the remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245460.jpg', 'caption': 'Small child in pink shirt holding up a grey controller. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571196.jpg', 'caption': 'The book is laying open on the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571196.jpg', 'caption': 'A open book laying on a bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571196.jpg', 'caption': 'A book is open and face down on a bed with colorful bedding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571196.jpg', 'caption': 'an open book laid on top of a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571196.jpg', 'caption': 'A small paperback book that was left on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231037.jpg', 'caption': 'there is a surfer that is riding a wave in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231037.jpg', 'caption': 'a person standing on a surfboard and riding a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231037.jpg', 'caption': 'A man on a surf board surfing on the sea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231037.jpg', 'caption': 'a person is riding a wave on a surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231037.jpg', 'caption': 'a man that is on a surfboard in some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353593.jpg', 'caption': 'A man and two children laying on surfboards in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353593.jpg', 'caption': 'A group of people riding on top of surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353593.jpg', 'caption': 'Kids and an adult are laying on a surfboard on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353593.jpg', 'caption': 'a man with the kits sailing on the waters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353593.jpg', 'caption': 'A man and children balancing on surfboards in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177407.jpg', 'caption': 'A man riding on top of a paddle board on water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177407.jpg', 'caption': 'a man standing on a surf board in the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177407.jpg', 'caption': 'a man is standing on top of a surf board at sea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177407.jpg', 'caption': 'The man is standing on a surfboard in the ocean with a paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177407.jpg', 'caption': 'A man in calm waters has a stick that he is using to stir his surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314023.jpg', 'caption': 'A person standing on top of a bed covered in a blanket and pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314023.jpg', 'caption': 'A man is standing on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314023.jpg', 'caption': 'a person in a striped shirt standing on an unmade bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314023.jpg', 'caption': 'A person stands on an unmade bed in a wallpapered room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314023.jpg', 'caption': 'A man whose head is not pictured stands on his bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394133.jpg', 'caption': 'A bedroom with a bed and chair along with a nightstand with lamp on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394133.jpg', 'caption': 'A white bed has a red and green pillow on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394133.jpg', 'caption': 'people forgot to clean up after they messed the bed up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394133.jpg', 'caption': 'A bedroom with a bed that has some personal items on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394133.jpg', 'caption': 'A bed has a white bedspread and decorative pillows along with some personal items on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493867.jpg', 'caption': 'A large bed sitting in a bedroom next to a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493867.jpg', 'caption': 'a nice bed and a rainbow chair and big window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493867.jpg', 'caption': 'A typical hotel room, set up with a bed and chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493867.jpg', 'caption': 'A bed made up with a comforter and pillows in a hotel room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493867.jpg', 'caption': 'A bedroom has green carpeting, blue walls, a bank of window with blinds, with colored partitions, a chair with colored stripes, and a double bed with a headboard of differently hued wood panels, and yellow and blue linens and pillows. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170442.jpg', 'caption': 'Inside of a bedroom with a bed and lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170442.jpg', 'caption': 'a large white bed that is next to a blue wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170442.jpg', 'caption': 'A bed in a bedroom with blue shades of paint', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170442.jpg', 'caption': 'A bedroom area with a bed, nightstands and a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170442.jpg', 'caption': 'A bed with black and silver pillows on it next to a blue background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207561.jpg', 'caption': 'Four surfers ride the waves in the ocean with other people visible further out to sea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207561.jpg', 'caption': 'Surfers on their surfboards line up for waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207561.jpg', 'caption': 'A group of surfers in the ocean riding on the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207561.jpg', 'caption': 'Several surfers riding a small wave while another watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207561.jpg', 'caption': 'The surfers are ready for the waves coming their way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141574.jpg', 'caption': 'A group of people in the ocean on surf boards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141574.jpg', 'caption': 'A dozen people are in a body of water, some with surfboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141574.jpg', 'caption': 'Many people in the ocean on surfboards with some riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141574.jpg', 'caption': 'Several people are swimming and surfing in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000141574.jpg', 'caption': 'People play and swim in the ocean water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066008.jpg', 'caption': 'A person riding a surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066008.jpg', 'caption': 'Person on surfboard riding small waves toward shore. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066008.jpg', 'caption': 'Today is not a good day with no waves to surf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066008.jpg', 'caption': 'A woman riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066008.jpg', 'caption': 'A person that is laying on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205847.jpg', 'caption': 'A hotel room with two beds and a painting on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205847.jpg', 'caption': 'A hotel room that has two beds in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205847.jpg', 'caption': 'this is a hotel room with two beds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205847.jpg', 'caption': 'A hotel room with two beds, only one has been slept in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205847.jpg', 'caption': 'A hotel room with two beds and a framed picture of a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540834.jpg', 'caption': 'A man on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540834.jpg', 'caption': 'A man being pulled on a water board behind a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540834.jpg', 'caption': 'A man surfing the wake behind a boat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540834.jpg', 'caption': 'A young man is enjoying the waves on his board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540834.jpg', 'caption': 'A young man surfing in the ocean waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103017.jpg', 'caption': 'A bedroom with a giant clock hanging in the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103017.jpg', 'caption': 'An unmade single bed in an upstairs bedroom in the early afternoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103017.jpg', 'caption': 'A clock that is on the wall near a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103017.jpg', 'caption': 'A bedroom that has a large clock on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103017.jpg', 'caption': 'A bedroom with an unmade bed and a large wall clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006580.jpg', 'caption': 'A crowd of people standing next to a bed on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006580.jpg', 'caption': 'a large group of people around a bed that is outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006580.jpg', 'caption': 'A group of people and a bed in an outside setting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006580.jpg', 'caption': 'A bed is in the middle of the street with a crowd of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006580.jpg', 'caption': 'A crowd gathered around a person standing next to a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544611.jpg', 'caption': 'A crowd standing around a bed next to a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544611.jpg', 'caption': 'A crowd of people surrounding a bed in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544611.jpg', 'caption': 'A man is surrounded by people in the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544611.jpg', 'caption': 'A group of people surrounding a bed in the middle of town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544611.jpg', 'caption': 'A large crowd of people surrounding a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379402.jpg', 'caption': 'a man working on a pizza in a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379402.jpg', 'caption': 'A man standing in a kitchen preparing a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379402.jpg', 'caption': 'The person is cutting a pizza on the kitchen counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379402.jpg', 'caption': 'there is a man standing in the kitchen cutting a pizza pie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379402.jpg', 'caption': 'Person cutting a pizza on top of wooden cutting board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280079.jpg', 'caption': 'A man holding a red surfboard at a beach looking at the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280079.jpg', 'caption': 'A man carrying a surfboard is entering the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280079.jpg', 'caption': 'A man carries a red surf board to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280079.jpg', 'caption': 'A man carrying a surfboard out to sea.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280079.jpg', 'caption': 'A man carrying a surf board with water and mountain background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383826.jpg', 'caption': 'A man riding a wave on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383826.jpg', 'caption': 'Man on surf board riding a wave while another is padding in a canoe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383826.jpg', 'caption': 'The men are surfing on their boards in the water. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383826.jpg', 'caption': 'A man riding a surfboard while another person is paddling a kayak.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383826.jpg', 'caption': 'Two people on surfboards, one standing and the other paddling while seated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398505.jpg', 'caption': 'A man and two children paddle on top of a surfboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398505.jpg', 'caption': 'Adult male taking children for a ride on surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398505.jpg', 'caption': 'There are several people on the water trying to surf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398505.jpg', 'caption': 'a couple of people that are on a surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398505.jpg', 'caption': 'Two children are riding a surfboard with a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256566.jpg', 'caption': 'a sleeping baby wearing gray red and black ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256566.jpg', 'caption': 'A baby wearing bear slippers lying peacefully asleep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256566.jpg', 'caption': 'A baby laying in a bed in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256566.jpg', 'caption': 'A very cute small child laying on a big bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256566.jpg', 'caption': 'A child lays on a bed with a sheet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526892.jpg', 'caption': 'A man touching an iron board in a room filled with other items. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526892.jpg', 'caption': 'A man that is standing next to a ironing board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526892.jpg', 'caption': 'A guy in a small room rubbing an ironing board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526892.jpg', 'caption': 'a man is crafting a surfboard in a garage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526892.jpg', 'caption': 'A man varnishing a surfboard in a shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309889.jpg', 'caption': 'A red soft bed with light shinning through', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309889.jpg', 'caption': 'Two red beds sit near each other in a sunny room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309889.jpg', 'caption': 'a bed room with two beds near each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309889.jpg', 'caption': 'Two beds set right next to each other in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309889.jpg', 'caption': 'A bed with red sheets and a large wooden headboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537907.jpg', 'caption': 'A unique style bed with red covers and a mirror behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537907.jpg', 'caption': 'A room with a double bed and curtains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537907.jpg', 'caption': 'A red sleeping area in a bedroom scene\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537907.jpg', 'caption': 'The beds in this bedroom are placed side by side one another. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537907.jpg', 'caption': 'A living area with mirrors, two beds and curtains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059744.jpg', 'caption': 'a couple of people that are standing up by a surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059744.jpg', 'caption': 'A man standing next to a little girl in front of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059744.jpg', 'caption': 'A man and a little girl pose with a surfboard in front of a shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059744.jpg', 'caption': 'a man and a little girl standing outside of a surf shop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000059744.jpg', 'caption': 'a man is standing with his daughter next to a blue surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564489.jpg', 'caption': 'A woman in a short red dress standing on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564489.jpg', 'caption': 'A girl getting ready to hit a tennis ball that is in the air in front of her ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564489.jpg', 'caption': 'a girl dressed in red returning a served tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564489.jpg', 'caption': 'Small girl in red skirt outfit swinging at a tennis ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564489.jpg', 'caption': 'A girl holding a tennis racket is hitting a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564337.jpg', 'caption': 'Pizza sitting on a paper plate with a can of pop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564337.jpg', 'caption': 'A paper plate with two slices of pizza one half eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564337.jpg', 'caption': 'A paper plate with one uneaten slice of pizza and one pizza crust', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564337.jpg', 'caption': 'A half eaten plate of pizza and a can of soda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564337.jpg', 'caption': 'One slice of pizza and a half eaten slice are on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114458.jpg', 'caption': 'a child in a bed with a striped sweater and colorful blanket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114458.jpg', 'caption': 'A young girl laying on a bed holding onto a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114458.jpg', 'caption': 'A little girl wraps up in a blanket to take a nap.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114458.jpg', 'caption': 'Little girl laying in bed snuggling with her blankets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114458.jpg', 'caption': 'A small child is lying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014248.jpg', 'caption': 'A beautiful little girl laying on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014248.jpg', 'caption': 'A young girl in her bed cuddling a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014248.jpg', 'caption': 'The girl in the green sweater is lying in bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014248.jpg', 'caption': 'A child smiles at the camera while laying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000014248.jpg', 'caption': 'A little girl in bed holding a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318825.jpg', 'caption': 'A man holding a tennis racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318825.jpg', 'caption': 'Player returning volley during tennis match on court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318825.jpg', 'caption': 'a person swinging a racket at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318825.jpg', 'caption': 'A male tennis player warming up on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318825.jpg', 'caption': 'A tennis player getting ready to hit a tennis ball on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467437.jpg', 'caption': 'A man laying in a bed next to a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467437.jpg', 'caption': 'A happy young couple fast asleep in their comfortable bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467437.jpg', 'caption': 'Two people lying together and facing each other in a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467437.jpg', 'caption': 'two people layin in a bed under the blankets ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467437.jpg', 'caption': 'A shirtless man laying next to a woman and looking at her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051054.jpg', 'caption': 'A woman with a concerned look talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051054.jpg', 'caption': 'A woman sitting on a bed talking on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051054.jpg', 'caption': \"Older woman talking on the phone while sitting on the bed's edge\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051054.jpg', 'caption': 'A woman is talking on a cell phone while sitting on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051054.jpg', 'caption': 'Black and white photograph of elderly woman talking on phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045685.jpg', 'caption': 'A man in a striped shirt hitting a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045685.jpg', 'caption': 'A young man walking across a court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045685.jpg', 'caption': 'A boy playing tennis at a tennis court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045685.jpg', 'caption': 'A guy bouncing a tennis ball on the pavement', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045685.jpg', 'caption': 'A man in a striped shirt hits a ball on a city tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258588.jpg', 'caption': 'A boy holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258588.jpg', 'caption': 'A boy at an apartment complex lot is in motion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258588.jpg', 'caption': 'a boy close to a fenchh looking like is is going to throw something ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258588.jpg', 'caption': 'A man taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258588.jpg', 'caption': 'Boy in a striped shirt playing on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216326.jpg', 'caption': 'Young baby sleeping in innocent white drapes around him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216326.jpg', 'caption': 'A baby sleeping with a pacifier in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216326.jpg', 'caption': 'A baby sleeps on a bed with a pacifier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216326.jpg', 'caption': 'Small baby sleeping in plush blankets with a pacifier in his or her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000216326.jpg', 'caption': 'a baby with a pacifier sleeping in bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090374.jpg', 'caption': 'The woman is playing tennis on the court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090374.jpg', 'caption': 'A woman with a racquet swinging at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090374.jpg', 'caption': 'The girl is practicing tennis and is in an awkward midswing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090374.jpg', 'caption': 'A woman wearing an ARMY shirt holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090374.jpg', 'caption': 'A woman hitting a tennis ball with a racquet on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088244.jpg', 'caption': 'A wooden desk topped with a monitor and a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088244.jpg', 'caption': 'Wooden desk and cabinet unit and electronics in an occupied hotel room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088244.jpg', 'caption': 'A computer and television sit on a hotel desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088244.jpg', 'caption': 'A tv and laptop sit on a desk in a hotel room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088244.jpg', 'caption': 'A desk has a large cabinet and computers on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327413.jpg', 'caption': 'The view of an entertainment center and desk in a hotel room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327413.jpg', 'caption': 'A hotel room filled with two beds, a desk and a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327413.jpg', 'caption': 'A bedroom scene with focus on a desk with a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327413.jpg', 'caption': 'Large wooden cabinets sitting inside a bedroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327413.jpg', 'caption': 'an image of a big cabinet in a living room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214121.jpg', 'caption': 'TWO YOUNG MEN ARE ON THE COURT PLAYING TENNIS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214121.jpg', 'caption': 'People are doing something at this time that is bolting. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214121.jpg', 'caption': 'A man on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214121.jpg', 'caption': 'a man wearing orange and white attire on a tennis court ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214121.jpg', 'caption': 'A man holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265374.jpg', 'caption': 'A man standing on a tennis court holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265374.jpg', 'caption': 'A lone man is holding a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265374.jpg', 'caption': 'Boy on tennis court walking for a ball to come his way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265374.jpg', 'caption': 'A tennis player stands still on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265374.jpg', 'caption': 'Tennis enthusiast is awaiting serve on the dirt court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084866.jpg', 'caption': 'A group of children holding racquets and tennis balls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084866.jpg', 'caption': 'a bunch of children pose with tennis rackets ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084866.jpg', 'caption': 'A group of kids who play tennis taking a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084866.jpg', 'caption': 'A group of kids posing for a photo on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084866.jpg', 'caption': 'Group photograph of young boys and girls with tennis equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313162.jpg', 'caption': 'A pizza is shown on a plate on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313162.jpg', 'caption': 'The pizza on the plate is covered in macaroni.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313162.jpg', 'caption': 'A cheese pizza made with mac and cheese and flat bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313162.jpg', 'caption': 'Large personal pizza with macaroni and cheese as a topping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313162.jpg', 'caption': 'A pizza adorned with macaroni and cheese sits on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448463.jpg', 'caption': 'A man about to hit a tennis ball on a concrete court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448463.jpg', 'caption': 'A man about to return a serve with his tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448463.jpg', 'caption': 'Man playing tennis getting ready to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448463.jpg', 'caption': 'A person on a tennis court about to hit the ball with the racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448463.jpg', 'caption': 'A man preparing to hit a tennis ball with his racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019313.jpg', 'caption': 'a person swinging a tennis racket hitting a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019313.jpg', 'caption': 'Girl playing recreational tennis with a new racquet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019313.jpg', 'caption': 'A female tennis player returning the ball to her opponent .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019313.jpg', 'caption': 'A beautiful young woman hitting a tennis ball with a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019313.jpg', 'caption': 'A woman is hitting a tennis ball with her racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015074.jpg', 'caption': 'A laptop that is sitting near a desktop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015074.jpg', 'caption': 'A laptop computer and large monitor hooked up on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015074.jpg', 'caption': 'A laptop computer is seen sitting next to a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015074.jpg', 'caption': 'a PC monitor and a laptop on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015074.jpg', 'caption': 'a black desk a laptop a monitor a pen and a book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145325.jpg', 'caption': 'A desk chair sitting up against a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145325.jpg', 'caption': ' an office chair with a pillow on the seat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145325.jpg', 'caption': 'The sign says London in front of the keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145325.jpg', 'caption': 'L-shaped black desk with a swivel chair and electronic components on the desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145325.jpg', 'caption': 'An office space that is dark in color and has a keyboard and two computer screens along with two telephones and a headset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034993.jpg', 'caption': 'An older man sitting at a desk looking at a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034993.jpg', 'caption': 'The man is sitting at the desk on his laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034993.jpg', 'caption': 'A man in orange shorts sitting on a chair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034993.jpg', 'caption': 'a man sitting at a desk with a laptop computer on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034993.jpg', 'caption': 'A man sitting at a table while looking at a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369986.jpg', 'caption': 'A lady staring lovingly into her pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369986.jpg', 'caption': 'A woman sitting at a table with two plates of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369986.jpg', 'caption': 'A woman looking at one of two pizzas on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369986.jpg', 'caption': 'A woman sitting at a table with two pizzas and beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369986.jpg', 'caption': 'Woman sitting at the table in front of her pizza and glass of beer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081251.jpg', 'caption': 'A pizza topped with fresh tomatoes greens and cheese', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081251.jpg', 'caption': 'A pizza siting on top of a white plate on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081251.jpg', 'caption': 'A food entree is shown on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081251.jpg', 'caption': 'A plate of pizza has fresh salad toppings on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000081251.jpg', 'caption': 'A simple Sicilian-style pizza with tomato, spinach, and cheese shavings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330967.jpg', 'caption': 'A girl is hitting the tennis ball during a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330967.jpg', 'caption': 'A woman wearing blue pants and an orange shirt plays tennis', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330967.jpg', 'caption': 'A woman in red shirt and blue pants playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330967.jpg', 'caption': 'A woman on a court with a tennis racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330967.jpg', 'caption': 'A girl wearing a red tank top and blue pants playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048169.jpg', 'caption': 'A woman tennis player swinging a tennis racket with both hands, on a hard surface court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048169.jpg', 'caption': 'Woman returning volley during tennis match on court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048169.jpg', 'caption': 'A woman holding a tennis racquet on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048169.jpg', 'caption': 'A woman swinging a tennis racquet at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000048169.jpg', 'caption': 'a tennis player swinging a racket at a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232950.jpg', 'caption': 'A man is looking at a sliced pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232950.jpg', 'caption': 'A man bending over a table looking at a pepperoni pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232950.jpg', 'caption': 'A man is very excited looking at pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232950.jpg', 'caption': 'A man hovers intently over the remains of a pepperoni pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232950.jpg', 'caption': 'A man is smiling above a pizza on a tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274491.jpg', 'caption': 'The pizza is full of chopped tomatoes and there is a salad on the side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274491.jpg', 'caption': 'A pizza with lettuce on the side on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274491.jpg', 'caption': 'There is a platter of pizza and salad on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274491.jpg', 'caption': 'A pizza on a table with garnish behind it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274491.jpg', 'caption': 'Baked pizza with meats and vegetables displayed on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226874.jpg', 'caption': 'A pizza topped with large tomatoes and cheese with ham.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226874.jpg', 'caption': 'A pizza with cheese, lunch meat and tomatoes as toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226874.jpg', 'caption': 'This pizza with fresh cherry tomatoes, and 2 kinds of cheese, is ready for the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226874.jpg', 'caption': 'Close up photo of an uncooked pizza topped with ham, shredded cheese, and cherry tomatoes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226874.jpg', 'caption': 'a pizza covered with tomatoes, hame and tomatoes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228722.jpg', 'caption': 'A cook preparing fresh pizza in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228722.jpg', 'caption': 'Man dishing out pizza onto a plate held by another person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228722.jpg', 'caption': 'A man placing pizza on a plate through an opening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228722.jpg', 'caption': 'A man is serving pizza to a customer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228722.jpg', 'caption': 'a man is serving some food to a customer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113369.jpg', 'caption': 'A couple pieces of pizza sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113369.jpg', 'caption': 'Two slices of pepperoni pizza with a jar of red pepper and a red glass with a straw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113369.jpg', 'caption': 'Pizza on a tray with a knife,a fork, and a cup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113369.jpg', 'caption': 'Two slices of pizza and a drink are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113369.jpg', 'caption': 'Two large slices of pepperoni pizza on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143767.jpg', 'caption': 'A collection of products displayed on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143767.jpg', 'caption': 'many different items are on a bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143767.jpg', 'caption': 'A bed topped with persona items and cosmetic items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143767.jpg', 'caption': \"An assortment of women's toiletries layed out on a bed. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143767.jpg', 'caption': 'An unmade be with two toothbrushes, a book and a manicure kit on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361815.jpg', 'caption': 'A tooth brush sitting on the side of a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361815.jpg', 'caption': 'A toothbrush with a smiley face on it standing upright on a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361815.jpg', 'caption': 'Toothbrush with a smiley face sitting on a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361815.jpg', 'caption': 'BLACK AND WHITE PHOTO OF A SINK WITH A SMILING FACE TOOTHBRUSH', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361815.jpg', 'caption': 'A tooth brush with a smiley face on it next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460251.jpg', 'caption': 'A tv remote control sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460251.jpg', 'caption': 'The remote is left on the table for anyone who needs it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460251.jpg', 'caption': 'A gray television remote control on a wood surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460251.jpg', 'caption': 'A black remote laying on a wooden surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460251.jpg', 'caption': 'A television remote control laying on a wood piece of furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455218.jpg', 'caption': 'A living room with furniture and a wall hanging', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455218.jpg', 'caption': 'A hanging wall sculpture in a room decorated in black, white and red', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455218.jpg', 'caption': 'A piece of artwork next to a red painting on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455218.jpg', 'caption': 'A room that has a tapestry hanging in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000455218.jpg', 'caption': 'A black and white curtain hanging in a room that is decorated in black, white and red.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034096.jpg', 'caption': 'A house being built with lots of wood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034096.jpg', 'caption': 'A big pile of building material is placed on the floor in the wooden structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034096.jpg', 'caption': 'A partially-built house with wooden studs and staircase in view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034096.jpg', 'caption': 'A house full of wood getting built at the moment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034096.jpg', 'caption': 'The beginning stages of a home still being made. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414343.jpg', 'caption': 'People play Wii while wearing colorful clothing and posing for the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414343.jpg', 'caption': 'A woman sanding next to two other women playing games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414343.jpg', 'caption': 'A woman holding up the peace sign and remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414343.jpg', 'caption': 'Three women smiling and giving the peace sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414343.jpg', 'caption': 'Three women in a room with a Nintendo Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250164.jpg', 'caption': 'A bedroom with a blue bed surrounded by metal stools.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250164.jpg', 'caption': 'A living room with funky blue furniture in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250164.jpg', 'caption': 'a blue table with some stuff on top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250164.jpg', 'caption': 'A room with all blue and white furnitures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250164.jpg', 'caption': 'There are many different types of furniture in the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326075.jpg', 'caption': 'People are walking around at a technology convention.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326075.jpg', 'caption': 'A group of young men standing in front of a TV screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326075.jpg', 'caption': 'Crowds gather at a convention to look at the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326075.jpg', 'caption': 'A group of kids playing games at a convention.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326075.jpg', 'caption': 'Children enjoying the Wii display at a convention.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364580.jpg', 'caption': 'A living room filled with furniture and a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364580.jpg', 'caption': 'A blue couch is facing towards two chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364580.jpg', 'caption': 'a white chair a table a gray couch and two lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364580.jpg', 'caption': 'A room with striped floor has a couch, pair of chairs, and wooden coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364580.jpg', 'caption': 'A clean living room is shown with different colored furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160531.jpg', 'caption': 'A man playing Wii bowling in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160531.jpg', 'caption': 'Man standing holding a remote control towards a component.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160531.jpg', 'caption': 'A man pointing a Wii remote at his console. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160531.jpg', 'caption': 'A man playing wii bowling in front of the television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160531.jpg', 'caption': 'A young man pointing a remote at the tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375909.jpg', 'caption': 'A living room and kitchen with a mattress in the hall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375909.jpg', 'caption': 'A twin mattress sits in the corner of an apartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375909.jpg', 'caption': 'A mattress is laying on the floor of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375909.jpg', 'caption': 'White apartment building with various out of place furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375909.jpg', 'caption': 'a white couch and a mattress on the ground and some cupboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376679.jpg', 'caption': 'a man that is standing up with a wii remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376679.jpg', 'caption': 'a couple of people sitting and standing in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376679.jpg', 'caption': 'a man is playing video games on a television ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376679.jpg', 'caption': 'A young man playing a video game while another man watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376679.jpg', 'caption': 'A man playing a video game does a big backswing with the remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077473.jpg', 'caption': 'A woman holding a Nintendo Wii game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077473.jpg', 'caption': 'a man and woman walking in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077473.jpg', 'caption': 'Something has caught the attention of the man and the woman, and they turn to the left.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077473.jpg', 'caption': 'A man and woman standing near a file cabinet with boxes on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077473.jpg', 'caption': 'A women and a man standing up looking the same direction . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505818.jpg', 'caption': 'Some people are hanging out and playing the nintendo Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505818.jpg', 'caption': 'A group of people hanging out with two people playing the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505818.jpg', 'caption': 'several people sitting and standing around at a party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505818.jpg', 'caption': 'Group of young adults hanging out with snacks on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505818.jpg', 'caption': 'A group of people lounging around in a room ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572296.jpg', 'caption': 'a person in a living room playing nintendo wii near a window ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572296.jpg', 'caption': 'a person standing in front of the curtains of a window and a television and holding a game controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572296.jpg', 'caption': 'a man that is standing up with a wii remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572296.jpg', 'caption': 'A man smiles in front of floral print drapes with his Wii. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572296.jpg', 'caption': 'The man is holding a remote control in his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303971.jpg', 'caption': 'Man in blue striped shirt playing Nintendo Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303971.jpg', 'caption': 'A man with a remote control looking at a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303971.jpg', 'caption': 'A man is playing Wii Bowling on a small television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303971.jpg', 'caption': 'The man with the Wii controller is smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303971.jpg', 'caption': 'A man with a blue and white striped shirt playing with a Wii in front of his TV set. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113246.jpg', 'caption': 'A woman standing in a living room holding a Wii controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113246.jpg', 'caption': 'people standing in a living room holding a remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113246.jpg', 'caption': 'Three friends enjoying video games in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113246.jpg', 'caption': 'Three people smile as one of them holds a video game remote. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113246.jpg', 'caption': 'A family is in a living room playing the Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415646.jpg', 'caption': 'An attic bedroom with a bed and a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415646.jpg', 'caption': 'A bedroom filled with two beds and lots of furniture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415646.jpg', 'caption': 'A large living room with several items in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415646.jpg', 'caption': 'An attic bedroom for two is well lit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415646.jpg', 'caption': 'A bedroom with slanted ceilings is illuminated by sunlight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398567.jpg', 'caption': 'A desk with a computer, a keyboard, a mouse, a bobble head, speakers and a lava lamp on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398567.jpg', 'caption': 'A picture of a computer desk with various personal objects.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398567.jpg', 'caption': 'the computer is on a wooden computer desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398567.jpg', 'caption': 'A computer desk with a monitor, a keyboard and mouse, and several other computer accessories.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398567.jpg', 'caption': 'A computer desk with various items around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571641.jpg', 'caption': 'A computer desk topped with a large monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571641.jpg', 'caption': 'A computer on a small wooden desk cluttered with many items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571641.jpg', 'caption': 'A desk with a computer, office items, and CDs on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571641.jpg', 'caption': 'Home desk with computer and other assorted electronics.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571641.jpg', 'caption': 'A home office of someone making lots of CDs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347766.jpg', 'caption': 'A computer desk has two monitors, mice, keyboards, cell phone, speakers, and webcam.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347766.jpg', 'caption': 'A couple of home computers on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347766.jpg', 'caption': 'A desk with a cellphone, keyboard and two computer monitors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347766.jpg', 'caption': 'an image of a laptop with a clock next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347766.jpg', 'caption': 'Two computer monitors are on a brown table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163348.jpg', 'caption': 'A desk with a small white computer set up on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163348.jpg', 'caption': 'A desk with a laptop, alarm clock, and office supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163348.jpg', 'caption': 'A desk with a laptop and various other items on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163348.jpg', 'caption': 'A laptop and keyboard sit on a desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000163348.jpg', 'caption': 'Computer and other office supplies on a neatly organized work space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353300.jpg', 'caption': 'A group of lego men standing on top of a computer keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353300.jpg', 'caption': 'Several Lego people appear to be pressing keyboard keys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353300.jpg', 'caption': ' bunch of toy men near a computer keyboard and a book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353300.jpg', 'caption': 'Lego figures are place to climb up a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353300.jpg', 'caption': 'a keyboard that has some lego men on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352978.jpg', 'caption': 'A living area with chairs, shelves and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352978.jpg', 'caption': 'A modern living room with a marble fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352978.jpg', 'caption': 'A lounge with chairs, shelves, and a fireplace', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352978.jpg', 'caption': 'A room with a fireplace in a wood wall area and four chairs in front of the fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352978.jpg', 'caption': 'A couple of chair sitting underneath a lamp hanging from the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056960.jpg', 'caption': 'A pair of computer monitors display contrasting sets of angel wings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056960.jpg', 'caption': 'Two computer screens showing black wings on a white screen and white wings on a black screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056960.jpg', 'caption': 'two computer monitors each with a different colored pair of angel wings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056960.jpg', 'caption': 'Two monitors with art from Akon albums on them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056960.jpg', 'caption': 'Two screens show two unique pairs of wings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568281.jpg', 'caption': 'A television sits in an empty studio apartment. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568281.jpg', 'caption': 'A living room, with a television, chairs, and computer desk in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568281.jpg', 'caption': 'A room with a desk, chairs, television, and mini-fridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568281.jpg', 'caption': 'A room with chairs, a desk, a small refrigerator and microwave, and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568281.jpg', 'caption': 'A room is filled with someones furniture and belongings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547457.jpg', 'caption': 'A woman is driving along and smiling as she passes through a tree lined area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547457.jpg', 'caption': 'Lady behind the wheel of a vehicle with grey interior.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547457.jpg', 'caption': 'a young woman is driving through a lot of trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547457.jpg', 'caption': 'The girl is smiling and driving the truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547457.jpg', 'caption': 'A pretty woman driving a truck with a smart phone sitting next to her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298978.jpg', 'caption': 'A woman is putting her seat belt on in the car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298978.jpg', 'caption': 'A beautiful young woman buckling her seat belt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298978.jpg', 'caption': 'There is a woman sitting behind the wheel of the car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298978.jpg', 'caption': 'a person in a car wearing a seat belt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298978.jpg', 'caption': 'Here is a soul in the image alone. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309005.jpg', 'caption': 'A living room filled with furniture and a white table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309005.jpg', 'caption': 'A table and a television in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309005.jpg', 'caption': 'a living room with a bunch of appliances inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309005.jpg', 'caption': 'A stroller sits in a cluttered living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309005.jpg', 'caption': 'Light is shining in a window to a cluttered living space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010591.jpg', 'caption': 'A man standing on a tennis court next to a young boy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010591.jpg', 'caption': 'a tennis player in a black shirt is wiping his face', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010591.jpg', 'caption': 'Tennis player and kid standing on a pro tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010591.jpg', 'caption': 'A crowd is sitting and watching a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010591.jpg', 'caption': 'a tennis player wiping his face off with a towel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113041.jpg', 'caption': 'A man running with tennis racquet in hand trying to hit the tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113041.jpg', 'caption': 'A tennis player is hitting the ball on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113041.jpg', 'caption': 'a man that is on a tennis court with a racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113041.jpg', 'caption': 'A tennis player in action on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113041.jpg', 'caption': 'man swinging a tennis racket on tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347688.jpg', 'caption': 'A person hitting a tennis ball with a racquet.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000407286.jpg', 'caption': \"A trio of dogs sitting in their owner's lap in a red convertible.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407286.jpg', 'caption': \"Three little dogs looking out a car window while sitting on a woman's lap. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407286.jpg', 'caption': 'A woman driver has three dogs in the seat with her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407286.jpg', 'caption': 'A woman and her three dogs in a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407286.jpg', 'caption': \"Three dogs on the lap of a woman in the driver's seat of a convertible.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242673.jpg', 'caption': 'A highway filled with lots of traffic next to buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242673.jpg', 'caption': 'A large highway back up with rush hour traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242673.jpg', 'caption': 'There is a lot of traffic during this time of day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242673.jpg', 'caption': 'a long pile up of cars lined through the city and around the buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242673.jpg', 'caption': 'THERE IS AN IMAGE OF A BUSY STRET WITH THREE LANES OF HEAVY TRAFFIC', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195510.jpg', 'caption': 'A busy street is full of cars and a bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195510.jpg', 'caption': 'A VERY BUSY STREET WITH CARS AND A BUS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195510.jpg', 'caption': 'Cars moving down street with bus moving past on one side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195510.jpg', 'caption': 'Crowded city street with cars and buses on sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195510.jpg', 'caption': 'A bus driving down a street next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406949.jpg', 'caption': 'A large white bush driving down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406949.jpg', 'caption': 'White passenger bus passing through a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406949.jpg', 'caption': 'a street with some cars a bus and a person on a bicycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406949.jpg', 'caption': 'Two white vehicles, one a car the other a bus, on a crowded street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000406949.jpg', 'caption': 'Several cars are traveling on a city street while a bicyclist waits to cross the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553879.jpg', 'caption': 'A busy intersection with many cars and traffic lanes lies beneath an overpass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553879.jpg', 'caption': 'Traffic on a highway during the daytime. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553879.jpg', 'caption': 'There are many cars and buses on the busy highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553879.jpg', 'caption': 'Tons of traffic are scattered down the busy highway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553879.jpg', 'caption': ' A highway filled with heavy traffic near a cement bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175570.jpg', 'caption': 'A bus turning a corner at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175570.jpg', 'caption': 'A bus in the city making a left turn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175570.jpg', 'caption': 'A passenger bus turning the corner on a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175570.jpg', 'caption': 'A commuter bus driving down a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000175570.jpg', 'caption': 'The bus has the lights on as it travels down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330455.jpg', 'caption': 'A bus driving down a street next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330455.jpg', 'caption': 'A picture of some cars stopped at a red light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330455.jpg', 'caption': 'A car passing a bus on in the evening traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330455.jpg', 'caption': 'A car and a red tour bus seemed to be stopped in traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330455.jpg', 'caption': \"It is night time, and the city's traffic lights are controlling the flow of traffic.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540860.jpg', 'caption': 'A green car on display next to a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540860.jpg', 'caption': 'A sculpture of a green hot rod on a city sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540860.jpg', 'caption': 'A sculpture of a hot rod sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540860.jpg', 'caption': 'This is a city art piece of a small car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540860.jpg', 'caption': 'A small green vehicle model is on display next to a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202658.jpg', 'caption': 'An old toilet with a hello kitty cover top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202658.jpg', 'caption': 'A toilet with a Hello Kitty symbol on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202658.jpg', 'caption': 'A toilette with a pink hello kitty toilette seat cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202658.jpg', 'caption': 'A toilet with a Hello Kitty seat sitting in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202658.jpg', 'caption': 'A broken toilet bowl with a Hello Kitty toilet seat cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296243.jpg', 'caption': 'A white compact car parked on a sandy dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296243.jpg', 'caption': 'A car being driven onto two white flat things', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296243.jpg', 'caption': 'A man getting in a sport utility vehicle with surf boards on the roof.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296243.jpg', 'caption': 'Man standing in open door of car on a desert road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296243.jpg', 'caption': 'A man gets back into his car in the desert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147576.jpg', 'caption': 'A couple of boats and car on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147576.jpg', 'caption': 'two small boats in a small body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147576.jpg', 'caption': 'A couple of small boats parked next to a red car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147576.jpg', 'caption': 'A car parked in front of building near boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147576.jpg', 'caption': 'a couple of boats and a red car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417596.jpg', 'caption': 'A couple of wooden benches sitting across from each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417596.jpg', 'caption': 'a couple of benches that are next to a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417596.jpg', 'caption': 'a couple of wood benches are near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417596.jpg', 'caption': 'Two empty benches in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417596.jpg', 'caption': 'Wooden benches on cement outside of commercial building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529968.jpg', 'caption': 'A cat is sitting on a motorcycle looking in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529968.jpg', 'caption': 'there is a cat that is sitting on a bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529968.jpg', 'caption': 'A cat sitting on a motor scooter seat scratching its neck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529968.jpg', 'caption': 'A cat sitting on a motorcycle looking at the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529968.jpg', 'caption': 'A cat sitting on top of a parked motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532426.jpg', 'caption': 'A dog attached to a motor cycle by a leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532426.jpg', 'caption': 'A dog attache by his leash to the side car of a motorcycle parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532426.jpg', 'caption': 'A dog is tied to a cart on the side of a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532426.jpg', 'caption': 'a dog tied to a motorcycle with a side car in a parking lot ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532426.jpg', 'caption': 'A dog waits as it is tied up to a motorcycle sidecar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579468.jpg', 'caption': 'A beautiful woman with a blue fro brushing her teeth with a giant toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579468.jpg', 'caption': 'an image of a girl with a blue wig and a tootbrush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579468.jpg', 'caption': 'A young woman with blue hair uses an oversized toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579468.jpg', 'caption': 'A woman with blue hair and a giant toothbrush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579468.jpg', 'caption': 'A woman with a blue wig brushes her teeth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136572.jpg', 'caption': 'A couple of motorcycles parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136572.jpg', 'caption': 'Two motorcycles parked near each other by a sewer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136572.jpg', 'caption': '2 different motor bikes parked next to each other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136572.jpg', 'caption': 'Two motorcycles are parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136572.jpg', 'caption': 'a red motorcycle is parked by a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210883.jpg', 'caption': 'A couple of men herding sheep down a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210883.jpg', 'caption': 'A rural wide street has sheep, bicycles and busses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210883.jpg', 'caption': 'Two people standing beside a flock of sheep on a busy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210883.jpg', 'caption': 'A large group of sheep near two men', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210883.jpg', 'caption': 'As pedestrians move through a crowded town a herder moves his sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463066.jpg', 'caption': 'A cat perched on top of a white toilet seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463066.jpg', 'caption': 'A cute little cat sticking its head in a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463066.jpg', 'caption': 'a cat in a bath room looking inside of a toilet bowl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463066.jpg', 'caption': 'A cat stands at the seat of a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463066.jpg', 'caption': 'A grey and white cat sticking its head into a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537395.jpg', 'caption': 'a bunch of toilets that are next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537395.jpg', 'caption': 'A row of clean-looking, non-operational toilets with their lids down next to several lidless ones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537395.jpg', 'caption': 'A row of white toilets sitting on top of a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537395.jpg', 'caption': 'A bunch of white toilets with closed lids.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537395.jpg', 'caption': 'Commodes displayed on cement floor side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487192.jpg', 'caption': 'A bunch of garbage sitting in a cluttered area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487192.jpg', 'caption': 'a black and white photo of a toilet in a shack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487192.jpg', 'caption': 'A toilet and a bush in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487192.jpg', 'caption': 'A black and white picture of a toilet beside a bunch of garbage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487192.jpg', 'caption': 'Toilet, ladder, and potted plant among outdoor garden supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303549.jpg', 'caption': 'A white toilet with a black lid and red painting on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303549.jpg', 'caption': 'a close up of a toilet with graffiti on the lid', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303549.jpg', 'caption': 'A bathroom with a black and white toilet and grey pipes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303549.jpg', 'caption': 'A dirty broken spray painted toilet in a bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303549.jpg', 'caption': 'There is a very dirty public toilet stall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464534.jpg', 'caption': 'a view of a bathroom area with a white long flusher and window behind it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464534.jpg', 'caption': 'Through a peephole there is a window, a toilet and a trash can.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464534.jpg', 'caption': 'A peak into a long bathroom with a toilet, but no shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464534.jpg', 'caption': 'A small narrow bathroom with white and black flooring', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464534.jpg', 'caption': 'A restroom with a window and a toilet sitting underneath it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232511.jpg', 'caption': 'There is a older man on a motorized chair riding on the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232511.jpg', 'caption': 'An older gentleman is riding a scooter as two people watch from the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232511.jpg', 'caption': 'The man drives his motorized scooter while two women stand and watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232511.jpg', 'caption': 'a woman and a girl are watching an old man riding on the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232511.jpg', 'caption': 'Elderly man using electric wheel chair on grassy area with girl and woman looking on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020788.jpg', 'caption': 'A woman hovering over food on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020788.jpg', 'caption': 'an older Asian woman fixing food on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020788.jpg', 'caption': 'A lady is preparing a table with dishes of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020788.jpg', 'caption': 'A woman standing over a table of food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020788.jpg', 'caption': 'A woman puts the finishing touches on several plates of food. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377401.jpg', 'caption': 'A large yellow building has a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377401.jpg', 'caption': 'The tower of a building near a park with snow on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377401.jpg', 'caption': 'A very large building, that appears to be a truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377401.jpg', 'caption': 'a building with a tower that contains a clock ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377401.jpg', 'caption': 'A tall large building with a tower with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379869.jpg', 'caption': 'a couple of cats that are sitting on a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379869.jpg', 'caption': 'A cat eating out of a bowl beside another cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379869.jpg', 'caption': ' couple of cats are standing on a ledge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379869.jpg', 'caption': 'two gray and white cats on a fence and plants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379869.jpg', 'caption': 'Two grey and white cats sitting on a deck rail and one cat is eating out of a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050637.jpg', 'caption': 'An old brick city has water and a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050637.jpg', 'caption': 'Here is an image of an outside city with a clock.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050637.jpg', 'caption': 'European architecture next to the water during the day time. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050637.jpg', 'caption': 'A cobble stone courtyard surrounded by buildings and a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050637.jpg', 'caption': 'A landscape photograph of an intricate and detailed architectural structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226360.jpg', 'caption': 'A cat and a metal bowl on a wooden platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226360.jpg', 'caption': 'a black and white cat a fence and some silver bowls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226360.jpg', 'caption': 'A cat is looking in the bowl on the ledge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226360.jpg', 'caption': 'A gray and white cat peers into a pot left on the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000226360.jpg', 'caption': 'Cat drinking from metal bowl on top of wood fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022420.jpg', 'caption': 'A library or store is full of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022420.jpg', 'caption': 'some books in a store about motorcycles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022420.jpg', 'caption': 'A book shelf filled with different kinds of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022420.jpg', 'caption': 'Books about motorcycles sit on a shelf near books about trains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022420.jpg', 'caption': 'a person holding a book in a book store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315790.jpg', 'caption': 'a room with a computer monitor and a black cat on a chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315790.jpg', 'caption': 'A cat laying on top of a blue chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315790.jpg', 'caption': 'A computer desk with an old pc and lots of clutter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315790.jpg', 'caption': 'Computer stand with large monitor in cluttered room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000315790.jpg', 'caption': 'A cluttered home office with a cat sitting on the chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117380.jpg', 'caption': 'A motor bike stationary in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117380.jpg', 'caption': 'a close up of a motorcycle parked in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117380.jpg', 'caption': 'A motorcycle parked in a parking lot near a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117380.jpg', 'caption': 'A black motorcycle in a parking space next to a vehicle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000117380.jpg', 'caption': 'A black motorcycle parked in a parking spot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036761.jpg', 'caption': 'A motorcycle parked in a courtyard in front of a small restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036761.jpg', 'caption': 'A red motorcycle parked in front of a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036761.jpg', 'caption': 'A motorcycle is parked outside of a nice restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036761.jpg', 'caption': 'A motorcycle with a helmet on it sitting outside a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036761.jpg', 'caption': 'The motorcycle is parked outside of a restaurant at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155142.jpg', 'caption': 'A television sits on a cabinet in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155142.jpg', 'caption': 'A bedroom with dresser and television on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155142.jpg', 'caption': 'A room containing a TV, closet, and exit to the hallway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155142.jpg', 'caption': 'a living room with a television and dresser inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155142.jpg', 'caption': 'An empty bedroom with a flat screen tv sitting on a dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359310.jpg', 'caption': 'A man on a motorcycle with a passenger car attached, parked on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359310.jpg', 'caption': 'A man riding a motorcycle next to a little car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359310.jpg', 'caption': 'The young man on the bike is parked at the edge of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359310.jpg', 'caption': 'A street scene with a man on a motorcycle and people in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359310.jpg', 'caption': 'Man driving a sidecar scooter in an alley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504297.jpg', 'caption': 'A hot dog sitting on top of a white paper in a bun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504297.jpg', 'caption': 'Two hotdogs with toppings sitting on table next to a cup of drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504297.jpg', 'caption': 'Two hotdogs and a drink sitting on an orange table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504297.jpg', 'caption': 'Two hot dogs with mustard, relish, ketchup, and onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504297.jpg', 'caption': 'A couple of hotdogs that are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505709.jpg', 'caption': 'Empty bar or lounge before or after business hours.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505709.jpg', 'caption': 'A restaurant that has many tables set up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505709.jpg', 'caption': \"An empty bar looks empty with all of it's clean tables. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505709.jpg', 'caption': 'Dining tables and chairs in a restaurant with dim lighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505709.jpg', 'caption': 'A dinning hall with dark wooden furniture and circular light fixtures. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412693.jpg', 'caption': 'Two adorable birds perched on a piece of bamboo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412693.jpg', 'caption': 'Two birds are sitting perched on a tree limb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412693.jpg', 'caption': 'Two, small, colorful birds perched on a bamboo pole dotted with guano.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412693.jpg', 'caption': 'two colorful birds siting on a tree branch next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412693.jpg', 'caption': 'Two small birds sitting on a piece of wood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484301.jpg', 'caption': 'A couple of motor bikes and cars on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484301.jpg', 'caption': 'A pair of motorcycles parked in a bike slot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484301.jpg', 'caption': 'A busy day on the street including cars and motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484301.jpg', 'caption': 'Motorcycles parked in designated spaces in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000484301.jpg', 'caption': 'A parking lot scene with cars and motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207179.jpg', 'caption': 'A lot of motorcycles parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207179.jpg', 'caption': 'Several motorcycles parked in a garage along the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207179.jpg', 'caption': 'A orange and white motorcycle parked by several other motorcycles near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207179.jpg', 'caption': 'a group of dirt bikes parked next to each other under a covered area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207179.jpg', 'caption': 'Several motorcycles stand in a row facing an open street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228506.jpg', 'caption': 'A cat laying bed in a small room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228506.jpg', 'caption': 'A black and white cat is in a black bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228506.jpg', 'caption': 'a close up of a cat laying on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228506.jpg', 'caption': 'a cat goes through a bag as it lays on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000228506.jpg', 'caption': 'A cat on a bed partially inside a canvas bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231855.jpg', 'caption': 'A group of people riding on the backs of motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231855.jpg', 'caption': 'A motorcycle and another motorcycle with a sales stand stand parked in a square.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231855.jpg', 'caption': \"People are standing around a street vendor's motorcycle.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231855.jpg', 'caption': 'A group of people in next to motor scooters, in front of a store with Asian character writing on the awnings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231855.jpg', 'caption': 'people gather around a small motorcycle cart selling something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532463.jpg', 'caption': 'A blue bench covered in different style bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532463.jpg', 'caption': 'Purses are lined up on a bench outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532463.jpg', 'caption': 'Several totes sitting on a bench outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532463.jpg', 'caption': 'Several shopping bags are sitting on a blue bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000532463.jpg', 'caption': 'A picture of an outside region that appears incredible. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169347.jpg', 'caption': 'A dog on a leash in front of a closed door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169347.jpg', 'caption': 'A dog on a leash is standing at the door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169347.jpg', 'caption': 'A Scottie dog on a leash getting ready to board the elevator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169347.jpg', 'caption': 'Black and white photograph of a dog next to a door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169347.jpg', 'caption': 'A black and white terrier looks up at the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342515.jpg', 'caption': 'A long row of motorcycles parked side by side next to a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342515.jpg', 'caption': 'Motorcycles parked in front of a repair shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342515.jpg', 'caption': 'Motorcycles are lined up in a row outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342515.jpg', 'caption': 'Motorcycles for sale parking in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342515.jpg', 'caption': '6 motorcycles are sitting outside a shop in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011703.jpg', 'caption': 'Inside a tram waiting to go out the door. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011703.jpg', 'caption': 'A subway train with doors and circular rails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011703.jpg', 'caption': 'White windows and doors with signs on the walls. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011703.jpg', 'caption': 'The inside of a train is shown near the doors and window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011703.jpg', 'caption': 'a tram car door as seen from the inside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149974.jpg', 'caption': 'A service vehicle sits on a tarmac in front of a jet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149974.jpg', 'caption': 'A white vehicle driving past an airport with an airplane in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149974.jpg', 'caption': 'A van is traveling down the road with a plane in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149974.jpg', 'caption': 'An airliner is preparing to take off at the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149974.jpg', 'caption': 'An airplane and suv sitting on runways next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285607.jpg', 'caption': 'A big commercial plane flying high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285607.jpg', 'caption': 'A jet flying at a very high altitude with a very blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285607.jpg', 'caption': 'you can see there is a plane flying very high in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285607.jpg', 'caption': 'An airplane flies through the sky at some distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285607.jpg', 'caption': 'View of airliner at great altitude in a cloudless sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561014.jpg', 'caption': 'a red and white plane is fling in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561014.jpg', 'caption': 'A plane with twin propellers flies through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561014.jpg', 'caption': 'A huge airplane with propellers flies across the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561014.jpg', 'caption': 'a very large airplane that is flying in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561014.jpg', 'caption': 'A red and white, two-propeller airplane in flight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086615.jpg', 'caption': 'A shaggy haired sheep with its lambs next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086615.jpg', 'caption': 'three sheep grazing on an open field side by side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086615.jpg', 'caption': 'A ewe and two lambs graze in a green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086615.jpg', 'caption': 'Two newborn lambs are standing behind their mother. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086615.jpg', 'caption': 'two lambs standing in some grass next to a bigger sheep ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578591.jpg', 'caption': 'A large jetliner sitting on top of an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578591.jpg', 'caption': 'A plane riding down a runway of an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578591.jpg', 'caption': 'A airplane sitting on a runway at a small airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578591.jpg', 'caption': 'An airplane on the runway of an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000578591.jpg', 'caption': 'a airplane that is on a runway by some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234291.jpg', 'caption': 'Lone giraffe standing in shade of tree in outdoor natural area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234291.jpg', 'caption': 'A zebra is standing beside a tree in the wild. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234291.jpg', 'caption': 'A giraffe is in the wild standing next to a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234291.jpg', 'caption': 'A giraffe stands next to a tree on savannah.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234291.jpg', 'caption': 'A giraffe standing in front of a tree with more trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540694.jpg', 'caption': 'A giraffe standing in a lot filled with cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540694.jpg', 'caption': 'A giraffe curiously looking in to a minivan at a wildlife park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540694.jpg', 'caption': 'A giraffe lowers his head to look in the window of a minivan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540694.jpg', 'caption': 'A large giraffe standing in the middle of traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540694.jpg', 'caption': 'The giraffe is walking by the vehicles that are parked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278237.jpg', 'caption': 'A street scene with several cars and a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278237.jpg', 'caption': 'a busy city street with cars and a bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278237.jpg', 'caption': 'Vehicles traveling on a very busy street, in both directions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278237.jpg', 'caption': 'a bus and two cars are going down a two way street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000278237.jpg', 'caption': 'A gray car driving by a city bus on the opposite side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356394.jpg', 'caption': 'People walking and bicycling in a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356394.jpg', 'caption': 'bicycles riding in a crowded downtown city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356394.jpg', 'caption': 'Bicyclists taking up a lane at a traffic signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356394.jpg', 'caption': 'there are many people walking across this street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356394.jpg', 'caption': 'People ride their bikes through a busy city intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347422.jpg', 'caption': 'bench located near the side of a ship', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347422.jpg', 'caption': 'A bench that is overlooking the ocean with life rings behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347422.jpg', 'caption': 'A boat floating on water next to another boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347422.jpg', 'caption': 'A bench on a boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347422.jpg', 'caption': 'a long wooden bench on a boat on the ocean water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131493.jpg', 'caption': 'People on the shore as boats sit in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131493.jpg', 'caption': 'A man walking next to a large blue round bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131493.jpg', 'caption': 'A bench that is shaped like a semi circle, with a man sitting in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131493.jpg', 'caption': 'a blue bike rack is by the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131493.jpg', 'caption': 'some people some benches grass water boats and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094663.jpg', 'caption': 'A power line with lots of different components.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094663.jpg', 'caption': 'There are nine satelite dishes hanging off of a wire overlooking cloudy skies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094663.jpg', 'caption': 'Four lights are suspended from the traffic signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094663.jpg', 'caption': 'Those look like they are oil lamps in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094663.jpg', 'caption': 'Several brackets hold up a large sign outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325623.jpg', 'caption': 'two people standing near a pole outside of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325623.jpg', 'caption': 'Some people on a street with some tables and chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325623.jpg', 'caption': 'A couple of people standing on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325623.jpg', 'caption': 'Two people stand on the street in front of a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325623.jpg', 'caption': 'people stand outside of a shop where there are tables and chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249404.jpg', 'caption': 'A road sign is next to a red traffic light. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249404.jpg', 'caption': 'Street lights with another large sign sitting next to it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249404.jpg', 'caption': 'Traffic signs stand on city street that has a pink sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249404.jpg', 'caption': 'A streetlight and sign in front of a purple sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249404.jpg', 'caption': 'A traffic light located on a city street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490991.jpg', 'caption': 'A giraffe grazing from feeder in dirt area next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490991.jpg', 'caption': 'a giraffe standing with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490991.jpg', 'caption': 'A giraffe standing in a open rocky field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490991.jpg', 'caption': 'A giraffe standing next to a lush green forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490991.jpg', 'caption': 'A giraffe is eating out of a feeder', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120412.jpg', 'caption': 'A lot of traffic on the road in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120412.jpg', 'caption': 'A small sign in the middle of a street by a traffic signal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120412.jpg', 'caption': 'an intersection filled with cars passing by signs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120412.jpg', 'caption': 'A group of cars are driving in traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120412.jpg', 'caption': 'A grey car is turned right at a stop light and a hazard sign was in his lane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321476.jpg', 'caption': 'Woman eating on park bench pigeons around her', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321476.jpg', 'caption': 'A woman sitting on top of a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321476.jpg', 'caption': 'A woman in a colorful headscarf sits eating on a bench surrounded by pigeons. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321476.jpg', 'caption': 'The woman sits on a wooden bench near a large flock of pigeons. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000321476.jpg', 'caption': 'A woman with a blue head wrap sitting on a bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262505.jpg', 'caption': 'A busy city street with many different vehicles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262505.jpg', 'caption': 'A city street filled with lots of traffic and lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262505.jpg', 'caption': 'very many vehicle moving on the road with traffic lights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262505.jpg', 'caption': 'Cars are crossing paths in an intersection, nearing accident.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262505.jpg', 'caption': 'car traveling down a city street next to a gas station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506401.jpg', 'caption': 'A city scene is shown with stop lights is shown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506401.jpg', 'caption': 'People standing by and taking pics of statues of two cats ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506401.jpg', 'caption': 'A group of people stand in a dimly lit area between roads.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506401.jpg', 'caption': 'In the city there are two animal statues.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506401.jpg', 'caption': 'A street with traffic lights and cat sculptures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157891.jpg', 'caption': 'Giraffes eating the branches of the trees in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157891.jpg', 'caption': 'Three giraffes grazing on leaves on a plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157891.jpg', 'caption': 'A group of giraffe eating in a grassy wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157891.jpg', 'caption': 'Three giraffes eating leaves off trees in the tundra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157891.jpg', 'caption': 'A herd of giraffes eating from trees on a plain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552395.jpg', 'caption': 'A cat is perched upon a wooden bench that sits on a stone patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552395.jpg', 'caption': 'A cat is sitting on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552395.jpg', 'caption': 'A cat sitting on a wooden bench on a sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552395.jpg', 'caption': \"There's a black and brown cat sitting on a bench.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552395.jpg', 'caption': 'A brown and black cat is sitting on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137156.jpg', 'caption': 'A yellow taxi cab driving down a street near a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137156.jpg', 'caption': 'Two cars are traveling on the road and wait at the traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137156.jpg', 'caption': 'Traffic lights surmount the entry to a tunnel in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137156.jpg', 'caption': 'Two cars driving down the road under traffic lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137156.jpg', 'caption': 'Two cars and out on the street going through a tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559047.jpg', 'caption': 'A cat that is sitting down on a wooden seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559047.jpg', 'caption': 'a cat sitting on a wooden top over some vegetation ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559047.jpg', 'caption': 'A cat sitting on a wooden bench outside in a garden area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559047.jpg', 'caption': 'The cat is grey and white in color', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559047.jpg', 'caption': 'A cat is sitting on a chair in a garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381721.jpg', 'caption': 'A man and two cats sit on a bench beside a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381721.jpg', 'caption': 'a long bench with two cats and a person sitting on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381721.jpg', 'caption': 'A man sitting on a bench with two cats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381721.jpg', 'caption': 'a man sitting on a green bench next to two cats in front of the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381721.jpg', 'caption': 'A man sitting on a bench next to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330408.jpg', 'caption': 'A bus at a traffic intersection in a city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330408.jpg', 'caption': 'A bus and cars sit on a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330408.jpg', 'caption': 'A bus parked on the side of the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330408.jpg', 'caption': 'A large passenger bus traveling down a paved road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330408.jpg', 'caption': 'A big white city bus and some cars on a wide city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296825.jpg', 'caption': 'A yellow and red van that reads \" Foot Stinks \" on it\\'s right passenger door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296825.jpg', 'caption': 'The creatively painted Teenage Mutant Ninja Turtles van', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296825.jpg', 'caption': 'a yellow red and green van and a person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296825.jpg', 'caption': 'A bus that is sitting on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296825.jpg', 'caption': 'A teenage mutant ninja turtle van parked on the side walk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472101.jpg', 'caption': 'A traffic light surrounded by trees near a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472101.jpg', 'caption': 'A traffic light hanging attached to a line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472101.jpg', 'caption': 'A sideways stoplight hangs next to some wires. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472101.jpg', 'caption': 'A green traffic light next to a street sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472101.jpg', 'caption': 'A traffic light showing green signal.Street sign board is there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109425.jpg', 'caption': 'Traffic sign on W 28 St with photo of bicycle in the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109425.jpg', 'caption': 'A street sign that has a no bicycle sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109425.jpg', 'caption': 'A traffic light with a bike signal on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109425.jpg', 'caption': 'a yellow colored traffic light and a street sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109425.jpg', 'caption': 'A stop sign is next to a tall apartment building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207967.jpg', 'caption': 'A tour bus is parked on the curb waiting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207967.jpg', 'caption': 'City bus parked on side of hotel in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207967.jpg', 'caption': 'bus parked under an awning next to brick sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207967.jpg', 'caption': 'A bus is parked on the curb in front of a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207967.jpg', 'caption': 'a double decked bus sits parked under an awning ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215693.jpg', 'caption': 'An umbrella is standing behind a red rectangular seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215693.jpg', 'caption': 'A red bench sitting next to a white umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215693.jpg', 'caption': 'The bench near the umbrella is covered with red cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215693.jpg', 'caption': 'The bench is in front of a tower with foreign characters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215693.jpg', 'caption': 'a bench with a red cover sitting next to a tower with writing on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003134.jpg', 'caption': 'A bus turning a corner on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003134.jpg', 'caption': 'A transit bus making a turn at the corner of a downtown area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003134.jpg', 'caption': 'a city public transportation bus making a right hand turn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003134.jpg', 'caption': 'A white passenger bus rounds the corner at an intersection in town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003134.jpg', 'caption': 'A bus making a right turn at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280238.jpg', 'caption': 'a truck on a city street near a light pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280238.jpg', 'caption': 'a couple of cars that are out front of a buliding', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280238.jpg', 'caption': 'People walking in an area next to trucks and a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280238.jpg', 'caption': 'A couple of people who are standing on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280238.jpg', 'caption': 'A couple walking down a street together at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328200.jpg', 'caption': 'An adorable brown and white dog sitting between two legs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328200.jpg', 'caption': \"A beagle-like dog looking up from where dog is laying under a person's legs.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328200.jpg', 'caption': 'A dog looks up while sitting at the feet of a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328200.jpg', 'caption': 'The dog is sitting on the floor in between two legs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328200.jpg', 'caption': 'A dog sitting on the floor between a person legs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012014.jpg', 'caption': 'A red double decker bus parked next to a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012014.jpg', 'caption': 'A red double decker bus waits for passengers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012014.jpg', 'caption': 'A red double decker bus is parked near the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012014.jpg', 'caption': 'A red, two level bus with it;s doors open on the street and passengers inside the bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012014.jpg', 'caption': 'A red double-decker bus stopped on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416385.jpg', 'caption': 'Cows walking down a street near a tour bus. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416385.jpg', 'caption': 'A couple of brown cows standing next to a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416385.jpg', 'caption': 'Cows walking in traffic down a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416385.jpg', 'caption': 'Two cows are walking down a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416385.jpg', 'caption': 'Cows loose in traffic on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396496.jpg', 'caption': 'a group of people next to a train with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396496.jpg', 'caption': 'A large group of commuters gathered at a transit station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396496.jpg', 'caption': 'A black and white photo of a busy urban street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396496.jpg', 'caption': 'a blakc and white photo of some old cable cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396496.jpg', 'caption': 'Some people that are standing out in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353562.jpg', 'caption': 'A family of sheep standing next to each other on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353562.jpg', 'caption': 'Five sheep resting in the grass near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353562.jpg', 'caption': 'A small group of sheep laying next to a guarded tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353562.jpg', 'caption': 'Sheep in the middle of a field with lots of green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353562.jpg', 'caption': 'Five sheep resting in meadow near fence-enclosed tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076249.jpg', 'caption': 'An intersection of wires and cables stretching over a traffic light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076249.jpg', 'caption': 'some electric wires a red traffic light and a yellow sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076249.jpg', 'caption': 'Electric tram wires and a traffic signal against blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076249.jpg', 'caption': 'a traffic light with a sky in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000076249.jpg', 'caption': 'A picture of a stoplight in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222811.jpg', 'caption': 'An open window with a bench next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222811.jpg', 'caption': 'A very steep stair case over a big bright window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222811.jpg', 'caption': 'A set of stairs has a window underneath it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222811.jpg', 'caption': 'a little window and a bench underneath a staircase\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222811.jpg', 'caption': 'A window with a bench is under a staircase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370266.jpg', 'caption': 'Sheep out grazing in green grass on a farm ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370266.jpg', 'caption': 'A herd of sheep are grazing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370266.jpg', 'caption': 'There is a group of sheep standing on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370266.jpg', 'caption': 'a number of sheep in a field of grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370266.jpg', 'caption': 'Sheep grazing in a lush, green field on a lavish farm estate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480643.jpg', 'caption': 'A man walks while a large number of sheep follow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480643.jpg', 'caption': 'A man leads a large herd of sheep through town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480643.jpg', 'caption': 'A man leading a herd of sheep down the sheep', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480643.jpg', 'caption': 'The man is walking a herd of sheep on the road through a town. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480643.jpg', 'caption': 'A man is walking a herd of sheep down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327919.jpg', 'caption': 'A bus loading and unloading passengers in front of a Pizza Hut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327919.jpg', 'caption': 'A white bus parked near a Pizza Hut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327919.jpg', 'caption': 'a public transit bus on the side of a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327919.jpg', 'caption': 'A bus parks along a city street next to a parking garage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327919.jpg', 'caption': 'A tour bus waiting outside a hotel for pick up of tourists', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365177.jpg', 'caption': 'a transit bus on a street under a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365177.jpg', 'caption': 'A bus driving under an overpass next to buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365177.jpg', 'caption': 'A long bus that reads \"Bieber\" is parked on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365177.jpg', 'caption': 'A tour bus is driving under a bridge on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365177.jpg', 'caption': 'a big bus parked by the side of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385781.jpg', 'caption': 'A picture of a stone bench in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385781.jpg', 'caption': 'A grouping of a cement bench, trash can, and news paper box in park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385781.jpg', 'caption': 'A park bench next to a trash can and newspaper rack in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385781.jpg', 'caption': 'a cement bench and garbage can next to a field with a cement sculpture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385781.jpg', 'caption': 'A cement bench sitting next to trash cans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053580.jpg', 'caption': 'A young man sitting on a bus up against a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053580.jpg', 'caption': 'Young adult male sitting alone inside a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053580.jpg', 'caption': 'an image of a guy riding the bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053580.jpg', 'caption': 'A young man riding a transit bus looking at something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053580.jpg', 'caption': 'A man who is sitting in a bus looking away from the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282871.jpg', 'caption': 'a number of benches next to a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282871.jpg', 'caption': 'A row of wooden park benches sitting near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282871.jpg', 'caption': 'A park with four benches near the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282871.jpg', 'caption': 'four wooden benches under the shade of a tree in the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282871.jpg', 'caption': 'there are four benches in this park and a tree in the middle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557907.jpg', 'caption': 'Two lambs that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557907.jpg', 'caption': 'The sheep are grazing on the grassy field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557907.jpg', 'caption': 'There are two sheep grazing on tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557907.jpg', 'caption': 'Two shorn sheep graze on tall green grass in a sunny pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557907.jpg', 'caption': 'Two sheep grazing in a field of green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200541.jpg', 'caption': 'A flock of sheep grazing in a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200541.jpg', 'caption': 'a herd of sheep stand and graze on some grass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200541.jpg', 'caption': 'A herd of sheep standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200541.jpg', 'caption': 'many sheep on the field feeding on the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200541.jpg', 'caption': 'Four white sheep grazing in a green pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214255.jpg', 'caption': 'An orange traffic cone sitting in the middle of traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214255.jpg', 'caption': 'There does not seem to be a lot of traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214255.jpg', 'caption': 'Several vehicles are stopped at an intersection behind a red light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214255.jpg', 'caption': 'A street scene looking at cars and an intersection in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214255.jpg', 'caption': 'some cars a traffic light and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205676.jpg', 'caption': 'A group of people walking on a street by some cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205676.jpg', 'caption': 'a black and white photo of a crowded street somewhere in an Asian country.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205676.jpg', 'caption': 'A city street has a bus and a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205676.jpg', 'caption': 'People walk on the sidewalk near a city bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205676.jpg', 'caption': 'Black and white photograph of people walking on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462105.jpg', 'caption': 'A bench overlooks a harbour with a lighthouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462105.jpg', 'caption': 'A park bench sitting on top of a green hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462105.jpg', 'caption': 'Park benches facing out towards a lighthouse and harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462105.jpg', 'caption': 'The bench is on a hill over looking the light house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462105.jpg', 'caption': 'A picture of some grass and some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367205.jpg', 'caption': 'A bus on a divided street near a stop light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367205.jpg', 'caption': 'a public transit bus on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367205.jpg', 'caption': 'A bus is parked beside a street with several signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367205.jpg', 'caption': 'A bus that is riding in the street underneath wires.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367205.jpg', 'caption': 'A white and red bus driving down a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398148.jpg', 'caption': 'A white and blue city bus traveling down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398148.jpg', 'caption': 'A bus is stopped and people are walking nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398148.jpg', 'caption': \"A public hybrid electric bus on the street with it's doors open, and people next to the bus.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398148.jpg', 'caption': 'a red white and blue bus some people and buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398148.jpg', 'caption': 'A hybrid electric commuter bus in a concrete city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025134.jpg', 'caption': 'People are walking in front of a line of parked buses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025134.jpg', 'caption': 'A bunch of people cross a street as a bunch of buses wait for them to cross.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025134.jpg', 'caption': 'A parking lot that has passenger buses parked there.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025134.jpg', 'caption': 'Buses line up in a parking lot as pedestrians walk by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000025134.jpg', 'caption': 'A bus station with many buses and people ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087356.jpg', 'caption': 'A red and white bus traveling down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087356.jpg', 'caption': 'A bus with a bike rack on the front of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087356.jpg', 'caption': 'A big bus parked on the side of the road ready to go. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087356.jpg', 'caption': 'There is a bus parked in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000087356.jpg', 'caption': 'A silver bus is parked on the pavement. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524216.jpg', 'caption': 'A large white bus driving down a street next to a sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524216.jpg', 'caption': 'a bus is passing a gas station by the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524216.jpg', 'caption': 'Cars and bus on road near gas station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524216.jpg', 'caption': 'city traffic including a white bus and two cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000524216.jpg', 'caption': 'a bunch of cars that are on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302137.jpg', 'caption': 'A bus that is sitting in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302137.jpg', 'caption': 'The extra long passenger bus is entering the intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302137.jpg', 'caption': 'City bus going through a busy city intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302137.jpg', 'caption': 'The city bus is driving through the intersection traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302137.jpg', 'caption': 'A bus on the street with a lot of cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036012.jpg', 'caption': 'Three red double decker buses parked side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036012.jpg', 'caption': 'A series of double decker buses parked next to each other. ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000198935.jpg', 'caption': 'Black and white dog sitting next to fire hydrant in urban neighborhood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198935.jpg', 'caption': 'A dog and a fire hydrant on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198935.jpg', 'caption': 'The dog is standing next to the yellow fire hydrant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198935.jpg', 'caption': 'A black and white dog sitting next to a yellow fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258789.jpg', 'caption': 'A field with a cat and chicken next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258789.jpg', 'caption': 'A chicken and cat walk in a barnyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258789.jpg', 'caption': 'A chick standing next to a cat on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258789.jpg', 'caption': 'A cat and a bird walking in a dirt yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258789.jpg', 'caption': 'Chickens and a cat out on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335033.jpg', 'caption': 'Two giraffes eating leaves at a watering hole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335033.jpg', 'caption': 'Two giraffes standing among tall trees, near water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335033.jpg', 'caption': 'Two giraffes eating high leaves from in the tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335033.jpg', 'caption': 'Two giraffes eating leaves off of a tree in an enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335033.jpg', 'caption': 'Two giraffes are eating leaves from a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174363.jpg', 'caption': 'A bird flying over an ocean, with a wave crashing behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174363.jpg', 'caption': 'a bird flying above some blue ocean water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174363.jpg', 'caption': 'A bird flying over a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174363.jpg', 'caption': 'A bird of prey glides through the air high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174363.jpg', 'caption': 'a brown big bird flying over the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050124.jpg', 'caption': 'Passenger bus stationary in traffic on city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050124.jpg', 'caption': 'A modern city commuter bus in traffic during the day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050124.jpg', 'caption': 'A bus parked on the side of the road while in traffic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050124.jpg', 'caption': 'a modern train is parked against the sidewalk curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050124.jpg', 'caption': 'A bus stops at a curb in a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393647.jpg', 'caption': 'a large bus is up by the side of a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393647.jpg', 'caption': 'A group of people loading onto a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393647.jpg', 'caption': 'people are getting onto a stopped City bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393647.jpg', 'caption': 'this is a bus stopping in the middle of traffic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393647.jpg', 'caption': 'City bus with passengers boarding for Ballston Station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266852.jpg', 'caption': 'A group of flamingos standing next to each other in water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266852.jpg', 'caption': 'Several flamingos standing in the water t the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266852.jpg', 'caption': 'A flock of flamingos standing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266852.jpg', 'caption': 'A flock of flamingos standing in a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266852.jpg', 'caption': 'A flock of pink flamingos standing in shallow water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468115.jpg', 'caption': 'many different colored signs people buildings and a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468115.jpg', 'caption': 'A city street with many cars and scooters parked', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468115.jpg', 'caption': 'A busy city street in an Asian country with lots of traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468115.jpg', 'caption': 'a lot of colorful signs with writing handing on the side of some buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468115.jpg', 'caption': 'Traffic and a cacophony of signs on an oriental city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533625.jpg', 'caption': 'There is something captured here in this photo.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533625.jpg', 'caption': 'A sign is in the middle of a sidewalk tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533625.jpg', 'caption': 'A no urinating sign is hung up outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533625.jpg', 'caption': 'a sign on a short pole nest to some little trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533625.jpg', 'caption': 'A no urinating sign posted outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028134.jpg', 'caption': 'a person holds a bird on its fingers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028134.jpg', 'caption': \"A parrot sitting on top of someone's fingers.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028134.jpg', 'caption': 'A guy holding a white parrot inside of his hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028134.jpg', 'caption': 'Parrot on glove of owner in darkened room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028134.jpg', 'caption': 'a parrot is perched on its owners finger', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558169.jpg', 'caption': \"a blue bird sitting on someone's arm in a room \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558169.jpg', 'caption': 'A colorful blue bird perched on top of a persons arms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558169.jpg', 'caption': 'there is a very bright blue parrot sitting on a hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558169.jpg', 'caption': 'A parrot standing on the arm of a person in front of a bookcase. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558169.jpg', 'caption': \"There is a blue bird sitting on the person's hand.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220716.jpg', 'caption': 'a bird with a foot on the top of a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220716.jpg', 'caption': 'A seagull balancing itself on one leg on a post', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220716.jpg', 'caption': 'There is a seagull landing on a post', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220716.jpg', 'caption': 'A bird landing on a cement post and a boat in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220716.jpg', 'caption': 'A seagull on one foot, sitting on a concrete post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035195.jpg', 'caption': 'a white seagull is standing alone on the sand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035195.jpg', 'caption': 'a white bird is standing on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035195.jpg', 'caption': 'a seagull bends its head backwards to preen its back feathers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035195.jpg', 'caption': 'A bird grooms itself on a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035195.jpg', 'caption': 'A bird that has its wings stretched out on a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419680.jpg', 'caption': 'A street sign is posted near the two story building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419680.jpg', 'caption': 'A view of St. Ann street with a warning sign in front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419680.jpg', 'caption': 'A tall white house sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419680.jpg', 'caption': 'a green and white sign on a black pole and some buildings ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419680.jpg', 'caption': 'a old building on St. Ann street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546782.jpg', 'caption': 'Traffic mirror reflecting the intersection at Race Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546782.jpg', 'caption': 'A cool lookign mirror on a street side curb ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546782.jpg', 'caption': 'The circular mirror is near the street sign outside of a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546782.jpg', 'caption': 'VIEW OF THE BACKGROUND FROM A REARVIEW MIRROR', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546782.jpg', 'caption': 'A traffic mirror near a building on Race Street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219723.jpg', 'caption': 'A set of four boxes filled with baby birds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219723.jpg', 'caption': 'Four boxes are filled with small baby chickens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219723.jpg', 'caption': 'Four boxes full of black and yellow chicks on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219723.jpg', 'caption': 'a bunch of baby chickens in four boxes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219723.jpg', 'caption': 'Four boxes of baby chicks sit next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109942.jpg', 'caption': 'A Street sign standing next to a palm tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109942.jpg', 'caption': 'This intersection is the most famous in Hollywood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109942.jpg', 'caption': 'Palm tree and the intersection of Hollywood Boulevard and Vine Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109942.jpg', 'caption': 'Palm tree at the corner of Hollywood and Vine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109942.jpg', 'caption': 'A street sign reads \"Hollywood Bl\" below a palm tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012230.jpg', 'caption': 'A car and a van parked side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012230.jpg', 'caption': 'two cars parked next to each other in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012230.jpg', 'caption': 'some cars parked in a parking lot next to a sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012230.jpg', 'caption': 'Two cars parked in a lot with buildings in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012230.jpg', 'caption': 'The birds are resting on the roofs of the cars in the parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479727.jpg', 'caption': 'A semi busy street in a delightful neighborhood', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479727.jpg', 'caption': 'A fire hydrant next to a street sign with a cactus on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479727.jpg', 'caption': 'A street sign near a fire hydrant on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479727.jpg', 'caption': 'A piece of artwork is bolted below a traffic sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479727.jpg', 'caption': 'A street sign with graffiti on it next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028499.jpg', 'caption': 'A traffic sign in front of large trees and a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028499.jpg', 'caption': 'A do not enter sign in front of some trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028499.jpg', 'caption': 'A photo of a \"no entry\" road sign and the top of a building and treetops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028499.jpg', 'caption': 'A stop stop with only a white line on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028499.jpg', 'caption': 'A do not enter sign against a background of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139660.jpg', 'caption': 'A painted sign of a blue bird in a tree in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139660.jpg', 'caption': 'A view of a pole with a wooden bird on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139660.jpg', 'caption': 'a wood bird that is up in on some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139660.jpg', 'caption': 'a man made blue and pink bird and a plaque ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139660.jpg', 'caption': 'A picture of a bird above a sign mounted to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036004.jpg', 'caption': 'A blue and green bird perched on a branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036004.jpg', 'caption': 'A small blue bird perched on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036004.jpg', 'caption': 'a blue black and white bird on a branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036004.jpg', 'caption': 'A bird with blue and green feathers sits on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036004.jpg', 'caption': 'A small bird standing on a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273579.jpg', 'caption': 'A small woman standing in front of a baby elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273579.jpg', 'caption': 'A person and an elephant around some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273579.jpg', 'caption': 'An elephant uses its trunk to paint on a canvas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273579.jpg', 'caption': 'A lady watching an elephant paint a painting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000273579.jpg', 'caption': 'A woman having fun with a baby elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431432.jpg', 'caption': 'Young Elephant Training Center with elephants and trainers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431432.jpg', 'caption': 'A group of people and elephants behind a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431432.jpg', 'caption': 'Men and a lady stand with three elephants', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431432.jpg', 'caption': 'Men display the young elephants in training to tourists', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431432.jpg', 'caption': 'There are people standing next to some elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341838.jpg', 'caption': 'a car driving on a road with decorations avobe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341838.jpg', 'caption': 'Red paper boxes strung up across a road in Chinatown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341838.jpg', 'caption': 'Decorations above a freeway during the day with a single car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341838.jpg', 'caption': 'There are orange squares hung on lines across the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341838.jpg', 'caption': 'The town has decorated the streets for the holiday.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167810.jpg', 'caption': 'Two ducks are swimming in the water of a pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167810.jpg', 'caption': 'Two colorful ducks swimming in pond with grassy reflection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167810.jpg', 'caption': 'two cute brown ducks are in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167810.jpg', 'caption': 'A colorful duck floating in the water next to another duck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000167810.jpg', 'caption': 'Two different kinds of ducks swimming together on a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121414.jpg', 'caption': 'Birds perched up on a tree branch next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121414.jpg', 'caption': 'Two birds are sitting together on a tree limb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121414.jpg', 'caption': 'Three birds perched on a branch with no leaves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121414.jpg', 'caption': 'several birds on perched on a old branch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121414.jpg', 'caption': 'Birds are sitting on branches with no leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446517.jpg', 'caption': 'A small yellow bird sits on a dried up flower near a man in a gray t-shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446517.jpg', 'caption': 'A bird that is sitting on top of a flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446517.jpg', 'caption': 'A person standing in front of a bird perched on a dead flower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446517.jpg', 'caption': 'A bird is sitting on a dead flower with a man nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446517.jpg', 'caption': 'A man in grey shirt next to dying flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341929.jpg', 'caption': 'A group of withering flowers by a road side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341929.jpg', 'caption': 'A yellow finch is perched in a patch of dead cone flowers across from some wild lavender. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341929.jpg', 'caption': 'It looks as though everything is covered with ice and snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341929.jpg', 'caption': 'a group of weeds with a small butterfly ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000341929.jpg', 'caption': 'A small bird perched on some flower on a roadside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041011.jpg', 'caption': 'A man in an English suit and bowler riding a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041011.jpg', 'caption': 'A man riding on top of a brown horse while wearing a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041011.jpg', 'caption': 'Adult male traditionally dressed for riding on horseback.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041011.jpg', 'caption': 'A man in a riding outfit on a horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041011.jpg', 'caption': 'A man in black jacket on a black horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423715.jpg', 'caption': 'Two women wearing hats standing near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423715.jpg', 'caption': 'Two beautiful women wearing hats standing in front of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423715.jpg', 'caption': 'Two women at a horse event wearing hats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423715.jpg', 'caption': 'two people in hats with a horse in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423715.jpg', 'caption': 'Two girls at a horse race track posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507361.jpg', 'caption': 'A bottle sitting on a window sill next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507361.jpg', 'caption': 'Someone placed a bottle of soda on the window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507361.jpg', 'caption': 'A bottle of juice sitting on a window sill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507361.jpg', 'caption': 'A bottle next to a windowsill with light coming through.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507361.jpg', 'caption': 'Looking out a home window with power lines nearby with trees in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019324.jpg', 'caption': 'Black and white photograph of officers on horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019324.jpg', 'caption': 'A pair of police officers on horseback riding down a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019324.jpg', 'caption': 'Two mounted police officers walking down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019324.jpg', 'caption': 'an image of two men riding horses down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019324.jpg', 'caption': 'two people riding on horses on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519153.jpg', 'caption': 'Two empty seats on a vehicle are in front of a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519153.jpg', 'caption': 'Looking out the window of some sort of transport vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519153.jpg', 'caption': 'There is a picture of inside of a vechile with four seats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519153.jpg', 'caption': 'a photo of a public transit train seat near a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519153.jpg', 'caption': 'The view out the window of a passenger train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016903.jpg', 'caption': 'An orange detour sign hanging from a metal pole under a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016903.jpg', 'caption': 'Red street sign with black letters sitting on metal post. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016903.jpg', 'caption': 'A street pole with an orange detour sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016903.jpg', 'caption': 'a close up of a street sign with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016903.jpg', 'caption': 'A red detour sign that is on a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308764.jpg', 'caption': 'A woman is holding an perched owl above her head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308764.jpg', 'caption': 'A woman proudly holds up an owl on her gloved hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308764.jpg', 'caption': 'A Asian girl in a pink shirt holding a tethered owl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308764.jpg', 'caption': 'a woman in a glove and a perched owl', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000308764.jpg', 'caption': 'A smiling lady holding up a huge owl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527580.jpg', 'caption': 'A train with passengers is standing on the track while some people are resting in the shade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527580.jpg', 'caption': 'A couple sitting on the beach under an umbrella as a trolly passes by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527580.jpg', 'caption': 'A train travelling next on tracks next to a beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527580.jpg', 'caption': 'SANDY BEACH, WHITE LARGE UMBRELLAS RIGHT UNDER A TOUR TRAIN COMING BY', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527580.jpg', 'caption': 'A red trolley passing by a group of people under umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284552.jpg', 'caption': 'A green rail bridge spanning over the width of a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284552.jpg', 'caption': 'Steel train bridge with \"Pembroke magdalene Fitz-Too Easy!\" writting on brige and graffati under neath. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284552.jpg', 'caption': 'Grafitti on and under a railway bridge crossing a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284552.jpg', 'caption': 'There is a bridge with graffiti on it that has a train on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000284552.jpg', 'caption': 'A train crossing a bridge that has graffiti underneath it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246074.jpg', 'caption': 'An empty city street surrounded by stores and shops on either side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246074.jpg', 'caption': 'Aerial view of road markings in Chinese Characters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246074.jpg', 'caption': 'A man walks down a narrow Asian street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246074.jpg', 'caption': 'an asian street with shops and signs on the buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246074.jpg', 'caption': 'A street in a Asian community is looks empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387216.jpg', 'caption': 'A train is sitting beside a railroad track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387216.jpg', 'caption': 'A train sitting in the grass near train tracks and people walking by. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387216.jpg', 'caption': 'A train that is sitting beside train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387216.jpg', 'caption': 'A train is parked on the old tracks surrounded by grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387216.jpg', 'caption': 'Several train engines are lined up next to the main railroad track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058651.jpg', 'caption': 'A green train traveling through a train yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058651.jpg', 'caption': 'An old-fashioned train going down the tracks with lots of wires overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058651.jpg', 'caption': 'Train engine on a train track and releasing steam.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058651.jpg', 'caption': 'An old locomotive is on the railroad tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058651.jpg', 'caption': \"A locomotive train spewing steam from it's engine.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307892.jpg', 'caption': 'Two bikes are chained to the pole on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307892.jpg', 'caption': 'a couple of bikes that are standing outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307892.jpg', 'caption': 'Two bikes leaning on a one way sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307892.jpg', 'caption': 'There are two bikes parked on a street sign on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000307892.jpg', 'caption': 'Two bicycles on a corner on a pole. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147793.jpg', 'caption': 'A picture of a street sign with various posts on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147793.jpg', 'caption': 'There is a large board next to the street that has a lot of stickers all over it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147793.jpg', 'caption': 'The back of the sign has lots of stickers on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147793.jpg', 'caption': 'A sign covered in lots of stickers sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147793.jpg', 'caption': 'a street sign that is covered in stickers on the back ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051887.jpg', 'caption': 'A pole with a sign explaining the traffic signs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051887.jpg', 'caption': 'the cross walk buttons for pedestrians to use', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051887.jpg', 'caption': 'Cross walk sign indicating when to cross the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051887.jpg', 'caption': 'a white crossing sign above a yellow button', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000051887.jpg', 'caption': 'A bunch of street signs hanging from a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279621.jpg', 'caption': 'a yellow and black train is coming down the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279621.jpg', 'caption': 'a colorful train going down a track next to some hills ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279621.jpg', 'caption': 'A train that is sitting on a track near the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279621.jpg', 'caption': 'A photo looking down at an old train going by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279621.jpg', 'caption': 'A train is traveling down train tracks outside a residential area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003342.jpg', 'caption': 'A train sitting on some train tracks underground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003342.jpg', 'caption': 'A train that is sitting on train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003342.jpg', 'caption': 'A red and white train car in a warehouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003342.jpg', 'caption': 'A red and white train traveling through a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003342.jpg', 'caption': 'A red,whit,and black train inside the train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212241.jpg', 'caption': 'The subway train is passing under a walking bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212241.jpg', 'caption': 'A caboose sitting on a track in the city along the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212241.jpg', 'caption': 'There is a train moving down the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212241.jpg', 'caption': 'A commuter train parked under an overpass in an industrial area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212241.jpg', 'caption': 'A train is moving along a stretch of track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011269.jpg', 'caption': 'View of a train coming in on the far side tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011269.jpg', 'caption': 'A train is going down the tracks in black and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011269.jpg', 'caption': 'Black and white picture of a train going around a curve. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011269.jpg', 'caption': 'Black and white photo of a train and switching gear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011269.jpg', 'caption': 'A black and white image of a train traveling down the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374241.jpg', 'caption': 'a directory next to some snow covered benches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374241.jpg', 'caption': 'A sign sitting on the side of a road next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374241.jpg', 'caption': 'an electronic street sign on a snowy city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374241.jpg', 'caption': 'A city street intersection with a light snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374241.jpg', 'caption': 'The city streets are wet from a snow storm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286654.jpg', 'caption': 'A street sign reads \"Rue Paul St\" in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286654.jpg', 'caption': 'A green street sign sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286654.jpg', 'caption': 'a big green street sign by the side of the road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286654.jpg', 'caption': 'A street sign that is pointing to Rue Paul Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286654.jpg', 'caption': 'An interstate exit sign with an arrow going to Rue Paul Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575222.jpg', 'caption': \"A group of children ride on a children's train.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575222.jpg', 'caption': 'A kid train going around a track at a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575222.jpg', 'caption': 'Several children ride a miniature train with a clown on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575222.jpg', 'caption': 'A small toy train on a circular track through trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000575222.jpg', 'caption': 'A small colorful train going around its course.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246616.jpg', 'caption': 'The train travels near water with mountains in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246616.jpg', 'caption': 'a train moving on a snowy area and besides an ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246616.jpg', 'caption': 'A train traveling across a snow covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246616.jpg', 'caption': 'a colorful passenger train going down a track next to a tree ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000246616.jpg', 'caption': 'A train is driving on the snowy tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560235.jpg', 'caption': 'A city intersection at Castro street with three stoplights', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560235.jpg', 'caption': 'A street sign on a stoplight pole in the middle of a day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560235.jpg', 'caption': 'A bundle of overhead wires and stoplights are on Castro Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560235.jpg', 'caption': 'A green and white street sign that reads \"Castro\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560235.jpg', 'caption': 'A sign for the Castro district among 3 lights at an intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131627.jpg', 'caption': 'A sign says fashion district near some buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131627.jpg', 'caption': 'A street sign with the words Fashion District, Peter Street on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131627.jpg', 'caption': 'A sign is shown that reads Fashion District.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131627.jpg', 'caption': 'The street sign is clearly visible for all of us to see.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000131627.jpg', 'caption': 'A street sign with the name Fashion District Peter St. in front of a large office building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266115.jpg', 'caption': 'A stop sign on the corner of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266115.jpg', 'caption': 'A stop sign and street sign located at the corner of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266115.jpg', 'caption': 'a stop sign with a street sign above it at an insection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266115.jpg', 'caption': 'A stop sign is sitting on the corner of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266115.jpg', 'caption': 'A stop sign stands on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145073.jpg', 'caption': 'It looks like there is writing on the bottom of the Stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145073.jpg', 'caption': 'A stop sign is shown outside a Google facility.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145073.jpg', 'caption': 'This is an item that is simple and plain. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145073.jpg', 'caption': 'A stop sign in front of a Google building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145073.jpg', 'caption': 'A stop sign with a building with a Google logo in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182469.jpg', 'caption': 'A stop sign sitting above a road barricade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182469.jpg', 'caption': 'A black and white photo of a stop sign and a bridge in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182469.jpg', 'caption': 'A stop sign blocks access to empty docks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182469.jpg', 'caption': 'A stop sign with several barricades on a cloudy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182469.jpg', 'caption': 'A stop sign stands in the foreground of a skyline. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519555.jpg', 'caption': 'A black and white picture of a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519555.jpg', 'caption': 'A black-and-white photo of a stop sign by some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519555.jpg', 'caption': 'A stop sign stands on a pathway near a wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519555.jpg', 'caption': 'Black and white photo of a stop sign on a rural street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519555.jpg', 'caption': 'A stop sign that is in the middle of nowhere. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275237.jpg', 'caption': 'A blue and white train on tracks with blue sky in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275237.jpg', 'caption': 'A passenger train car parked on a siding by itself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275237.jpg', 'caption': 'a train on a train track with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275237.jpg', 'caption': 'an old blue and white passenger train sitting on a track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275237.jpg', 'caption': 'a train car that looks like a school bus on rails', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476873.jpg', 'caption': 'A stop sign sits in front of a brown and white house as snow lies on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476873.jpg', 'caption': 'two blue and white street signs and a stop sign and a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476873.jpg', 'caption': 'A stop sign on a street near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476873.jpg', 'caption': 'Stop sign in front of a Canadian residence on Rue Queen St.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476873.jpg', 'caption': 'A large STOP sign at the entrance to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445972.jpg', 'caption': 'A stop sign next to an intersection with wide open heart beyond', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445972.jpg', 'caption': 'The stop sign is put up by the red flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445972.jpg', 'caption': 'A stop sign next to a Japanese Maple tree on a street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445972.jpg', 'caption': 'a red stop sign is on a pole outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000445972.jpg', 'caption': 'A STOP sign warns those turning onto Nicolet St to slow before they turn past the red and green foliage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152618.jpg', 'caption': 'a red and white sign a fence grass and a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152618.jpg', 'caption': 'Sign on post displayed near fence area outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152618.jpg', 'caption': 'An instructional sign is placed near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152618.jpg', 'caption': 'A warning stop sign beside a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152618.jpg', 'caption': 'a red and white sign is near a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344229.jpg', 'caption': 'Two benches at a light rail stop during the winter. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344229.jpg', 'caption': 'A red trolly is going down the tracks beside a blue bench in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344229.jpg', 'caption': 'A train in a city passing by two back to back blue benches in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344229.jpg', 'caption': 'a train passing by an empty bench in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344229.jpg', 'caption': 'A snowy bus top with a bench and sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285096.jpg', 'caption': 'A tug boat sitting in the middle of the harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285096.jpg', 'caption': 'Yellow tugboat sitting on water in a marina.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285096.jpg', 'caption': 'An old yellow boat among the white and blue boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285096.jpg', 'caption': 'A rusted yellow tugboats floats among other boats on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285096.jpg', 'caption': 'A larger boat amongst smaller ones in a harbor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004620.jpg', 'caption': 'A close up photo of parking meter on a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004620.jpg', 'caption': 'Two parking meters are on top of a pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004620.jpg', 'caption': 'A parking meter sits beside a street intersection where cars are parked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004620.jpg', 'caption': 'a parking meter with two meters and both have some time on them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004620.jpg', 'caption': 'Parking meters with approximately 40 minutes left on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133636.jpg', 'caption': 'A parking meter sitting on the side of a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133636.jpg', 'caption': 'two parking meters on a street in front of a building with windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133636.jpg', 'caption': 'Two black parking meters standing side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133636.jpg', 'caption': 'a close up of a double parking meter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133636.jpg', 'caption': 'Two expired parking meters on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542257.jpg', 'caption': 'A two car train is coming around the bend.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542257.jpg', 'caption': 'An electric train traveling next to its station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542257.jpg', 'caption': 'A passenger train leaving a small train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542257.jpg', 'caption': 'a green and silver train is seen riding on the rails', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542257.jpg', 'caption': 'An electric passenger train pulling up to a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188696.jpg', 'caption': 'A parking meter sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188696.jpg', 'caption': 'A meter reader pulls behind a meter on the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188696.jpg', 'caption': 'a bus that is parked next to a coin meter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188696.jpg', 'caption': 'A parking meter and a vehicle on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188696.jpg', 'caption': 'The word plague is written on a parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537005.jpg', 'caption': 'The top of a parking meter is covered with a big pile of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537005.jpg', 'caption': 'Two parking meters that are covered in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537005.jpg', 'caption': 'there are two parking meters that are covered in snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537005.jpg', 'caption': 'A parking meter has snow piled on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537005.jpg', 'caption': 'A parking tole on the side of the street with snow on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363527.jpg', 'caption': 'A red double decker bus with a busted out window crashing into a large truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363527.jpg', 'caption': 'A very large red two level bus touching a truck on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363527.jpg', 'caption': 'a double decker bus next to a big truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363527.jpg', 'caption': 'A double decker bus and a flat bed semi in a minor accident.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000363527.jpg', 'caption': 'A red and black double decker bus next to a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252459.jpg', 'caption': 'A picture of a window opened and something on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252459.jpg', 'caption': 'a window with an elephants trunk and some bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252459.jpg', 'caption': 'There is an elephant trunk sticking out of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252459.jpg', 'caption': 'A elephant nose that is over a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252459.jpg', 'caption': \"A white truck with an elephant sticking it's trunk out of a window. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326593.jpg', 'caption': 'An elephant sticks his trunk out the back window of a truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326593.jpg', 'caption': 'a creature looking out the back of a truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326593.jpg', 'caption': 'Windows are open on the back of a truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326593.jpg', 'caption': 'A shipping container with a trunk hanging out of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326593.jpg', 'caption': 'A back of a truck with doors and two windows. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350134.jpg', 'caption': \"An elephant with it's trunk laying on a white gate.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350134.jpg', 'caption': 'An elephant in its pen sticking its trunk outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350134.jpg', 'caption': 'An elephant locked in a stall reaching over the gate with its trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350134.jpg', 'caption': 'An elephant sticking his trunk on a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350134.jpg', 'caption': 'An elephant with its trunk over the cage fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504516.jpg', 'caption': 'A dog is in the bed of a truck with its tongue out. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504516.jpg', 'caption': 'A dog looking at the camera as men drink and talk in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504516.jpg', 'caption': 'A black and brown dog with its tongue out. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504516.jpg', 'caption': \"A down sticks out it's tongue on the back of a truck.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504516.jpg', 'caption': 'there is a black dog that looks like he is smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314313.jpg', 'caption': 'a busy road that is next to some buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314313.jpg', 'caption': 'A flatbed truck, bus and car in traffic on a paved road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314313.jpg', 'caption': 'a big truck rides down a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314313.jpg', 'caption': 'A couple cargo trucks parked outside of a few shops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314313.jpg', 'caption': 'A truck that is sitting in the street near a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468405.jpg', 'caption': 'A flat bed truck traveling down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468405.jpg', 'caption': 'A truck with no door driving down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468405.jpg', 'caption': 'A green truck is driving down the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468405.jpg', 'caption': 'A truck with long bed and cargo is driving with other traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468405.jpg', 'caption': 'A busy city area, with a large green truck, several vehicles, and people walking and riding bikes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236000.jpg', 'caption': 'A street scene with a large truck turning a corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236000.jpg', 'caption': 'A big truck parked on the street next to the curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236000.jpg', 'caption': 'A truck drives through an intersection near power line. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236000.jpg', 'caption': 'A garbage truck making a turn down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236000.jpg', 'caption': 'A large yellow semi truck pulling a gray trailer behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460407.jpg', 'caption': 'A few cows grazing on a shore near some tropical water and boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460407.jpg', 'caption': 'Cows graze on the coast of the blue ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460407.jpg', 'caption': 'Three cows grazing on a hill overlooking a harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460407.jpg', 'caption': 'A couple of cows that are standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460407.jpg', 'caption': 'Three animals standing in the grass near a body of water and a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218911.jpg', 'caption': 'Collage of a clay cow in a paper boat in a music sheet sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218911.jpg', 'caption': 'A stuffed animal cow riding on a paper boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218911.jpg', 'caption': \"A toy cow with a quarter taped on it's back.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218911.jpg', 'caption': 'A little black and white toy cow sits in a paper boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218911.jpg', 'caption': 'A cow has quarter tied to its back and is sitting in a paper boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207486.jpg', 'caption': 'Three black bulls in a roadway at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207486.jpg', 'caption': 'A group of black cows with horns standing in the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207486.jpg', 'caption': 'a couple of bulls sitting on a dirt road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207486.jpg', 'caption': 'Steers on a city street at night ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207486.jpg', 'caption': 'Two bulls in the middle of a street in a town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526044.jpg', 'caption': 'cow at the waters edge wading in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526044.jpg', 'caption': 'A BROWN AND WHITE COW STANDING NEAR THE WATER.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526044.jpg', 'caption': 'A cow walks at the edge of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526044.jpg', 'caption': 'A cow is standing at the edge of the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526044.jpg', 'caption': 'a cow walking on a beach near water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522020.jpg', 'caption': 'A close up of a hairy white cat outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522020.jpg', 'caption': 'A white cat with two different colored eyes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522020.jpg', 'caption': 'a fluffy white cat sitting in the front yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522020.jpg', 'caption': 'A large white fluffy cat standing in front of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522020.jpg', 'caption': \"A fluffy white cat has a frowning look on it's face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239458.jpg', 'caption': 'A cat peeks its head out of curtains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239458.jpg', 'caption': 'A white cat with its head poking through and opening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239458.jpg', 'caption': 'A white fluffy cat is looking at the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239458.jpg', 'caption': 'A white cat that has yellow eyes looking straight ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239458.jpg', 'caption': 'A white cat sticking his head out through something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264110.jpg', 'caption': 'A stuffed animal sleeping in a miniature bed under a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264110.jpg', 'caption': 'A cow-doll is put to bed. Probably by the owner of the toy. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264110.jpg', 'caption': 'A toy cow in bed under a blanket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264110.jpg', 'caption': 'A hand made cow sleeping in a tiny bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264110.jpg', 'caption': 'A small cloth cow is underneath a blanket on a small bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249952.jpg', 'caption': 'A small cat standing underneath an umbrella on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249952.jpg', 'caption': 'a calico cat sitting under an open umbrella by a curtain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249952.jpg', 'caption': 'A cat under an umbrella inside a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249952.jpg', 'caption': 'a white cat seated under an umbrella on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249952.jpg', 'caption': 'Cat on hardwood floor underneath umbrella with bright lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074013.jpg', 'caption': \"A cat, trying on its owner's high-heeled shoes.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074013.jpg', 'caption': 'A cat taking nap on top of a pair of shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074013.jpg', 'caption': 'The cat is lying on top of a pair of shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074013.jpg', 'caption': 'A cat playing with some shoes in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074013.jpg', 'caption': 'A cat that is laying on some black shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027075.jpg', 'caption': 'A white and black cat rubbing against a leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027075.jpg', 'caption': \"A black and white cat walks near someone's legs.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027075.jpg', 'caption': 'A white kitty cat with black spots snuggling against a humans leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027075.jpg', 'caption': 'A black and white cat rubs the leg of a person wearing green shoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027075.jpg', 'caption': 'Black and white cat standing next to leg.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133078.jpg', 'caption': 'A cow walking through the middle of a crowded sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133078.jpg', 'caption': 'A brown, black, and white cow makes its way down a crowded Indian street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133078.jpg', 'caption': 'Cow in the middle of a street full of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133078.jpg', 'caption': 'A cow tramples through an outdoor market place', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133078.jpg', 'caption': 'A cow that is walking down the sidewalk in a busy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300008.jpg', 'caption': 'A cow seems disfigured and injured on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300008.jpg', 'caption': 'People walk by two cows who are laid out on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300008.jpg', 'caption': 'A cow laying on top of a sandy beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300008.jpg', 'caption': 'A cow sitting down in the sand and one laying down in the sand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300008.jpg', 'caption': 'Some cows with horns laying on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320218.jpg', 'caption': 'A brown horse standing on a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320218.jpg', 'caption': 'A bull and calf eating grass near a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320218.jpg', 'caption': 'Some cows graze in the grass near a mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320218.jpg', 'caption': 'Two cows in a field next to mountains and a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320218.jpg', 'caption': 'Grazing animasl in sparsly vegetated natural settin near water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292931.jpg', 'caption': 'Two orange and white kittens sleeping in a pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292931.jpg', 'caption': 'Two kittens steep in a terra cotta pot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292931.jpg', 'caption': 'Two orange and white cats sleep in a bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292931.jpg', 'caption': 'Two orange kittens curled up in a bowl together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292931.jpg', 'caption': 'Two kittens are curled up next to each other in a pot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404504.jpg', 'caption': 'trucks on one side of a road with cars on the other side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404504.jpg', 'caption': 'Construction on the side of a two lane road, with one of the lanes closed and seperated with construction cones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404504.jpg', 'caption': 'Road construction that takes up one side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404504.jpg', 'caption': 'A street filled with traffic next to a field with lush green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404504.jpg', 'caption': 'A stretch of road that has been blocked off with cones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293505.jpg', 'caption': 'A person on a motor bike next to a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293505.jpg', 'caption': 'A woman riding a motorcycle down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293505.jpg', 'caption': 'there is a woman riding a scooter down a dirt road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293505.jpg', 'caption': 'A woman on a moped, two men and animals walking down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293505.jpg', 'caption': 'A woman on a motorcycle is next to a man walking a dog along with other people going down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479075.jpg', 'caption': 'A herd of animals standing in a large field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479075.jpg', 'caption': 'A small herd of cattle are standing in a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479075.jpg', 'caption': 'A group of cattle standing in a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479075.jpg', 'caption': 'A herd of cow grazing in a frosty field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000479075.jpg', 'caption': 'An outdoor picture of cows or horses standing in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426686.jpg', 'caption': 'An open field with cows grazing and a lake in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426686.jpg', 'caption': 'Cows in a pasture near a lake with mountains in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426686.jpg', 'caption': 'Cattle are grazing in a pasture of long grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426686.jpg', 'caption': 'A herd of cattle grazing on a brush covered grassy pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000426686.jpg', 'caption': 'A large pasture with several cattle grazing on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559614.jpg', 'caption': 'a rusty flatbed truck sitting by a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559614.jpg', 'caption': 'A rusted out tractor sitting in a pile of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559614.jpg', 'caption': 'A rusty, vintage truck cab sits near a loading dock in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559614.jpg', 'caption': 'A yellow forklift that is next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559614.jpg', 'caption': 'A rusty old forklift lifts pallets in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442223.jpg', 'caption': 'A small white church sitting next to palm trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442223.jpg', 'caption': 'A man is standing next to a motorcycle in a village.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442223.jpg', 'caption': 'Long-horned cattle stand outside a small white church near a fruit vendor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442223.jpg', 'caption': 'Old cathedral with moped and cattle out front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000442223.jpg', 'caption': 'Two cows, a motorcycle and a man in front of a church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023731.jpg', 'caption': 'a calico kitty sleeping in an orange chair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023731.jpg', 'caption': 'A calico cat sleeps on a red desk chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023731.jpg', 'caption': 'a fluffy cat laying in an orange chair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023731.jpg', 'caption': 'A calico cat sleeping on an orange office chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023731.jpg', 'caption': 'a cat laying down and resting in a chair on a hardwood floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002988.jpg', 'caption': 'a black white and orange cat lying on a blue chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002988.jpg', 'caption': 'Cat enjoying a nap in blue chair in living area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002988.jpg', 'caption': 'A fluffy cat is lying on a blue chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002988.jpg', 'caption': 'A calico cat lounges in a blue chair in a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000002988.jpg', 'caption': 'Sleepy calico cat fully occupying a soft chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293757.jpg', 'caption': 'A cat perched on top of a dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293757.jpg', 'caption': 'A cat walks along the top of a bedroom dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293757.jpg', 'caption': 'a cat sits on a dresser next to a rocking chair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293757.jpg', 'caption': 'Black cat standing on a blue dresser next to a chair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293757.jpg', 'caption': 'A cat laying on top of a blue dresser near a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138896.jpg', 'caption': 'Two dump trucks driving down a road past a white pick up truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138896.jpg', 'caption': 'a big truck going in one direction and a smaller truck going in the opposite direction', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138896.jpg', 'caption': 'Two dump trucks driving down a two lane road with a white pick up approaching from the opposite direction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138896.jpg', 'caption': 'A truck that can transport materials driving on a highway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138896.jpg', 'caption': 'A dump truck hauling a trailer on a highway ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267224.jpg', 'caption': 'Blue pickup truck traveling on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267224.jpg', 'caption': 'A blue truck with a white top driving on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267224.jpg', 'caption': 'A blue ford pickup truck traveling down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267224.jpg', 'caption': 'The blue pick up truck with the white camper is driving down the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267224.jpg', 'caption': 'A blue truck that is sitting in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485532.jpg', 'caption': 'An old truck with several years of paint schemes sits parked as if artwork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485532.jpg', 'caption': 'A colorful truck is shown at the dirt lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485532.jpg', 'caption': 'An old, rusty truck is parked in a lot.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000485532.jpg', 'caption': 'a colorful vintage truck splattered with paint sits in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485532.jpg', 'caption': 'an old beat up truck sitting in a scrap yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353836.jpg', 'caption': 'A food truck pulled up next to a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353836.jpg', 'caption': 'People stand at the window of a red food truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353836.jpg', 'caption': 'Two people standing at the service window of a food truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353836.jpg', 'caption': 'Two people standing near a red and white food truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353836.jpg', 'caption': 'Two people standing at a food truck placing an order.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038938.jpg', 'caption': 'A wooden desk with a cat and lamp on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038938.jpg', 'caption': 'A cat sits on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038938.jpg', 'caption': 'A cat crouches on a desk with a lamp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038938.jpg', 'caption': 'Striped cat begins to stand up on top of the antique desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038938.jpg', 'caption': 'A cat getting up off on a brown desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428175.jpg', 'caption': 'A heavy old truck sits in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428175.jpg', 'caption': 'An old car is sitting in an empty area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428175.jpg', 'caption': 'An old truck parked on a dirt surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428175.jpg', 'caption': 'An old truck parked in a dirty lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428175.jpg', 'caption': 'A truck parked in a field next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434990.jpg', 'caption': 'A police car onsite of an accident involving a truck on a freeway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434990.jpg', 'caption': 'A police car parked near the scene of an accident', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434990.jpg', 'caption': 'a close up of a police car at the scene of an accident', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434990.jpg', 'caption': \"A tanker trunk is on it's side on the side of a road near a police car.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434990.jpg', 'caption': \"The truck has rolled over on to it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179954.jpg', 'caption': 'A black and white cat sleeping next to a persons legs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179954.jpg', 'caption': 'A cat laying near a man with outstretched legs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179954.jpg', 'caption': 'Someone sitting on their couch, with their feet up, watching television with their cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179954.jpg', 'caption': 'A cat laying near someones feet watching tv', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179954.jpg', 'caption': 'Fat black and white cat laying down at a persons feet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494328.jpg', 'caption': 'A black cat sits in front of a TV screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494328.jpg', 'caption': 'A cat sits in front of a TV picture of a man and a baby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494328.jpg', 'caption': 'A BLACK CAT IS SITTING IN FRONT OF THE TV', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494328.jpg', 'caption': 'The cat sits in front of the TV making it hard for others to see.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494328.jpg', 'caption': 'A cat sitting in front of a television screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205523.jpg', 'caption': 'A blurred cat sitting in front of a screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205523.jpg', 'caption': 'A black cat sitting on top of a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205523.jpg', 'caption': 'The black cat is sitting in front of the television set. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205523.jpg', 'caption': 'A black cat standing next to a television in room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205523.jpg', 'caption': 'A blurry picture of a black cat sitting in front of a flat screen monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142890.jpg', 'caption': 'A black cat sitting in front of a desktop computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142890.jpg', 'caption': 'A cat sitting in front of a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142890.jpg', 'caption': 'The dark cat is near a keyboard and computer monitor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142890.jpg', 'caption': \"A cat's silhouette is visible in front of a computer monitor.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142890.jpg', 'caption': 'a closeup of a cat sitting right in front of a keyboard and monitor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485139.jpg', 'caption': 'a close up of a cat laying on a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485139.jpg', 'caption': 'A cat that is curled up on a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485139.jpg', 'caption': 'A cat resting on a green laptop during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485139.jpg', 'caption': 'a cat sitting on top of a laptop on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485139.jpg', 'caption': 'A cat sits on top of a closed laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379108.jpg', 'caption': 'an image of a man in a boat with a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379108.jpg', 'caption': 'A person on a rowboat with a dalmatian dog on the boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379108.jpg', 'caption': 'a person sitting in a boat with a dalmation ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379108.jpg', 'caption': 'an older person on a small boat with a dog in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000379108.jpg', 'caption': 'Old woman rowing a boat with a dog', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522106.jpg', 'caption': 'A black dog riding on top of a boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522106.jpg', 'caption': 'A black dog sitting on a boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522106.jpg', 'caption': 'A black dog with a red collar in a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522106.jpg', 'caption': 'The dog is riding in the boat on the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522106.jpg', 'caption': 'A DOG IS ON THE BOAT LOOKING AT THE WATER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195204.jpg', 'caption': 'many cows laying on a field of green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195204.jpg', 'caption': 'Several black cows laying in the green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195204.jpg', 'caption': 'some black cattle are grazing on a green hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195204.jpg', 'caption': 'A herd of cows resting in a pasture near a large house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195204.jpg', 'caption': 'Black cows laying down in a pasture near a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298628.jpg', 'caption': 'Three cows standing on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298628.jpg', 'caption': 'One black cow and two brown cows are seen through a wood fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298628.jpg', 'caption': 'Several cows in a grassy field behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298628.jpg', 'caption': 'Three cows standing in a field behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298628.jpg', 'caption': 'Three cows stand behind a fence in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485994.jpg', 'caption': 'Wooden tables next to the ocean with colorful chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485994.jpg', 'caption': 'THERE ARE DIFFERENT COLOR CHAIRS IN THE DOCK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485994.jpg', 'caption': 'a bunch of colorful tables that are outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485994.jpg', 'caption': 'Tables placed near the water with different color chairs around each.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485994.jpg', 'caption': 'a patio filled with brightly colored chairs and tables ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313593.jpg', 'caption': 'A cat sleeps with its head on a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313593.jpg', 'caption': 'A cat rests its head on a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313593.jpg', 'caption': 'a cat that is laying down on a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313593.jpg', 'caption': \"An orange cat asleep on a couch with it's head on a laptop\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313593.jpg', 'caption': 'A cat enjoying the warmth of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149017.jpg', 'caption': 'There is a mountain behind the light house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149017.jpg', 'caption': 'Several boats docked near a lighthouse and a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149017.jpg', 'caption': 'A tall light house towering over a harbor filled with boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149017.jpg', 'caption': 'A body of water with some boats with a mountain in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149017.jpg', 'caption': 'A BOAT IS IN THE WATER NEAR AN ISLAND', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304357.jpg', 'caption': 'A small cat laying on the ground with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304357.jpg', 'caption': 'A small striped cat lies next to a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304357.jpg', 'caption': 'A wide-eyed striped cat on the floor by a remote controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304357.jpg', 'caption': 'Cat lying prone behind an upside down remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000304357.jpg', 'caption': 'A cat laying next to a remote control on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496687.jpg', 'caption': 'Young boys in suits and ties posing for photo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496687.jpg', 'caption': 'Two people with long hair wearing suits and ties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496687.jpg', 'caption': 'Some people are posing for a picture on set.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496687.jpg', 'caption': 'Pair of classy men in nice clothing smiling at camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496687.jpg', 'caption': 'two asian men with long hair in suits and ties ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107234.jpg', 'caption': 'A man dressed in suit and tie holding a wine glass in his mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107234.jpg', 'caption': 'A man putting something into his open mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107234.jpg', 'caption': 'A guy in a suit with his mouth around a wine glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107234.jpg', 'caption': 'A man in a suit and tie holding a champagne glass in a silly way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107234.jpg', 'caption': 'A nicely dressed young man with a flower on his lapel fits a glass into his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534038.jpg', 'caption': 'Black and white photo of a man pulling a boat on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534038.jpg', 'caption': 'A man that is standing in the sand next to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534038.jpg', 'caption': 'A person on a beach and a boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534038.jpg', 'caption': 'a boat in the water with two people and another man is on the sand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534038.jpg', 'caption': 'Woman standing on the beach with a large sailboat behind her. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252549.jpg', 'caption': 'Shirts and ties displayed all over the walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252549.jpg', 'caption': 'a display of dress shirts and ties on shelves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252549.jpg', 'caption': 'The room has a wide selection of dress shirts and ties. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252549.jpg', 'caption': \"Men's clothing of casual and business is displayed with price tags.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252549.jpg', 'caption': 'A bunch of shirts and ties on display on a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334148.jpg', 'caption': 'A man wearing a motorcycle helmet and a neck tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334148.jpg', 'caption': 'The man is wearing a motorcycle helmet on his head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334148.jpg', 'caption': 'a man in a motor cycle helmet pointing his finger ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334148.jpg', 'caption': 'The man in the helmet is making a good point.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334148.jpg', 'caption': 'A man with a shirt and tie, wearing sunglasses and a motorcycle helmet on his head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345847.jpg', 'caption': 'An attractive young lady taking a selfy in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345847.jpg', 'caption': 'A woman taking a picture on her mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345847.jpg', 'caption': 'A young woman is taking pictures of a plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345847.jpg', 'caption': 'A woman in a white shirt and black tie takes a selfie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345847.jpg', 'caption': 'A woman in a small tie takes her picture in the mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038858.jpg', 'caption': 'A woman in a white dress marrying a man in front of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038858.jpg', 'caption': 'A man and woman exchanging wedding vows outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038858.jpg', 'caption': 'A man and woman getting married outside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038858.jpg', 'caption': 'A woman in a white dress holds a hand with a man in a tux.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038858.jpg', 'caption': 'A woman and a man holding each others hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530706.jpg', 'caption': 'A man taking a photograph of himself in a security mirror. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530706.jpg', 'caption': 'A man sitting at a desk working on a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530706.jpg', 'caption': 'People are looking at computer and one man has a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530706.jpg', 'caption': 'Several men sitting at a desk with a computer while another man holds a camera upward. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530706.jpg', 'caption': 'People sitting at computers and one person holding a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417481.jpg', 'caption': 'A man wearing a shirt and tie topped with a motor cycle helmet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417481.jpg', 'caption': 'A man with a neck tie is wearing a motorcycle helmet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417481.jpg', 'caption': 'Black and white image of a man wearing a motorcycle helmet.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417481.jpg', 'caption': 'Black and white photograph of a man wearing a helmet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417481.jpg', 'caption': 'black and white image of a man wearing a motorcycle helmet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418637.jpg', 'caption': 'Four elephants partake in shade underneath a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418637.jpg', 'caption': 'A herd of elephants standing next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418637.jpg', 'caption': 'a number of cows on a field near trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418637.jpg', 'caption': 'A group of elephants cluster around the trunk of a huge acacia tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418637.jpg', 'caption': 'A family of elephants on the plaints under a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199438.jpg', 'caption': 'a man and woman in a canoe with a young child holding oars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199438.jpg', 'caption': 'A man a woman and child paddle a canoe across a lake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199438.jpg', 'caption': 'Parents taking their little one for a canoe ride on a lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199438.jpg', 'caption': 'Two people row their canoe down the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199438.jpg', 'caption': 'A young man and a young lady row a canoe together on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285106.jpg', 'caption': 'A woman walking in the rain while holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285106.jpg', 'caption': 'A person with rain coat and umbrella walking in heavy rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285106.jpg', 'caption': 'A woman using an umbrella to stay dry while walking in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285106.jpg', 'caption': 'A woman walks through the rain with a raincoat and umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285106.jpg', 'caption': 'A woman walking down the road in the rain with her umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207926.jpg', 'caption': 'A black and white shot of people standing in the rain in front of a castle structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207926.jpg', 'caption': 'People in groups walking in the rain during the daytime. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207926.jpg', 'caption': 'some people are walking on a rainy street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207926.jpg', 'caption': 'The people has there umberellas up for the rain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207926.jpg', 'caption': 'A black and white picture of people standing in front of an old city gate entrance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187624.jpg', 'caption': 'A person and young girl with a frog umbrella standing next to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187624.jpg', 'caption': 'A adult and a child on the edge of some water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187624.jpg', 'caption': 'a little child stands next to a person by a lake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187624.jpg', 'caption': 'a child holding an umbrella next to an adult', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187624.jpg', 'caption': \"A child with green frog umbrella standing with a parent near water's edge.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556420.jpg', 'caption': 'A beautiful sandy beach with a grass umbrella next to crystal blue water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556420.jpg', 'caption': 'A white sandy beach has a chair and straw umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556420.jpg', 'caption': 'Beach scene with an umbrella, chair, and other items close to the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556420.jpg', 'caption': 'a chair and a palm frond umbrella sittin on a quiet beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556420.jpg', 'caption': 'a chair under a straw mat umbrella at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124599.jpg', 'caption': 'A couple of lawn chairs sitting on top of a beach under an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124599.jpg', 'caption': 'Two chairs are set up on sand near two people standing in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124599.jpg', 'caption': 'Two chaits an umrella and two people at abeach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124599.jpg', 'caption': 'Two beach chairs under an umbrella, at the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000124599.jpg', 'caption': 'Two green and wooden beach chairs sit under a blue umbrella on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121123.jpg', 'caption': 'A couple of people sitting on top of a elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121123.jpg', 'caption': 'Two people riding an elephant with an indian guy steering it.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121123.jpg', 'caption': 'People riding on the back of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121123.jpg', 'caption': 'Two tourists are riding on the back of an elephant with the driver.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121123.jpg', 'caption': 'two people riding on the back of an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497076.jpg', 'caption': 'A man is riding an elephant down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497076.jpg', 'caption': 'a person riding on the head of an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497076.jpg', 'caption': 'A man is sitting atop a large elephant as it walks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497076.jpg', 'caption': 'A man in white shirt riding an elephant with rack on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497076.jpg', 'caption': 'Guy rides elephant through Indian street in front of building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301684.jpg', 'caption': 'An elephant sitting while its trainer cleans it with a broom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301684.jpg', 'caption': 'A abusive animal trainer teaching an elephant to sit on command.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301684.jpg', 'caption': 'A handler working with an elephant that is sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301684.jpg', 'caption': 'A trainer training a elephant in a closed area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301684.jpg', 'caption': 'A man sweeps an elephant with a broom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458311.jpg', 'caption': 'A couple of elephants that are standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458311.jpg', 'caption': \"A baby elephant reaching into it's mother's mouth\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458311.jpg', 'caption': 'there is a adult elephant and a baby elephant standing together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458311.jpg', 'caption': 'two elephants on a dirt ground behind a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458311.jpg', 'caption': 'A small elephant is standing next to a large elephant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221089.jpg', 'caption': 'two elephants that are together in an enclosure. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221089.jpg', 'caption': 'Two elephants in an enclosure with their trunks raised', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221089.jpg', 'caption': 'Two elephants in a pen with their trunks raised.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221089.jpg', 'caption': 'an elephant is reaching it trunk upwards in a pin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221089.jpg', 'caption': 'An elephant playing with barrels in a pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009105.jpg', 'caption': 'A man in suit and tie standing by a white wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009105.jpg', 'caption': 'A man in a suit and a tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009105.jpg', 'caption': 'This gentleman is well-dressed in a suit and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009105.jpg', 'caption': 'A young man in formal dress is standing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009105.jpg', 'caption': 'A man stands wearing a dark suit and pink tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400431.jpg', 'caption': 'Many different boats that are on the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400431.jpg', 'caption': 'Various boats floating in a lake next to a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400431.jpg', 'caption': 'some little coloful boats sitting in the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400431.jpg', 'caption': 'A row of boats in a harbor with paddles near a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000400431.jpg', 'caption': 'Several boats without occupants anchored near a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265372.jpg', 'caption': 'A small boat sitting in a harbor with larger boats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265372.jpg', 'caption': 'A small white boat in the middle of the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265372.jpg', 'caption': 'A small fishing boat on a lake with a city in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265372.jpg', 'caption': 'Empty boat floating on the lake at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265372.jpg', 'caption': 'A boat in still water at a harbor at dusk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389419.jpg', 'caption': 'A man in glasses and tie pointing his finger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389419.jpg', 'caption': 'A young man stands pointing in the picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389419.jpg', 'caption': 'A man points and talks in front of a poster.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389419.jpg', 'caption': 'A man standing in front of a poster pointing his finger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389419.jpg', 'caption': 'A man talking and pointing his finger at something or someone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310705.jpg', 'caption': 'A man with eyeglasses, a checkered tie and brown blazer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310705.jpg', 'caption': 'A smiling man in a suit, sitting down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310705.jpg', 'caption': 'A man with a tie sitting in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310705.jpg', 'caption': 'A man who is wearing a suit and tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000310705.jpg', 'caption': 'We are looking at a low angle view of a man in a suit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477067.jpg', 'caption': 'A person riding an elephant that is spraying water from its trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477067.jpg', 'caption': 'A man on the back of an elephant which is spraying water from its trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477067.jpg', 'caption': 'a person sitting on an elephant that squirts water from its trunk over a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477067.jpg', 'caption': \"A man riding an elephant that is spraying water out of it's trunk.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477067.jpg', 'caption': 'An elephant trumpets while a person rides on its back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437459.jpg', 'caption': \"The lower half of a man's bearded face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437459.jpg', 'caption': 'A man with a beard and a yellow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437459.jpg', 'caption': 'A bearded man wearing a white dress shirt and yellow tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437459.jpg', 'caption': 'A close up of a bearded man wearing a yellow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437459.jpg', 'caption': 'A white man with a beard wearing a white shirt and gold tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042793.jpg', 'caption': 'Lounge beach chairs near umbrella on sand at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042793.jpg', 'caption': 'two beach chairs and an umbrella on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042793.jpg', 'caption': 'A beach umbrella next to chairs on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042793.jpg', 'caption': 'An umbrella is next to empty chairs on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042793.jpg', 'caption': 'Two lounge chairs and an umbrella have been set up on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221044.jpg', 'caption': 'A woman going down the stairs with a backpack on and a suitcase in her hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221044.jpg', 'caption': 'A person dragging a piece of luggage down a flight of stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221044.jpg', 'caption': 'A person with a back pack in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221044.jpg', 'caption': 'Man pulling suitcase down long flight of steps', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221044.jpg', 'caption': 'A woman holding a suit case over a chute for luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180925.jpg', 'caption': \"A small elephant with a seat on it's back.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180925.jpg', 'caption': 'an elephant with chains around its ankles walks with an empty chair strapped to its back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180925.jpg', 'caption': 'An elephant carrying what appears to be a small sled on its back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180925.jpg', 'caption': 'The elephant carrying a bench on its back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180925.jpg', 'caption': 'Elephant with seat standing in outdoor area near building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139555.jpg', 'caption': 'A man and a woman ride an elephant for the first time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139555.jpg', 'caption': 'A man and woman are sitting on a very big elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139555.jpg', 'caption': 'A man and a woman are riding on an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139555.jpg', 'caption': 'A man and woman sitting on an elephant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139555.jpg', 'caption': 'a man and woman are sitting on the back of an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549268.jpg', 'caption': 'A man and woman riding on an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549268.jpg', 'caption': 'Two people riding an elephant down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549268.jpg', 'caption': 'Two people riding on an elephant down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549268.jpg', 'caption': 'Two people are riding along on an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000549268.jpg', 'caption': 'A man and a woman riding on an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466259.jpg', 'caption': 'People are in a boat in the rain with umbrellas.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466259.jpg', 'caption': 'A group of people in a boat while it rains. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466259.jpg', 'caption': 'This is an image of a gondola in the rain with umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466259.jpg', 'caption': 'People are on a boat in the rain with umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466259.jpg', 'caption': 'People with umbrellas row a boat down a stream in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214503.jpg', 'caption': 'a rainbow umbrella that has people under it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214503.jpg', 'caption': 'A group of people gather under a rainbow colored umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214503.jpg', 'caption': 'People shop for produce at an outdoor market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214503.jpg', 'caption': 'A man holding a basket standing next to an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214503.jpg', 'caption': 'some people putting grass in a plastic swimming pool with an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210920.jpg', 'caption': 'an open luggage bag near a laptop ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210920.jpg', 'caption': 'An opened suitcase lies beside a laptop on a floor mat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210920.jpg', 'caption': 'a black and white photo of a laptop suitcase and legs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210920.jpg', 'caption': 'A laptop that is on a small table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210920.jpg', 'caption': 'A laptop sitting on a table near a black suit case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023406.jpg', 'caption': 'A man standing near an elephant with its trunk outstretched. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023406.jpg', 'caption': 'The man is standing next to the head of a large elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023406.jpg', 'caption': 'A man standing next to a large elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023406.jpg', 'caption': 'A black and white photo of an elephant with a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023406.jpg', 'caption': 'A man appears to be caring for an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388880.jpg', 'caption': 'a large boat is in the water by a dock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388880.jpg', 'caption': 'A large boat floats in the water by a dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388880.jpg', 'caption': 'A large passenger boat stationary at a dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388880.jpg', 'caption': 'A passenger ferry at the dock during the day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388880.jpg', 'caption': 'A boat is docked while the weather is clear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280911.jpg', 'caption': 'Two large elephants in the woods with one leading the other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280911.jpg', 'caption': 'A couple of elephants wandering through a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280911.jpg', 'caption': 'aa couple of elephants are standing in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280911.jpg', 'caption': 'A group of large gray elephants walking through a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280911.jpg', 'caption': 'A herd of elephants walking in the tall grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092034.jpg', 'caption': 'An adult and baby elephant grazing in the green grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092034.jpg', 'caption': 'A big elephant and a small elephant walking through a grassy meadow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092034.jpg', 'caption': 'Elephants are in the tall knee high shaded grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092034.jpg', 'caption': 'A mama elephant walking next to a baby elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092034.jpg', 'caption': 'A large and small elephant in tall grass next to trees and bushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285799.jpg', 'caption': 'Person pulling a sled through a trail of snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285799.jpg', 'caption': 'A lady standing on a sled holding a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285799.jpg', 'caption': 'A woman standing on a sled with two bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285799.jpg', 'caption': 'A woman riding a sleigh carrying a bag of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285799.jpg', 'caption': 'A young woman ski is down a slope on the back of a sled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032677.jpg', 'caption': 'A dog and a cat sleeping next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032677.jpg', 'caption': 'A boxer dog and a cat are laying on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032677.jpg', 'caption': 'A dog and a cat are sleeping next to each other. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032677.jpg', 'caption': 'A dog laying down by a cat, both are curled up in a ball, the cat is laying on the dogs bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032677.jpg', 'caption': 'A dog and a cat sleeping soundly on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340332.jpg', 'caption': 'An old opened trunk in an abandoned house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340332.jpg', 'caption': 'an open chest in a run down apartment', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340332.jpg', 'caption': 'This is an image of a trunk in a damaged home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340332.jpg', 'caption': 'Large, open, empty chest in an abandoned, rundown buliding ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340332.jpg', 'caption': 'An old open trunk sits in a dilapidated house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345134.jpg', 'caption': 'A suitcase that is on the floor with its handle up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345134.jpg', 'caption': 'A bag of luggage sitting on a hard wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345134.jpg', 'caption': 'A suitcase on wheels next to three doors. . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345134.jpg', 'caption': 'A suitcase is packed and ready for the person to take traveling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000345134.jpg', 'caption': 'a black suitcase sitting in a hallway by some doors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062170.jpg', 'caption': 'An elephant standing next to a tree outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062170.jpg', 'caption': 'A couple of elephants standing on top of a grass covered field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062170.jpg', 'caption': 'A couple of elephants out in the field having a snack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062170.jpg', 'caption': 'An African elephant stands with the rest of the herd', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000062170.jpg', 'caption': 'a large elephants is outside in a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581183.jpg', 'caption': 'Several elephants standing on stools during a circus act.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581183.jpg', 'caption': 'A group of circus elephants standing on each others backs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581183.jpg', 'caption': 'Seven circus elephants, on their hind legs, leaning on each other, with a standing elephant in the middle of the line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581183.jpg', 'caption': 'a line of elephants standing on some kind of platform ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000581183.jpg', 'caption': 'Performers and elephants putting on a show at the circus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074759.jpg', 'caption': 'A group of people sitting on the backs of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074759.jpg', 'caption': 'Three elephants in a circus show with tricksters sitting on top of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074759.jpg', 'caption': 'Elephants and their riders performing at a circus ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074759.jpg', 'caption': 'Three elephants standing on a stool with woman sitting on their necks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074759.jpg', 'caption': 'Three elephants with three women riding on top of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305142.jpg', 'caption': 'A dog is in mid air with a frisbee in its mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305142.jpg', 'caption': 'A spotted dog is jumping to play frisbee outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305142.jpg', 'caption': 'A speckle coated dog is catching a blue Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305142.jpg', 'caption': 'A dog catching a Frisbee in mid-air at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305142.jpg', 'caption': 'A dog in a field trying to catch a frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058849.jpg', 'caption': \"A dog with a blue frisbee in it's mouth.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058849.jpg', 'caption': 'A dog has a frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058849.jpg', 'caption': 'A close up of a dog with a frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058849.jpg', 'caption': 'A crazy eyed dog with a frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058849.jpg', 'caption': 'A dog has crazy eyes as he tries to keep the frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328814.jpg', 'caption': 'Two black bear cubs wrestling around with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328814.jpg', 'caption': 'two black and white animals are playing on some dirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328814.jpg', 'caption': 'there are two black bears that are play fighting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328814.jpg', 'caption': 'Two young animals play on a concrete floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328814.jpg', 'caption': 'THERE ARE TWO ANIMALS THAT ARE PLAYING TOGETHER ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116149.jpg', 'caption': 'some woman standing on stage doing a dance with umbrellas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116149.jpg', 'caption': 'A group of women dancing with umbrellas in a play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116149.jpg', 'caption': 'Oriental dancers dressed in blue holding blue umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116149.jpg', 'caption': 'A group of four different women with umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116149.jpg', 'caption': 'A group of four umbrella twirlers performing in a show.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180357.jpg', 'caption': 'Three women perform a dance with traditional umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180357.jpg', 'caption': 'Three cultural dancers holding umbrellas on a red stage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180357.jpg', 'caption': 'Theatrical performance of three costumed women with parasols.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180357.jpg', 'caption': 'Three Asian women are dancing around with umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180357.jpg', 'caption': 'Three woman dancing with open umbrellas in their hands. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201305.jpg', 'caption': 'A young girl standing on a red carpet with her leg up in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201305.jpg', 'caption': 'A Chinese girl performing a traditional Chinese dance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201305.jpg', 'caption': 'A lady wearing a China dress is posing with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201305.jpg', 'caption': 'An Oriental dancer using a fan of sorts for the dance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201305.jpg', 'caption': 'An asian girl is posing with a little umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355342.jpg', 'caption': 'Three Asian performers on a stage with parasols.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355342.jpg', 'caption': 'Three asian esque girls with umbrellas are dancing on stage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355342.jpg', 'caption': 'There are several people dancing with decorated umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355342.jpg', 'caption': 'Dancers performing on a stage with sheer umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355342.jpg', 'caption': 'The women are dancing onstage with colorful outfits and parasols.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305873.jpg', 'caption': 'A little girl holding a red black dotted umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305873.jpg', 'caption': 'A little girl with rain boots and a rain jacket on and an open umbrella to match her jacket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305873.jpg', 'caption': 'a little girl holding onto a lady bug pattern umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305873.jpg', 'caption': 'The child wears a labybug rain coat with a matching umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000305873.jpg', 'caption': 'A little girl wearing a ladybug raincoat and green rubber boots holding a ladybug umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389258.jpg', 'caption': 'A woman with an umbrella kneels near a child, who also has an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389258.jpg', 'caption': 'A woman is standing next to a kid wearing a raincoat holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389258.jpg', 'caption': ' a happy smiling little girl holding a ladybug umbrella and wearing a ladybug coat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389258.jpg', 'caption': 'A small child and a woman pose while holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000389258.jpg', 'caption': 'A woman standing with a girl with a polka dot umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289318.jpg', 'caption': 'a woman and a child holding umbrellas and smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289318.jpg', 'caption': 'A woman with a black umbrella and a child with a red and black umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289318.jpg', 'caption': 'A mother and daughter laugh under umbrellas on a rainy day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289318.jpg', 'caption': 'A girl and a woman holding umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289318.jpg', 'caption': 'A lady with a black umbrella over her head and a child with a red rain coat and matching umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428985.jpg', 'caption': 'A little girl is standing in a ladybug raincoat with a ladybug umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428985.jpg', 'caption': 'A woman and a little girl holding their umbrellas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428985.jpg', 'caption': 'a close up of a child with an open umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428985.jpg', 'caption': 'Adult woman and child hold their own umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428985.jpg', 'caption': 'Woman and little girl hold their umbrellas in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145815.jpg', 'caption': 'Two adult dogs play with frisbees in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145815.jpg', 'caption': 'A dog is walking with a frisbee and another dog is jumping to catch a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145815.jpg', 'caption': 'a couple of dogs are playing in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145815.jpg', 'caption': 'Two border collies playing with their own frisbee in a yard full of snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145815.jpg', 'caption': 'Two dogs that are playing with frisbees out in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057265.jpg', 'caption': 'A woman walking down a street holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057265.jpg', 'caption': 'A woman with an umbrella and a man walking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057265.jpg', 'caption': 'A woman is standing beside an older gentleman while holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057265.jpg', 'caption': 'A woman holding an umbrella while a man walks behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057265.jpg', 'caption': 'A woman walking with a man and holding an umbrella looks off to the side. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415360.jpg', 'caption': 'A puppy laying on a skateboard on a brick sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415360.jpg', 'caption': 'A black dog laying on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415360.jpg', 'caption': 'A black dog sitting on a skateboard looking bored.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415360.jpg', 'caption': 'a dog sits on top of a skate board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415360.jpg', 'caption': 'A dog laying on its stomach on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196421.jpg', 'caption': 'This is a photograph of several boy scouts waiting in an airport lobby. A couple are sleeping and a couple are on their phones. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196421.jpg', 'caption': 'Scouts are waiting patiently for their flight to be called.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196421.jpg', 'caption': 'Bus passengers wait for flights on the floor of an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196421.jpg', 'caption': 'Boys laying and sitting on a deck near the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196421.jpg', 'caption': 'Boy scouts spread out and waiting an airport with their bags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323602.jpg', 'caption': 'A gray and white puppy on a leash atop a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323602.jpg', 'caption': 'A small dog is on a leash and on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323602.jpg', 'caption': 'A dog on a leash is riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323602.jpg', 'caption': 'Young tethered puppy standing with two front paws on skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323602.jpg', 'caption': 'A grey and white puppy wearing a bandana stands on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008599.jpg', 'caption': 'Three people are moving a cart of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008599.jpg', 'caption': 'One man pulling and the other man pushing a wagon filled with luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008599.jpg', 'caption': 'Two men push and pull a metal cart loaded with luggage down a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008599.jpg', 'caption': 'Two men pushing and pulling a cart with luggage on an unpaved road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000008599.jpg', 'caption': 'A man wearing a backpack is helping another man push a cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416818.jpg', 'caption': 'A ceiling with lots of multi colored umbrellas hanging from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416818.jpg', 'caption': 'A large variety of umbrella of various colors that are high in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416818.jpg', 'caption': 'atrium with numerious colorful umbrellas on the ceiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416818.jpg', 'caption': 'Many small colored umbrellas in the air in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000416818.jpg', 'caption': 'A collection of umbrellas hang from the ceiling in an open space.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107375.jpg', 'caption': 'A dog carrying a water bottle that is empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107375.jpg', 'caption': 'A dog holding a water bottle in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107375.jpg', 'caption': 'A dog is carrying a plastic bottle while outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107375.jpg', 'caption': 'white dog running down a path with a bottle of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107375.jpg', 'caption': 'The dog is in the woods playing with a stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328315.jpg', 'caption': 'A computer desk with a computer turned on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328315.jpg', 'caption': 'A wooden desk with a computer and books/cds in the shelves of the desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328315.jpg', 'caption': 'A desk with a monitor, keyboard, and various other objects on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328315.jpg', 'caption': 'The computer desk is neat with everything in its place.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328315.jpg', 'caption': 'A desk with many items, including a keyboard, monitor, and books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231534.jpg', 'caption': 'A large jetliner sitting on top of an airport tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231534.jpg', 'caption': 'a large airplane that is parked on a runway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231534.jpg', 'caption': 'a parked plane is being directed by a man on the ground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231534.jpg', 'caption': 'A cart pulling luggage near a plane at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231534.jpg', 'caption': 'A man is waiting to load luggage onto a plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279895.jpg', 'caption': 'Five men standing with backpacks and a police officer looking at them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279895.jpg', 'caption': 'A group of men standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279895.jpg', 'caption': 'An officer speaking with a group of men', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279895.jpg', 'caption': 'A man in uniform with a bunch of guys in line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279895.jpg', 'caption': 'A man in uniform addresses a line of standing guys.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102598.jpg', 'caption': 'there is a dog playing frisbee in the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102598.jpg', 'caption': 'A dog in a snowy yard leaping for a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102598.jpg', 'caption': 'A dog catching a flying Frisbee in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102598.jpg', 'caption': 'A dog playing in the snow getting the Frisbee .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102598.jpg', 'caption': 'A grey and white dog catching a frisbee in snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414934.jpg', 'caption': 'Black and white photograph of people with surfboards next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414934.jpg', 'caption': 'The people are trying to load the surf board in the car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414934.jpg', 'caption': 'Black and white photo of four teenage boys loading surfboards in a vintage car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414934.jpg', 'caption': 'a vintage photo of some men standing next to a car ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414934.jpg', 'caption': 'Young men are loading surfboards into an old car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016776.jpg', 'caption': 'Two black bears climbing up a lush green tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016776.jpg', 'caption': 'Two bear cubs look out from the top of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016776.jpg', 'caption': 'Two small baby bears in the top of a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016776.jpg', 'caption': 'Two brown bears sitting in a tree in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016776.jpg', 'caption': 'two black bear cubs standing in some tree branches ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218561.jpg', 'caption': 'A dog holds a frisbee with the side of its mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218561.jpg', 'caption': 'A dog with a frisbee in his mouth in the back yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218561.jpg', 'caption': 'A dog is sitting and waiting with frisbee in tow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218561.jpg', 'caption': 'Black lab with a red color holding red Frisbee in his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218561.jpg', 'caption': 'a dog holding a red frisbee in its mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474246.jpg', 'caption': 'an image of two bears that are next to a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474246.jpg', 'caption': 'Two black bears standing up next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474246.jpg', 'caption': 'Two black bears conversing in the the forest. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474246.jpg', 'caption': 'Two small black bears stand near a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474246.jpg', 'caption': 'Two black bears in the woods playing near the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193481.jpg', 'caption': 'The furry animal with long claws is covering its eye with its paw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193481.jpg', 'caption': 'A bear is laying down in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193481.jpg', 'caption': \"A bear is covering it's face with a paw that has long claws.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193481.jpg', 'caption': 'a close up of a bear on a concrete ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193481.jpg', 'caption': 'An animal covers its face with one paw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231364.jpg', 'caption': 'A bear sits down on the ground with sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231364.jpg', 'caption': 'Bear laying down on the ground out in the sun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231364.jpg', 'caption': 'A baby bear gently sleeps in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231364.jpg', 'caption': 'A brown sleepy bear is laying on dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000231364.jpg', 'caption': 'A brown bear laying on a stone area in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034773.jpg', 'caption': 'A large white and black dog laying on top of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034773.jpg', 'caption': 'A dog with blue eyes is curled up on a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034773.jpg', 'caption': 'Black and white husky dog laying on a black couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034773.jpg', 'caption': 'A husky dog curled up on a couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000034773.jpg', 'caption': 'A large dog with blue eyes on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383413.jpg', 'caption': 'A bear and a cub sniffing the end of a log.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383413.jpg', 'caption': 'Two bears are smelling a piece of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383413.jpg', 'caption': 'A couple of bears eating a large piece of wood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383413.jpg', 'caption': 'a large log that has a bear on top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383413.jpg', 'caption': 'An adult bear and a cub bear nibbling on a piece of wood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201405.jpg', 'caption': 'a large bear is standing over by the rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201405.jpg', 'caption': 'A bear sticks out its tongue while standing in front of a rocky background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201405.jpg', 'caption': 'A big black bear standing on dirt in an enclosure at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201405.jpg', 'caption': 'A black bear is standing by the rock', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000201405.jpg', 'caption': 'A large black bear standing in a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450004.jpg', 'caption': 'Two black bears standing in their man made enclosure', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450004.jpg', 'caption': 'Two black bears standing next to each other on a dirt floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450004.jpg', 'caption': 'Two black bears standing on a rock staring down the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450004.jpg', 'caption': 'Two bears look at something while standing on a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000450004.jpg', 'caption': 'Two large black bears standing on and near some rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553549.jpg', 'caption': 'A large black bear walking through a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553549.jpg', 'caption': 'an image of a black bear in the woods', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553549.jpg', 'caption': 'A bear smelling a branch in the woods at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553549.jpg', 'caption': 'a bear on the ground near trees and bushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553549.jpg', 'caption': 'BEAR STALKING AROUND IN THE WOODS AT NIGHT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251936.jpg', 'caption': 'A brown bear sitting on top of cement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251936.jpg', 'caption': 'A big brown bear sitting on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251936.jpg', 'caption': 'A bear is sitting on a rock in the sun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251936.jpg', 'caption': 'A bear sits relaxing on a large stone surface. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251936.jpg', 'caption': 'a bear sitting on the cement ground next to some rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523529.jpg', 'caption': 'Something has peaked the interest of this bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523529.jpg', 'caption': 'A close up photo of a brown bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523529.jpg', 'caption': 'A brown bear holds his head into the bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523529.jpg', 'caption': 'A small bear cub sniffs the air near the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523529.jpg', 'caption': 'A bear in a zoo exhibit looking up at something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531334.jpg', 'caption': 'Two bears interacting with each other at outdoor area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531334.jpg', 'caption': 'Two dogs are cuddled up together over another dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531334.jpg', 'caption': 'Pair of bears play fighting over small tot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531334.jpg', 'caption': 'Two small bears stand next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000531334.jpg', 'caption': 'Two large and furry foxes looking at something together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046898.jpg', 'caption': 'A bear is sitting in the grass in front of a rusty chain-link fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046898.jpg', 'caption': 'A bear sits in the grass near a red chain linked fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046898.jpg', 'caption': 'a bear that is on some grass next to a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046898.jpg', 'caption': 'A large brown bear sitting in grass near a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046898.jpg', 'caption': 'A brown bear sits on its bottom in the grass next to a chain link fence. ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000434829.jpg', 'caption': 'A light shines on five clocks showing times in different zones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434829.jpg', 'caption': 'A dark image of multiple clocks set to different time zones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475510.jpg', 'caption': 'A man is crouching in front of an open refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475510.jpg', 'caption': 'The man is cleaning out his refrigerator in his kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475510.jpg', 'caption': 'A man kneels down to take something out of a fridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475510.jpg', 'caption': 'A man kneels to put something into a refrigerator in a messy kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475510.jpg', 'caption': 'Man leaning down in kitchen preparing to grab something out of a fridgerater.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413120.jpg', 'caption': 'A blender glass with several green vegetables in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413120.jpg', 'caption': 'Many green vegetables are in the top of a blender.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413120.jpg', 'caption': 'The blender pitcher is full of chopped vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413120.jpg', 'caption': 'a blender filled with a lot of sliced cucumber ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000413120.jpg', 'caption': 'Some green vegetables that are in a blender.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490505.jpg', 'caption': 'A vase with a dozen tie-dye flowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490505.jpg', 'caption': 'a man in a red shirt standing in front of a vase filled with multi-colored roses sitting on a counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490505.jpg', 'caption': 'multi-color boutique of rose sitting on a granite counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490505.jpg', 'caption': 'a vase full of many multi colored flowers sitting on a counter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490505.jpg', 'caption': 'Assortment of colorful flowers in glass vase on table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005670.jpg', 'caption': 'a young man in a grey shirt is going to cut his hair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005670.jpg', 'caption': 'A young man is holding scissors near his hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005670.jpg', 'caption': 'a man is shown holding some scissors to his head ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005670.jpg', 'caption': 'A man is holding a pair of scissors to his hair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005670.jpg', 'caption': 'A young man is in the middle of cutting his hair while posing. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325208.jpg', 'caption': 'A group of vintage metal trinkets with tags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325208.jpg', 'caption': 'a letter opener a box some books and some tags', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325208.jpg', 'caption': 'Antiques with labels laid out on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325208.jpg', 'caption': 'Silver items on a table with catelog notes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325208.jpg', 'caption': 'Several antiques are sitting on a table with white labels attached to them ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469075.jpg', 'caption': 'A photo of a street with a fountain and a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469075.jpg', 'caption': 'A tall brick tower with a clock at the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469075.jpg', 'caption': 'A very tall block tower towering over a city under a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469075.jpg', 'caption': 'A picture of a large stand alone stone clock tower next to a fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469075.jpg', 'caption': 'A beautiful clock tower rises high about the water fountains in the plaza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202998.jpg', 'caption': 'Food sitting on a table in yellow containers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202998.jpg', 'caption': 'a home made breakfast that looks super awful ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202998.jpg', 'caption': 'Packed lunch of soup, sandwich, cheese, and olives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202998.jpg', 'caption': 'A selection of food, including soup, and sandwich, eggs, and cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202998.jpg', 'caption': 'Three bowls sit near a mouse and a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053267.jpg', 'caption': 'Man is holding up a photograph and smiling ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053267.jpg', 'caption': 'A man from a clock shop is holding up a photo of an enormous ribbon clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053267.jpg', 'caption': 'A man in a shop holding a picture of two men.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053267.jpg', 'caption': 'A man holding a photograph up in front of him with both hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053267.jpg', 'caption': 'An older gentleman is holding up an antique at a clock store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265851.jpg', 'caption': 'A large teddy bear sits in a chair outside of a shop selling hats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265851.jpg', 'caption': 'A bear in a striped sweater stting in a chair next to an open door with hats hanging outside it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265851.jpg', 'caption': 'A teddy bear in a chair sits in front of a toy house. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265851.jpg', 'caption': 'A teddy bear is sitting slumped in a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265851.jpg', 'caption': 'A teddy bear sitting in a rocking chair next to a display of hats.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071549.jpg', 'caption': 'A stuffed Christmas bear is laying on the floor next to its arm that has fallen off. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071549.jpg', 'caption': 'A broken teddy bear underneath a Christmas tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071549.jpg', 'caption': 'A teddy bear that has its arm ripped off. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071549.jpg', 'caption': 'A stuffed teddy bear sitting next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071549.jpg', 'caption': \"A teddy bear's arm laying next to a teddy bear. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517443.jpg', 'caption': 'A white building with a clock on the front and side of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517443.jpg', 'caption': 'This a small building with a clock at the top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517443.jpg', 'caption': 'A white tower surrounded by a fence in Greece. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517443.jpg', 'caption': 'A large building with a clock at the very top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517443.jpg', 'caption': 'A white clock tower with a clear blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143010.jpg', 'caption': 'A red rose sticking out of a glass vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143010.jpg', 'caption': 'THERE IS A VASE WITH A ROSE INSIDE OF IT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143010.jpg', 'caption': 'there is a tall slim vase with a rose in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143010.jpg', 'caption': 'a glass vase sitting on a dresser with a rose in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000143010.jpg', 'caption': 'A table with two jars and a vase with a single flower in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283890.jpg', 'caption': 'A large black vase under a hanging light in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283890.jpg', 'caption': 'A large vase is in the center of a hotel lobby with a large chandelier above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283890.jpg', 'caption': 'A large vase stand in the middle of an elegant lobby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283890.jpg', 'caption': 'Large ornate vase displayed on custom floor beneath hanging chandelier.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000283890.jpg', 'caption': 'A vase and a chandelier in the lobby. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264489.jpg', 'caption': 'Two flowers sitting in a round vase near a window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264489.jpg', 'caption': 'A table topped with a weird looking sculpture covered inf lowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264489.jpg', 'caption': 'Two orange and yellow flowers decorate the ancient wood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264489.jpg', 'caption': 'A couple of flowers that are on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264489.jpg', 'caption': 'A small black round vase with a couple flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001393.jpg', 'caption': 'A green vase filed with red roses sitting on top of table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001393.jpg', 'caption': 'A bouquet of roses in a red walled road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001393.jpg', 'caption': 'a close up of a vase with flowers with a dark background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001393.jpg', 'caption': 'The flowers are inside a colorful green vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001393.jpg', 'caption': 'A green vase with several red roses in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103358.jpg', 'caption': 'Various bouquet of flowers in a vase outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103358.jpg', 'caption': 'Arrangement of flowers in foreground with garden behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103358.jpg', 'caption': 'A vase that has some white and some pink flowers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103358.jpg', 'caption': 'Daisies and other bright flowers are in the vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103358.jpg', 'caption': 'A bunch of flowers, in front of a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392004.jpg', 'caption': 'A teapot can be used a vase for fresh flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392004.jpg', 'caption': 'A coffee like mug is holding real flowers on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392004.jpg', 'caption': 'Fresh flowers and leaves in a porcelain jug', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392004.jpg', 'caption': 'A lot of flowers that are on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000392004.jpg', 'caption': 'A vase filled with purple flowers and green plants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396269.jpg', 'caption': 'A flower arrangement is standing on a table in a very ornately decorated area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396269.jpg', 'caption': 'Multi-color flowers in a pearl vase sitting on a table draped with a gold cloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396269.jpg', 'caption': 'A bouquet of flowers decorates a gilded room with a tapestry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396269.jpg', 'caption': 'A shiny, silver vase holds a colorful bouquet of flowers beside an elegant looking chair, in front of a floral print design, behind a gold colored rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396269.jpg', 'caption': 'A bouquet of flowers on a table next to a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116226.jpg', 'caption': 'a pair of yellow scissors a ladle and some oven mitts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116226.jpg', 'caption': 'An organization rack holds a ladle, some oven mitts, and a pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116226.jpg', 'caption': 'Some hooks that are holding hot pads, a ladle, and a pair of scissors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116226.jpg', 'caption': 'a couple of kitchen mitts are hanging up', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116226.jpg', 'caption': 'The kitchen supplies was hanging on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429754.jpg', 'caption': 'A pile of hair, scissors, razor, hand mirror and larger mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429754.jpg', 'caption': 'Someone has cut off their hair and left the evidence laying on the dresser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429754.jpg', 'caption': 'A pile of cut hair sitting next to a pair of scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429754.jpg', 'caption': 'a wooden table with a mirror and a mass of cut hair on white papers next to a pair of blue handled scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000429754.jpg', 'caption': 'A pile of fresh hair clippings sitting on a dresser top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038666.jpg', 'caption': \"A young boy holding a teddy bear by it's ears.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038666.jpg', 'caption': 'A child is holding up a large teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038666.jpg', 'caption': 'A young child holding a teddy bear around his friends. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038666.jpg', 'caption': 'A child with his teddy bear that is carrying a backpack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038666.jpg', 'caption': 'A boy plays with the ears of a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487002.jpg', 'caption': 'A teddy bear sitting on a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487002.jpg', 'caption': 'A teddy bear sitting at a desk in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487002.jpg', 'caption': 'A smiling brown and tan stuffed animal beside a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487002.jpg', 'caption': 'A brown teddy bear sits on a desk next to a computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487002.jpg', 'caption': 'The brown teddy bear is sitting on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295059.jpg', 'caption': 'Stuffed bears are gathered together in a display for christmas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295059.jpg', 'caption': 'A bunch of stuffed bears altogether during Christmas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295059.jpg', 'caption': 'Many teddy bears are displayed in front of the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295059.jpg', 'caption': 'a couple of Christmas trees with some bears next by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295059.jpg', 'caption': 'A Christmas decorated area with many teddy bears. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191054.jpg', 'caption': 'People are sitting at a counter in a busy restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191054.jpg', 'caption': 'Group of people sitting down in a countertop restaurant together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191054.jpg', 'caption': 'A busy diner serves many customers breakfast and drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191054.jpg', 'caption': 'A crowd of customers sitting inside of a diner as cooks prepare food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000191054.jpg', 'caption': 'Three chefs are behind the counter of a grill full of customers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020781.jpg', 'caption': 'A couple of young men standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020781.jpg', 'caption': 'Two young men sit at a kitchen bar covered with many things.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020781.jpg', 'caption': 'Two young men sitting at a cluttered counter together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020781.jpg', 'caption': 'One guy in a hat sits with arms folded while another checks his phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020781.jpg', 'caption': 'A couple of guys standing at a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166645.jpg', 'caption': 'a person standing next to a barrel of food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166645.jpg', 'caption': 'A woman standing near a cart with buckets of food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166645.jpg', 'caption': 'An old woman getting vegetables from a heavy loaded cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166645.jpg', 'caption': 'A woman is standing in front of a cart which has buckets of mash potatoes, onions, peas, and gravy. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166645.jpg', 'caption': 'A lady stand in front of buckets with various ingredients. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085481.jpg', 'caption': 'Naan bread, soup, and a drink are served on a cafeteria tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085481.jpg', 'caption': 'A tray with soup, drink and food on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085481.jpg', 'caption': 'a tray that has a bowl of soup, a sandwich, and a drink on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085481.jpg', 'caption': 'A red tray topped with pancakes next to a cup of soup and a can of soda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085481.jpg', 'caption': 'A bowl of soup with a drink and a plate of bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547041.jpg', 'caption': 'Two plastic containers have a soup and a salad in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547041.jpg', 'caption': 'Two containers, one with a salad, and another with some sort of other food in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547041.jpg', 'caption': 'Two containers with two different salads containing lettuce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547041.jpg', 'caption': 'The salad is ready to eat for lunch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547041.jpg', 'caption': 'A tray of salad and a tray of salad toppings to the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440562.jpg', 'caption': 'Several people sit around a table in front of a large window and many bowls are filled with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440562.jpg', 'caption': 'Three woman and a man all sitting together at a table enjoying a group meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440562.jpg', 'caption': 'People having lunch together at a table in a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440562.jpg', 'caption': 'A group of people are gathered around a tale of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440562.jpg', 'caption': 'A group of women are sitting at a table eating lunch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487375.jpg', 'caption': 'Smiling friends sharing a casual meal on a cool afternoon', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487375.jpg', 'caption': 'Two females sitting at a table in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487375.jpg', 'caption': 'Two women sitting at a table at a restaurant together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487375.jpg', 'caption': 'Two pretty young ladies sitting at a table together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487375.jpg', 'caption': 'Women at a lunch table with food and drinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160104.jpg', 'caption': 'A table with bread and cheese and plates and knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160104.jpg', 'caption': 'Friends sharing a bread and cheese snack at home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160104.jpg', 'caption': 'A wooden table with plates of food and bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160104.jpg', 'caption': 'A brown table has plates of food and drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160104.jpg', 'caption': 'there is a bowl of bread and a plate with spread on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134133.jpg', 'caption': 'A group of people sitting on top of a white blanket next to a bar of chocolate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134133.jpg', 'caption': 'A couple people sitting on the ground with various food items, including chocolate, between them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134133.jpg', 'caption': 'People sitting with camping gear and food with a chocolate bar in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134133.jpg', 'caption': 'people seated in a picnic setting with various types of food in the middle of them, including a chocolate bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134133.jpg', 'caption': 'Some food and other items sitting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420110.jpg', 'caption': 'two men in a kitchen making stuffed potatoes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420110.jpg', 'caption': 'A couple of men standing next to a table with food on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420110.jpg', 'caption': 'Two men stand at a kitchen island cooking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420110.jpg', 'caption': 'Two men preparing food in a kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420110.jpg', 'caption': 'Two men standing in a kitchen cooking food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204549.jpg', 'caption': 'Two people served steak , potatoes, and green beans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204549.jpg', 'caption': 'A close up of a steak, mushrooms, and some green beans. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204549.jpg', 'caption': 'A steak dinner with mushrooms, green beans and potatoes with a woman about to eat her own steak in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204549.jpg', 'caption': 'Two plates of steak, mushrooms, roasted potatoes and green beans.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000204549.jpg', 'caption': 'A woman with a plate of meat and potatoes eating dinner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057878.jpg', 'caption': 'a lady eating at a table holding up the peace sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057878.jpg', 'caption': 'A woman makes a peace sign in front of a fully set table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057878.jpg', 'caption': 'A lady sitting at a table with food and drink, holding up two fingers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057878.jpg', 'caption': 'A woman gives the peace sign at lunch with her friend', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057878.jpg', 'caption': 'A woman giving a peace sign at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067537.jpg', 'caption': 'A group of people sitting and standing around a pot of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067537.jpg', 'caption': 'A group of people sampling food at an outdoor event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067537.jpg', 'caption': 'people at an informal gathering eating under a tent', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067537.jpg', 'caption': 'A group of people have dinner together inside of a tent. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067537.jpg', 'caption': 'A large group of people eating under a tent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185686.jpg', 'caption': 'A group of men sitting around a table eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185686.jpg', 'caption': 'Men sitting at a table smiling while eating food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185686.jpg', 'caption': 'A group of people enjoying a pot-luck dinner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185686.jpg', 'caption': 'A person at a table with some food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185686.jpg', 'caption': 'Two men sampling chili and beer in a tent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003779.jpg', 'caption': 'A table topped with six glasses of booze.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003779.jpg', 'caption': 'THERE ARE A LOT OF WINE GLASSES ON THE TABLE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003779.jpg', 'caption': 'Several glasses of wine are presented on a red mat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003779.jpg', 'caption': 'A table is full of wine glasses that have some wine poured into them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000003779.jpg', 'caption': 'Several wine glasses placed on a glass table filled with different wines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171192.jpg', 'caption': 'A woman pouring glasses of wine sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171192.jpg', 'caption': 'A woman is filling up glasses with wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171192.jpg', 'caption': 'A woman is pouring a large amount a wine into glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171192.jpg', 'caption': 'A lady pours wine into a long line of glasses at a serving table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171192.jpg', 'caption': 'A woman pouring wine into glasses on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241832.jpg', 'caption': 'A man sitting at a table with a bunch of wine glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241832.jpg', 'caption': 'A table with many glasses of wine and a person sitting at table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241832.jpg', 'caption': 'The red wine on the bar intrigues the onlooking man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241832.jpg', 'caption': 'A man is sitting near three half full wine glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241832.jpg', 'caption': 'A close up of wine glasses filled with red wine. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557998.jpg', 'caption': 'A person sits at an outdoor bar with a piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557998.jpg', 'caption': 'A person sitting at a counter that has a bottle on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557998.jpg', 'caption': 'A boy looking at the camera while sitting at a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557998.jpg', 'caption': 'A young person seated at a wooden table with paper, a pen, and pineapple drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557998.jpg', 'caption': 'A person sitting with a pen and paper in front of them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396110.jpg', 'caption': 'People sitting at a bar looking at a map ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396110.jpg', 'caption': 'three guys standing at a bar looking at a menu ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396110.jpg', 'caption': 'Three men and a woman are at a table looking at a menu.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396110.jpg', 'caption': 'People looking at a menu at a bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396110.jpg', 'caption': 'A group of people sitting at a bar looking at a menu. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215867.jpg', 'caption': 'A man on a bicycle passing by a taxi.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215867.jpg', 'caption': ' a person riding a bicycle along a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215867.jpg', 'caption': 'A man on a bicycle pedaling down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215867.jpg', 'caption': 'A person riding a bike near a car and building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215867.jpg', 'caption': 'A man riding a bike past a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354929.jpg', 'caption': 'A group of people that are sitting on bikes in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354929.jpg', 'caption': 'Careful bicycle riders add florescents to their clothes for safety in the dark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354929.jpg', 'caption': 'some people driving down the road with their bikes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354929.jpg', 'caption': 'At night on a street with a group of a bicycle riders riding down the road together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354929.jpg', 'caption': 'A group of young bicyclists on a city street at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550273.jpg', 'caption': 'three people holding wine glasses in the air before them while seated at a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550273.jpg', 'caption': 'some people standing at a table holding onto bowls with desserts in them ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550273.jpg', 'caption': 'three people sitting at a table with drinks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550273.jpg', 'caption': 'Three people posing with sundaes in glass bowls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550273.jpg', 'caption': 'A man in a restaurant is smiling and holding two mugs with dessert in them while two men next to him are sticking out their tongues and one is holding up a spoon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236717.jpg', 'caption': 'A parked silver Nissan Titan four door pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236717.jpg', 'caption': 'A grey truck drives down a street with a solid yellow line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236717.jpg', 'caption': 'A silver truck driving down a road next to a center divider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236717.jpg', 'caption': 'A silver Nissan truck is parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236717.jpg', 'caption': 'The silver pick up truck is parked off to the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565085.jpg', 'caption': 'a couple of people are sitting on a wood bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565085.jpg', 'caption': 'Two men sitting on a street bench watching people walk by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565085.jpg', 'caption': 'Two old men sitting on a bench on the pathway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565085.jpg', 'caption': 'Two elderly men sitting on a bench on a busy sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565085.jpg', 'caption': 'Two older men are sitting on a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237568.jpg', 'caption': 'Person on a motorcycle coming up to a stop sign on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237568.jpg', 'caption': 'A motorcycle drives down a street near a couple of cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237568.jpg', 'caption': 'a person is riding a motorcycle and a few parked cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237568.jpg', 'caption': 'a person riding a bike on the street in traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000237568.jpg', 'caption': 'A street scene with a man on a motorcycle next to a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402514.jpg', 'caption': 'A picture of a man playing a violin in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402514.jpg', 'caption': 'A man is playing violin in his kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402514.jpg', 'caption': 'A man is playing a fiddle in his kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402514.jpg', 'caption': 'A man plays the violin in a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000402514.jpg', 'caption': 'An old man playing violin in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245462.jpg', 'caption': 'A man in a gray jacket standing in a kitchen next to a black dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245462.jpg', 'caption': 'The dog is looking at the man holding something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245462.jpg', 'caption': 'A man standing in a kitchen with a dog watching him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245462.jpg', 'caption': 'A man with food in his hand and a black dog sitting nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245462.jpg', 'caption': 'a man standing in a kitchen with a black dog staring at him ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556178.jpg', 'caption': 'A kitchen with a piano and an automatic dishwasher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556178.jpg', 'caption': 'A woman standing in a kitchen near a piano.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556178.jpg', 'caption': 'a piano next to a kitchen with a dishwasher and chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556178.jpg', 'caption': 'A piano is standing near several kitchen appliances. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556178.jpg', 'caption': 'A far away shot of a kitchen with a piano in the foreground ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254930.jpg', 'caption': 'A man holding two cups filled with dessert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254930.jpg', 'caption': 'A man in a restaurant holding ice cream sundaes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254930.jpg', 'caption': 'A man in blue shirt holding two bowls full of ice cream.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254930.jpg', 'caption': 'A man holding two desserts and making a face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254930.jpg', 'caption': 'a man holding two desserts in his hand near his mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218205.jpg', 'caption': 'A woman siting at a table in front of a coffee cup in a a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218205.jpg', 'caption': 'A woman sits at the kitchen table with a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218205.jpg', 'caption': 'A lady sits at a table surrounded by many objects.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218205.jpg', 'caption': 'A woman sitting at a kitchen table next to a mug and decorations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218205.jpg', 'caption': 'A woman sitting at a table with a coffee cup and a Halloween Decoration.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533166.jpg', 'caption': 'A modern kitchen with a fridge, island counter, hardwood floor, and deco ceiling artwork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533166.jpg', 'caption': 'A kitchen with lots of wooden cabinets and cupboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533166.jpg', 'caption': 'Modern kitchen with stainless steel appliances and hardwood flooring. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533166.jpg', 'caption': 'A kitchen with wooden cabinets and an ornate chadelier', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000533166.jpg', 'caption': 'A kitchen area with a counter, silver refrigerator and microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293964.jpg', 'caption': 'Cooks standing in a kitchen preparing food for a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293964.jpg', 'caption': 'A waiter talking to kitchen staff at a restaurant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293964.jpg', 'caption': 'A black and white image of a restaurant kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293964.jpg', 'caption': 'a kitchen area with plates and people with a dark background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293964.jpg', 'caption': 'A commercial kitchen bus line with men standing around it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092998.jpg', 'caption': 'The kitchen features a table in the middle of the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092998.jpg', 'caption': 'An empty kitchen with cook books propped up on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092998.jpg', 'caption': 'A kitchen with narrow paneling on the walls and cupboards and a dining table in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092998.jpg', 'caption': 'A kitchen table with chairs sticking out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092998.jpg', 'caption': 'A kitchen has a table and chairs, dishwasher, and stove in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470113.jpg', 'caption': 'Add you own paint or woodstain to these unfinished cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470113.jpg', 'caption': 'many brown cabinets and two stoves inside a warehouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470113.jpg', 'caption': 'A line of unfinished cabinents in a warehouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470113.jpg', 'caption': 'Uninstalled light wood cabinetry at an appliance store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470113.jpg', 'caption': 'a collection of light wood cabinets sit in a warehouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480015.jpg', 'caption': 'A desk with a book, computer and other electronic devices. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480015.jpg', 'caption': 'a desk with various electronic devices, including a pc', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480015.jpg', 'caption': 'A computer desk topped with a computer and a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480015.jpg', 'caption': 'Multiple electronics on a desk with a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000480015.jpg', 'caption': 'A desk with a phone, remote and computer keyboard and screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481113.jpg', 'caption': 'A man sleeping on a navy blue pillow with a TV monitor in place of his head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481113.jpg', 'caption': ' A young man sleeping on his side with some time of tv device over his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481113.jpg', 'caption': 'A young man seems to be laying on a blue pillow with an alarm on his head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481113.jpg', 'caption': 'A man with his head on pillow and small tv in front of his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000481113.jpg', 'caption': 'you can see a mans face in a small screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290868.jpg', 'caption': 'A grandmother standing next to a child in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290868.jpg', 'caption': 'An older woman is standing in the kitchen with a child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290868.jpg', 'caption': 'Baby trying to open wooden cabinets under the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290868.jpg', 'caption': 'The little girl is trying hard to open the cabinets', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000290868.jpg', 'caption': 'A woman and child stand in the kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217312.jpg', 'caption': 'two women stand on a train platform waiting to board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217312.jpg', 'caption': 'Two people with a Pullman bag wait on the platform for a commuter train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217312.jpg', 'caption': 'A woman with a suitcase and a woman with a purse wait for a train at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217312.jpg', 'caption': 'A beautiful young woman standing next to a red piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217312.jpg', 'caption': 'A couple of ladies standing with a luggage back waiting on a subway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562139.jpg', 'caption': 'A lighted kitchen looks shiny clean and nice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562139.jpg', 'caption': 'A kitchen that is very nice and clean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562139.jpg', 'caption': 'The kitchen has been cleaned by the owner of the house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562139.jpg', 'caption': 'This kitchen is small but has a nice stainless steel refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562139.jpg', 'caption': 'A kitchen scene complete with a refrigerator, sink and oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250311.jpg', 'caption': 'A kitchen counter with pots hanging above it and several objects in the corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250311.jpg', 'caption': 'A small kitchen shows hanging pots and pans above a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250311.jpg', 'caption': 'A kitchen with pots and pans hanging on the ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250311.jpg', 'caption': 'There is a small kitchen with pots hanging near the counters', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250311.jpg', 'caption': 'The interior of a kitchen with cookware hanging above a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318361.jpg', 'caption': 'a girl sitting at a kitchen table in a home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318361.jpg', 'caption': 'A little girl sitting at a dining room table in a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318361.jpg', 'caption': 'A child sits at her kitchen table at home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318361.jpg', 'caption': 'a small girl sitting at a round table next to a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318361.jpg', 'caption': 'Small child sits on a kitchen table in front of a kitchen. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296871.jpg', 'caption': 'a cat resting on the ground next to some beer bottles and a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296871.jpg', 'caption': 'A cat sitting in a closet looking out ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296871.jpg', 'caption': 'A smaller black cat is hiding under the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296871.jpg', 'caption': 'A black and white cat sitting between bottles and a furniture leg', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296871.jpg', 'caption': 'A cat us peeking out under a stool with bottles on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241318.jpg', 'caption': 'A group of women that are standing near each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241318.jpg', 'caption': 'Three women standing in a kitchen next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241318.jpg', 'caption': 'Three women who are standing in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241318.jpg', 'caption': 'A picture three woman standing together in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241318.jpg', 'caption': 'A young girl stands with two older women by a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322031.jpg', 'caption': 'A group of people looking at an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322031.jpg', 'caption': 'A family touching the trunk of an elephant ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322031.jpg', 'caption': 'A man is at a zoo touching an elephant trunk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322031.jpg', 'caption': 'Elephant and it trainer stand in front of a crowd of people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322031.jpg', 'caption': 'People pet an elephant at an outdoor zoo exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173340.jpg', 'caption': 'a female in a gray top is holding a cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173340.jpg', 'caption': 'A photo of a woman standing looking at her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173340.jpg', 'caption': 'A woman is standing in the kitchen using her phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173340.jpg', 'caption': 'A woman standing in a room with a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000173340.jpg', 'caption': 'a person in a kitchen with a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432125.jpg', 'caption': 'A stuffed toy sitting at a dining table with a frosted cake and cups.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432125.jpg', 'caption': 'Doll sitting in chair at the table in front of two wine glasses', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432125.jpg', 'caption': 'The table in the apartment is set for two to have cake, and a doll is seated in one chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432125.jpg', 'caption': 'A doll sitting at a table with plates on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000432125.jpg', 'caption': 'a stuffed doll sits at a set table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393814.jpg', 'caption': 'A white table topped with a laptop computer next to bowls of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393814.jpg', 'caption': 'A laptop next to a host of bowls with vegetables and a loaf of bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393814.jpg', 'caption': 'A small loaf of bread by some bowls of ingredients next to a laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393814.jpg', 'caption': 'A laptop and some food on a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000393814.jpg', 'caption': 'a table that has food and a laptop on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105177.jpg', 'caption': 'A simple white residential kitchen with breakfast bar', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105177.jpg', 'caption': 'a large pretty white kitchen with a lot of items on the tops', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105177.jpg', 'caption': 'A kitchen filled with clutter and appliances and a flight of stars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105177.jpg', 'caption': 'A small white kitchen with brown wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000105177.jpg', 'caption': 'A kitchen has been organized with many appliances.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567636.jpg', 'caption': 'A woman standing in a kitchen with her hands clasp together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567636.jpg', 'caption': 'An old woman in a kitchen clasping her hands and smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567636.jpg', 'caption': 'A woman is in a kitchen with her hands clasped.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567636.jpg', 'caption': 'a person standing in the kitchen near the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567636.jpg', 'caption': 'an old woman smiling in the corner of a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497002.jpg', 'caption': 'Two people are standing in a kitchen talking about a phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497002.jpg', 'caption': 'And older man and older woman look at each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497002.jpg', 'caption': 'Man and woman standing with man holding cell phone in kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497002.jpg', 'caption': 'a man and a woman and the man is holding a cellphone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497002.jpg', 'caption': 'A couple is talking in the kitchen with a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536369.jpg', 'caption': 'An old fashioned stove top oven with pots sitting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536369.jpg', 'caption': \"The old stove has three pots on it's burners. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536369.jpg', 'caption': 'A stove that has pots on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536369.jpg', 'caption': 'An old fashioned stove with some pots on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536369.jpg', 'caption': 'an old stove with some pots on top of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264628.jpg', 'caption': 'A sink sitting under a large bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264628.jpg', 'caption': 'a bathroom vanity and shower door with towels hanging on a towel rack', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264628.jpg', 'caption': 'A bright light in a clean fancy bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264628.jpg', 'caption': 'The view of a restroom vanity with a small round sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264628.jpg', 'caption': 'A bathroom with a sink, vanity and shower stall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188733.jpg', 'caption': 'A public bathroom with a white sink and sign regarding dirty hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188733.jpg', 'caption': 'items in a bathroom in a collection of pictures ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188733.jpg', 'caption': 'Split image showing views of bathroom and sanitation warning sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188733.jpg', 'caption': 'Multiple images of different areas of a public bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188733.jpg', 'caption': 'A compilation of pictures of old bathroom fixtures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419971.jpg', 'caption': \"This men's bathroom has two urinals and a sinks.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419971.jpg', 'caption': 'a public males restroom with two urinals that are based on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419971.jpg', 'caption': 'An empty restroom with two urinals and a sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419971.jpg', 'caption': 'A public bathroom with a sink and two urinals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419971.jpg', 'caption': 'The public rest rooms are clean and ready for customers to use. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538359.jpg', 'caption': 'A public bathroom sink and hand drying area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538359.jpg', 'caption': 'Two sinks side by side inside a clean public bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538359.jpg', 'caption': 'A view of two mirrors inside of a bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538359.jpg', 'caption': 'A clean store bathroom set of hand washing sinks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538359.jpg', 'caption': 'A public restroom with two sinks and a paper towel and soap dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241466.jpg', 'caption': 'Decorated elephant statue near many bicycles in racks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241466.jpg', 'caption': 'an elephant statue that is raring up and a lot of bicycles behind it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241466.jpg', 'caption': 'An elephant statue in front of a rack of bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241466.jpg', 'caption': 'A giant elephant statue standing next to a row of yellow bikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241466.jpg', 'caption': 'The statue of the elephant is next to the bikes in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214463.jpg', 'caption': 'A bathroom sink with toothbrush holder and soap dispenser', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214463.jpg', 'caption': 'a close up of a bathroom sink with soap and tooth brushes in a cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214463.jpg', 'caption': \"A sink that has a container for toothbrushes on it's edge.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214463.jpg', 'caption': 'A bathroom sink has soap and toothbrushes on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214463.jpg', 'caption': 'A bathroom sink with a soap dispenser and toothbrush holder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314986.jpg', 'caption': 'A black and white photo of a bicyclist.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314986.jpg', 'caption': 'BICYCLIST WITH WHITE HAT AND BACKPACK CROSSING THE STREET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314986.jpg', 'caption': 'A man riding a bike down a street next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314986.jpg', 'caption': 'A man with a helmet on rides a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314986.jpg', 'caption': 'A man riding his bicycle down a street in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469795.jpg', 'caption': 'A walk in shower next to a tub in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469795.jpg', 'caption': 'a white bathroom with a shower a tub a mirror and sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469795.jpg', 'caption': 'A wide shot of a bathroom with shower, sink, and bath.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469795.jpg', 'caption': 'A very large bathroom with a shower, bath and two sinks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469795.jpg', 'caption': 'A bathroom with a sink, standup shower and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158708.jpg', 'caption': 'A bike sitting next to a cup filled with coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158708.jpg', 'caption': 'Decorated coffee cup with spoon next to miniature bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158708.jpg', 'caption': 'a coffee cup with a spoon and a small bike next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158708.jpg', 'caption': 'A miniature bicycle that has been placed next to a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000158708.jpg', 'caption': 'There is a mug decorated with birds and clouds next to a black toy bicycle of about the same size.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564151.jpg', 'caption': 'A bathroom with a large white sink and a door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564151.jpg', 'caption': 'A bathroom has a bathtub with pipes above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564151.jpg', 'caption': 'a public male bathroom with a long white sink and tiled walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564151.jpg', 'caption': 'an image of a bathroom setting with a tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564151.jpg', 'caption': \"This is a large white sink located in the men's room.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580543.jpg', 'caption': 'Photo of bathroom with tank less toilet and beige and brown walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580543.jpg', 'caption': 'A small toilet area that is gracefully decorated.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580543.jpg', 'caption': 'A narrow bathroom has gold paint and a brown wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580543.jpg', 'caption': 'A small bathroom with just a toilet and pictures on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000580543.jpg', 'caption': 'A small bathroom with a tiled back wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092257.jpg', 'caption': 'The man on the toilet is reading the paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092257.jpg', 'caption': 'a young man sitting on the toilet and reading the newappaer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092257.jpg', 'caption': 'A man sitting on the toilet and reading a newspaper. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092257.jpg', 'caption': 'A young man sitting on the toilet reading a newspaper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092257.jpg', 'caption': 'A man reading a paper on a toilet, in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234733.jpg', 'caption': 'an unattached toilet in the middle of a room with red tiled floors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234733.jpg', 'caption': 'A toilet sits in the middle of a brick living area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234733.jpg', 'caption': 'An uninstalled toilet and an uninstalled bath tub in a room with a grill, table and sink cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234733.jpg', 'caption': 'a toilet on the ground outdoors near a bath tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234733.jpg', 'caption': 'A tiled outdoor area with toilet, grill and tub.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263961.jpg', 'caption': 'A bike leans on a wooden fence on a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263961.jpg', 'caption': 'A bike sitting in a field of wild flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263961.jpg', 'caption': 'A colorful photo of a bike against a fence with mountains in the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263961.jpg', 'caption': 'A bicycle sits in a meadow of yellow flowers next to a mountain view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000263961.jpg', 'caption': 'A bike parked by a railing in a field of flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473849.jpg', 'caption': 'A white tiled bathroom with black counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473849.jpg', 'caption': 'A bathroom with white walls and a small shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473849.jpg', 'caption': 'A bathroom with a sink, towels, and a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473849.jpg', 'caption': 'The bathroom has white tile walls and a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473849.jpg', 'caption': 'A white sink under a bathroom mirror on a bathroom counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192128.jpg', 'caption': 'A bus stopped on the side of the road while people board it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192128.jpg', 'caption': 'there is a bus that has a bike attached to the front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192128.jpg', 'caption': 'People getting on a bus in the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192128.jpg', 'caption': \"People standing next to a bus that's on the street. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000192128.jpg', 'caption': 'A city bus with a bicycle on the front makes a stop for people to board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377832.jpg', 'caption': 'A huge crowd is walking down one side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377832.jpg', 'caption': 'There is a large group of people on the road behind the police car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377832.jpg', 'caption': 'A street jam packed with cyclists being escorted', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377832.jpg', 'caption': 'a car leads a bunch of people down a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377832.jpg', 'caption': 'A cop car driving down a street with a crowd walking behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326564.jpg', 'caption': 'a washroom with a toilet basin, sink, sanitizers and bath tub', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326564.jpg', 'caption': 'a toilet a shower a tub a sink cabinets and a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326564.jpg', 'caption': 'A bathroom showing sink, toilet, and shower ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326564.jpg', 'caption': 'A white toilet sitting next to a bath tub in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326564.jpg', 'caption': 'A completely white bathroom with no shower curtain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187286.jpg', 'caption': 'an image of two bikers at a cross walk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187286.jpg', 'caption': 'The people on bikes are waiting to cross the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187286.jpg', 'caption': 'An Asian city with people wearing ventilation masks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187286.jpg', 'caption': 'Two people on bicycles waiting on a passing train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187286.jpg', 'caption': 'People stop in a city street to make way for a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403863.jpg', 'caption': 'A blue and white tooth brush sitting on a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403863.jpg', 'caption': 'A closeup of the bristles on a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403863.jpg', 'caption': 'A worn out toothbrush is blue and white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403863.jpg', 'caption': 'Close up of the over-used bristles of a tooth brush', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403863.jpg', 'caption': 'A worn, blue toothbrush sits upon a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032760.jpg', 'caption': 'A man on a bike looking at a line of semi-trucks in the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032760.jpg', 'caption': 'A person on a bike is standing next to tractor trailers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032760.jpg', 'caption': 'A MAN ON HIS BICYCLE ON THE ROAD WITH SEMI TRUCKS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032760.jpg', 'caption': 'Cyclist riding dressed for cold weather in down jacket and long pants next to shipping and receiving yard with 10-foot fence and line of delivery rigs under street lamps lit for evening.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032760.jpg', 'caption': 'A man on a bicycle is looking at a semi truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156754.jpg', 'caption': 'A small bathroom with a striped tile floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156754.jpg', 'caption': 'A quaint bathroom radiates in the morning light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156754.jpg', 'caption': 'A bathroom with white and brown for the colors', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156754.jpg', 'caption': 'A bathroom with a small vanity and a plaid rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000156754.jpg', 'caption': 'A bathroom with sink, toilet, and shower in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301634.jpg', 'caption': 'a group of vehicles parked next to a firehydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301634.jpg', 'caption': 'a couple of vehicles are parked in a lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301634.jpg', 'caption': 'A car is illegally parked near a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301634.jpg', 'caption': 'A truck traveling down the street near a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301634.jpg', 'caption': 'A truck driving on a crowded street past several parked cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179187.jpg', 'caption': 'A sign posted on the side of a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179187.jpg', 'caption': 'An empty freeway has very dark clouds overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179187.jpg', 'caption': 'two signs on a pole a car a street and some buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179187.jpg', 'caption': 'Black and white of highway with a gas pump sign and arrow on a pole and shopping buildings behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179187.jpg', 'caption': 'A long road surrounded by tall buildings and street signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185773.jpg', 'caption': 'a cat sitting in a sink with its eyes open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185773.jpg', 'caption': 'A black and whit cat sitting in a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185773.jpg', 'caption': 'a black cat that is sitting in a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185773.jpg', 'caption': 'The black and white cat is sitting in a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185773.jpg', 'caption': 'A small cute cat sitting in the bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189939.jpg', 'caption': 'A black and white cat sits in a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189939.jpg', 'caption': 'A black and white cat in a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189939.jpg', 'caption': 'A black and white cat is lounging in a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189939.jpg', 'caption': 'A black and white cat laying in the bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189939.jpg', 'caption': 'A black and white cat sitting in a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016977.jpg', 'caption': 'A car that seems to be parked illegally behind a legally parked car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016977.jpg', 'caption': 'two cars parked on the sidewalk on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016977.jpg', 'caption': 'City street with parked cars and a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016977.jpg', 'caption': 'Cars try to maneuver into parking spaces along a densely packed city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016977.jpg', 'caption': 'A couple of cars parked in a busy street sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489687.jpg', 'caption': 'A cat sitting on top of a a black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489687.jpg', 'caption': 'A cat is lying on the hood of a black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489687.jpg', 'caption': 'An orange cat laying on top of a black car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489687.jpg', 'caption': 'A white and tan cat laying on top of a black BMW', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000489687.jpg', 'caption': 'A cat sitting on top of a car and resting.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000396754.jpg', 'caption': 'Group of people riding horses on the side of the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396754.jpg', 'caption': 'A group of people riding on horses on a beach ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396754.jpg', 'caption': 'Four people riding horses next to the water on a beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396754.jpg', 'caption': 'A group of people on horses walk along the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487239.jpg', 'caption': 'people riding horseback on a mountain during a beautiful day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487239.jpg', 'caption': 'Three people riding horses and mules over rocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487239.jpg', 'caption': 'Two people riding horses on a rocky hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487239.jpg', 'caption': 'People are riding horses in a mountain landscape.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487239.jpg', 'caption': 'A group of people venturing out on a horseback ride.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185366.jpg', 'caption': 'Two horses standing behind fence with grassy leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185366.jpg', 'caption': 'Two ponies stand in a field on large leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185366.jpg', 'caption': 'Long haired horses are in a garden by a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185366.jpg', 'caption': 'Two ponies are standing among leaves and a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185366.jpg', 'caption': '2 ponies stand amongst many plants, behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464633.jpg', 'caption': 'A horse grazes while standing next to a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464633.jpg', 'caption': 'A horse grazes on a beautiful day, and brushes its tail in the wind', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464633.jpg', 'caption': 'The horse is eating the grass near the fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464633.jpg', 'caption': 'a large horse eating grass in front of a wooden fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464633.jpg', 'caption': 'A white horse grazing on grass near a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505739.jpg', 'caption': 'The man is driving the horse fast', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505739.jpg', 'caption': 'a man is riding in a horse drawn carriage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505739.jpg', 'caption': 'a man on a cart racing on a back of a horse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505739.jpg', 'caption': 'A black and white photo of a horse running on a track with a man being pulled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505739.jpg', 'caption': 'A man rides behind a horse during a race.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259814.jpg', 'caption': 'Four people on horses race inside an enclosed area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259814.jpg', 'caption': 'Horses racing on the turf by a white rail with the grand stand in the distance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259814.jpg', 'caption': 'Jockeys guide their racehorses along the rail of the race track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259814.jpg', 'caption': 'A group of men riding horses on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259814.jpg', 'caption': 'Several jockeys are riding horses on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523274.jpg', 'caption': 'Person wearing helmet and sunglasses sitting on a stationary horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523274.jpg', 'caption': 'A lady riding a horse and others horse standing next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523274.jpg', 'caption': 'A girl sitting on one horse talking to a lady.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523274.jpg', 'caption': 'A man riding on the back of a brown horse with dark brown hair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523274.jpg', 'caption': 'A person sitting on top of a horse ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242855.jpg', 'caption': 'Plate of food, including hot dog, ribs, beans, and corn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242855.jpg', 'caption': 'Several food items like meat and vegetables on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242855.jpg', 'caption': 'A plate of food on a dining room table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242855.jpg', 'caption': 'a bar-b-que meal with ribs, corn and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242855.jpg', 'caption': 'Meat and vegetables are sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412916.jpg', 'caption': 'A group of people standing on top of a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412916.jpg', 'caption': 'THERE IS A MAN THAT IS PLAYING MLB BASE BALL ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412916.jpg', 'caption': 'baseball players at a diamond waiting for the pitcher to pitch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412916.jpg', 'caption': 'A group of baseball players on the field during a game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412916.jpg', 'caption': 'A group of baseball players standing on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478212.jpg', 'caption': 'a couple of people skiing down a hill ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478212.jpg', 'caption': 'Two people in ski gear skiing down a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478212.jpg', 'caption': \"A person riding ski's down a snow covered hill.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478212.jpg', 'caption': 'Two people on skis on slope with trees next to them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478212.jpg', 'caption': 'Two people out skiing on the ski slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419350.jpg', 'caption': 'A fruit stand with many varieties of fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419350.jpg', 'caption': 'Fruit neatly displayed in bins and baskets at a stall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419350.jpg', 'caption': 'Oranges and other fruit on display at a fruit stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419350.jpg', 'caption': 'A fruit stand complete with apples, oranges and bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419350.jpg', 'caption': 'A fruit stand with a variety of fruit in boxes and hanging baskets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138054.jpg', 'caption': 'A baseball game is being played on a bright day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138054.jpg', 'caption': 'A baseball player holding out his gloved hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138054.jpg', 'caption': 'The Third Baseman opens his glove to catch the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138054.jpg', 'caption': 'An outfielder waiting to catch a ball on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000138054.jpg', 'caption': 'A group of baseball players playing a game of baseball in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523883.jpg', 'caption': 'A squash sits on top of three bananas to form a claw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523883.jpg', 'caption': 'there are three bananas with another fruit on top of it on the counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523883.jpg', 'caption': 'A butternut squash on top of three bananas on a counter top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523883.jpg', 'caption': 'Some type of fruit is placed on some bananas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523883.jpg', 'caption': 'A gourd that has been placed on three bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270815.jpg', 'caption': 'A baseball player wearing a leather glove standing in the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270815.jpg', 'caption': 'A man standing on a baseball field wearing a catchers mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270815.jpg', 'caption': 'A baseball player crouches down as he waits for the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270815.jpg', 'caption': 'Two men playing baseball on a baseball diamond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270815.jpg', 'caption': 'A male is playing baseball on a team.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166696.jpg', 'caption': 'Baseball team attempting to catch ball and tag player out.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166696.jpg', 'caption': 'Baseball players throw the ball back and forth to get the runner out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166696.jpg', 'caption': 'a couple of men running around a baseball field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166696.jpg', 'caption': 'Several men playing baseball try to keep the runner from scoring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000166696.jpg', 'caption': 'A basebakl player runs around the bases as a ball is thrown to a fielder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071682.jpg', 'caption': 'lemons and limes in baskets in the produce section', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071682.jpg', 'caption': 'Large grouping of yellow and green limes and lemons. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071682.jpg', 'caption': 'A display in a store filled with limes lemons and oranges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071682.jpg', 'caption': 'A LOT OF VEGETABLES AND FRUITS INT HE STAND', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071682.jpg', 'caption': 'Various citrus fruits are being sold in baskets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009395.jpg', 'caption': 'A pitcher getting ready to release a pitch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009395.jpg', 'caption': 'A baseball pitcher during a game abou tot throw the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009395.jpg', 'caption': 'a pitcher with a wide stance getting ready to throw a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009395.jpg', 'caption': 'a baseball player is on a green field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009395.jpg', 'caption': 'A man that is standing in the dirt with a glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458567.jpg', 'caption': 'A pile of green bananas sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458567.jpg', 'caption': 'A large number of bananas for sale on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458567.jpg', 'caption': 'A table covered in a colorful table cloth stacked with bananas for sale. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458567.jpg', 'caption': 'The bananas are being sold for cheap at a farmers market ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458567.jpg', 'caption': 'A table full of fresh green bananas for sale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462639.jpg', 'caption': 'A bunch of fruit that is sitting inside of a flower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462639.jpg', 'caption': 'A cluster of orange clumps sitting in a dead flower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462639.jpg', 'caption': 'A flower opening up to four buds inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462639.jpg', 'caption': 'A flower with four fruits put inside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462639.jpg', 'caption': 'THIS IS A PHOTO OF SOME SORT OF FRESH FRUIT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537297.jpg', 'caption': 'a woman stands with a small child ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537297.jpg', 'caption': 'The woman is talking to the girl with the baseball mitt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537297.jpg', 'caption': 'Two girls in red shirts playing in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537297.jpg', 'caption': 'A woman and child with a glove at the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537297.jpg', 'caption': 'A girl softball player talks with a woman in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409291.jpg', 'caption': 'A girl with a baseball glove is standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409291.jpg', 'caption': 'Adults and children in a green field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409291.jpg', 'caption': 'A little girl with a baseball glove next to an older woman', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409291.jpg', 'caption': 'a little girl has on a catchers mitt while a woman in the same red jersey as her walks by her on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409291.jpg', 'caption': 'The woman is wearing a t-shirt of the same color as the softball team.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185240.jpg', 'caption': 'Mom gives her daughter a lesson in using her baseball glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185240.jpg', 'caption': 'Mother and her son playing in a few', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185240.jpg', 'caption': 'two girls in red shirts grass and a baseball glove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185240.jpg', 'caption': 'A woman playing catch with her young child.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185240.jpg', 'caption': 'The mom is teaching her daughter to play baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334034.jpg', 'caption': 'A baseball player holding a bat during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334034.jpg', 'caption': 'People closely watching the action in a professional baseball game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334034.jpg', 'caption': 'A batter standing at plate ready to swing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334034.jpg', 'caption': 'A large crowd at a baseball stadium watches the game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334034.jpg', 'caption': 'A baseball batter is posed in a swinging position.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397729.jpg', 'caption': 'A young child swinging a baseball bat during a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397729.jpg', 'caption': 'The young player is in motion at the plate, astride and swinging at a pitch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397729.jpg', 'caption': 'A young baseball player swinging the bat to hit the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397729.jpg', 'caption': 'A child swinging a bat at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000397729.jpg', 'caption': 'A batter has attempted a hit while the catcher is ready.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466840.jpg', 'caption': 'Professional baseball game with bat swung and ball in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466840.jpg', 'caption': 'A baseball player tries to hit the ball during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466840.jpg', 'caption': 'some baseball players are playing baseball on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466840.jpg', 'caption': 'A group of baseball players playing a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466840.jpg', 'caption': 'A batter with the number 24 hitting the ball thrown by the pitcher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188534.jpg', 'caption': 'Assorted chinese food in a Styrofoam container on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188534.jpg', 'caption': 'A open tray of rice and vegetables on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188534.jpg', 'caption': 'A box of take-out food includes mixed vegetables, rice, and shrimp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188534.jpg', 'caption': 'TAKE OUT LUNCH OR DINNER IN A STYROFOAM CONTAINER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188534.jpg', 'caption': 'A takeaway lunch rests in a styrofoam box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318754.jpg', 'caption': 'A kid with a baseball glove in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318754.jpg', 'caption': 'A little boy is playing in a park with a baseball mitt. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318754.jpg', 'caption': 'The boy near the swingset is holding a baseball glove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318754.jpg', 'caption': 'Small boy standing in front of large playground for small children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318754.jpg', 'caption': 'A smiling child holding a baseball glove while two other children look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456236.jpg', 'caption': 'Some food that is laying on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456236.jpg', 'caption': 'A steak with sauce, brocolli and mashed potatoes on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456236.jpg', 'caption': 'A plate filled with steak, potatoes and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456236.jpg', 'caption': 'Plated meat and vegetables with sauce served on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456236.jpg', 'caption': 'Piece of cooked meat with mushrooms with a side of mashed potatoes and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086877.jpg', 'caption': 'An image stacked with much brilliant sustenance on plate.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086877.jpg', 'caption': 'A bunch of different cupcakes that are going into the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086877.jpg', 'caption': 'Freshly baked muffins are coming out of an oven. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086877.jpg', 'caption': 'A bunch of the same food in small dishes in the oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086877.jpg', 'caption': 'A tray of small pies in cruets on a tray in an oven. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383762.jpg', 'caption': 'A bunch of bananas hanging above somewhere on a ceiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383762.jpg', 'caption': 'Several bunches of hanging bananas in various stages of ripeness.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383762.jpg', 'caption': 'Several groups of bananas hanging out in the open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383762.jpg', 'caption': 'several bunches of ripe bananas int the front and green bananas behind them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383762.jpg', 'caption': 'A group of bananas hanging up to ripen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182775.jpg', 'caption': 'A blue plate topped with food next to a fork and knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182775.jpg', 'caption': 'A plate of meat and vegetables and a glass of wine on a wooden dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182775.jpg', 'caption': 'A dinner plate, knife and fork with carrots, potatoes and meat on the plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182775.jpg', 'caption': 'A plate of food and a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182775.jpg', 'caption': 'A plate of food sits next to a glass of wine, a knife, and a fork. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542933.jpg', 'caption': 'A baseball player holding a baseball bat at home base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542933.jpg', 'caption': 'A batter is about to bat in the wide open area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542933.jpg', 'caption': 'A baseball player swinging at a ball on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542933.jpg', 'caption': 'A baseball game is in action as a batter prepares to swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000542933.jpg', 'caption': 'A baseball player prepares to swing in front of spectators.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106736.jpg', 'caption': 'Blue plate holding a mound of chocolate deserts. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106736.jpg', 'caption': 'A bowl of cookies topped with multi-colored candies with candles placed in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106736.jpg', 'caption': 'Donuts on a plate with candles and decorations', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106736.jpg', 'caption': 'The plate has many small donuts with candles on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106736.jpg', 'caption': 'A number of frosted cookies with candles on a blue plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456725.jpg', 'caption': 'A man taking a swing at a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456725.jpg', 'caption': 'A guy up to bat getting ready to swing at the baseball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456725.jpg', 'caption': 'Two baseball players, one with bat and the other with gloves ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456725.jpg', 'caption': 'A vintage picture shows a man swinging a bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456725.jpg', 'caption': 'A man in a yellow uniform swinging a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473215.jpg', 'caption': 'A banana sundae sits in a dessert glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473215.jpg', 'caption': 'Two desserts, one a banana split sundae, sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473215.jpg', 'caption': 'A hot fudge sundae with a red cherry on top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473215.jpg', 'caption': 'The ice cream sundaes are in glasses on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473215.jpg', 'caption': 'On the table are a banana split, yet untouched, and another chocolate soda fountain treat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079992.jpg', 'caption': 'a basket with a few things of fruit in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079992.jpg', 'caption': 'A brown basket filled with fruits and coconuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079992.jpg', 'caption': 'A view of a few cocunuts in a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079992.jpg', 'caption': 'a basket with a bunch of fruit inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000079992.jpg', 'caption': 'A basket containing bananas and coconuts and greens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344875.jpg', 'caption': 'Crepes on a plate, topped with bananas and powdered sugar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344875.jpg', 'caption': 'A plate with food on it topped with banana slices. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344875.jpg', 'caption': 'Two crepes with bananas on top of them sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344875.jpg', 'caption': 'Bananas are on top of a dessert with sugar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344875.jpg', 'caption': 'The dessert has slices of banana and powdered sugar on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086001.jpg', 'caption': 'A batter is swinging his bat while a catcher squats behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086001.jpg', 'caption': 'A baseball player that just smacked the tar out of a pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086001.jpg', 'caption': 'A baseball player follows through after he makes a swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086001.jpg', 'caption': 'some baseball players a batter a catcher and some fans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086001.jpg', 'caption': 'A baseball player and a catcher at a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265472.jpg', 'caption': 'A couple pieces of bacon and banana on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265472.jpg', 'caption': 'A plate that consist of bacon, eggs, and french toast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265472.jpg', 'caption': 'Pancakes with bananas and bacon sit on an orange plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265472.jpg', 'caption': 'A plate of french toast, bananas, and bacon. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000265472.jpg', 'caption': 'French toast with bacon, bananas and syrup on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140151.jpg', 'caption': 'A pile of bananas for sale in a local market. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140151.jpg', 'caption': 'A store selling lots of ripe bananas and other produce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140151.jpg', 'caption': 'A merchant is selling fruit in a marketplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140151.jpg', 'caption': 'Bunches of bananas hang on a wall and arranged for sale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140151.jpg', 'caption': 'a market with so many ripe bananas and people buying', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045920.jpg', 'caption': 'A great picture of a person in the stillness motion.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045920.jpg', 'caption': ' A baseball player standing on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045920.jpg', 'caption': 'A baseball player standing in a field with his glove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045920.jpg', 'caption': 'A player is standing alone in a ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045920.jpg', 'caption': 'a baseball player standing in the outfield ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433044.jpg', 'caption': 'a close up of a plate of food with broccoli ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433044.jpg', 'caption': 'close up of chicken, broccoli and onions on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433044.jpg', 'caption': 'Chicken and broccoli stir-fry with a soy sauce glaze.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433044.jpg', 'caption': 'A bunch of different foods that are on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000433044.jpg', 'caption': 'A white plate topped with broccoli chicken covered in sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352533.jpg', 'caption': 'A black pan filled with mushrooms and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352533.jpg', 'caption': 'Vegetables and meat are cooking in the large wok.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352533.jpg', 'caption': 'A cooking wok that has stir fry cooking in it, consisting of broccoli, mushrooms and other food items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352533.jpg', 'caption': 'a wok type skillet with various vegetables in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352533.jpg', 'caption': 'A bowl full of broccoli and chicken stew.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196212.jpg', 'caption': 'A man flying through the air while riding skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196212.jpg', 'caption': 'A skier crosses her skies as she gets air during a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196212.jpg', 'caption': 'A person who is performing a trick on snow skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196212.jpg', 'caption': 'A man jumps in the air while skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196212.jpg', 'caption': 'A person in winter clothing, a helmet and skis, doing a trick i the air with jos skis crossed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559483.jpg', 'caption': 'A man holding a skateboard while wearing a yellow shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559483.jpg', 'caption': 'A snow covered mountain with more mountains in the background and people on top of the mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559483.jpg', 'caption': 'People are standing at the top of Mammoth Mountain. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559483.jpg', 'caption': 'A person wearing shorts examines skis on Mammoth Mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559483.jpg', 'caption': 'People stand around on a ski resort near the mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563153.jpg', 'caption': 'A half eaten piece of fruit sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563153.jpg', 'caption': 'It seems here something is really amazing with many things to see. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563153.jpg', 'caption': 'A knife and a piece of fruit sits on a gorge black table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563153.jpg', 'caption': 'An apple being peeled by a sharp knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563153.jpg', 'caption': 'A cut apple with a knife laying on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507536.jpg', 'caption': 'A plate filled with broccoli chicken and fried rice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507536.jpg', 'caption': 'There is chicken and broccoli, along with fried rice, on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507536.jpg', 'caption': 'A close up of rice and chicken with broccoli dinner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507536.jpg', 'caption': 'Beef and broccoli dinner with fried rice and brown sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507536.jpg', 'caption': 'A plate with asian quisine topped with rice and sauce', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038252.jpg', 'caption': 'A picture of an Apple computer with a black background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038252.jpg', 'caption': 'A gray laptop with an apple in the center of the lid sits on a dark surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038252.jpg', 'caption': 'The silver cover of an Apple laptop computer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038252.jpg', 'caption': 'Top of an apple laptop against a black background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038252.jpg', 'caption': 'A closed, white Apple laptop lies on a wrinkled surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376246.jpg', 'caption': 'Snowboarder in a red jacket moving near a row of trees. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376246.jpg', 'caption': 'A person on a snowboard in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376246.jpg', 'caption': 'A person riding a snowboard down a snow covered slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376246.jpg', 'caption': 'Four frames show a person riding on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376246.jpg', 'caption': 'A few different shots of a man on his ski board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312772.jpg', 'caption': 'A group of young people riding snow boards down a snow covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312772.jpg', 'caption': 'Three people are snowboarding down a snow covered mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312772.jpg', 'caption': 'A few snow boarders taking off down a snow covered hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312772.jpg', 'caption': 'A group of snowboarders coming down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312772.jpg', 'caption': 'some snow boarders in blue jackets snow and trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262609.jpg', 'caption': 'A man with a medical mask is crossing the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262609.jpg', 'caption': 'People are crossing a crosswalk while traffic waits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262609.jpg', 'caption': 'People crossing the street at an intersection near buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262609.jpg', 'caption': 'A big city with people and buildings with traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262609.jpg', 'caption': 'People are crossing the cross walk in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206859.jpg', 'caption': 'A man holding onto a bin full of lemons', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206859.jpg', 'caption': 'a man in a blue shirt and red hat and a crate of yellow apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206859.jpg', 'caption': 'A man carrying a plastic crate of apples.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206859.jpg', 'caption': 'A man holding a yellow crate filled with yellow apples', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206859.jpg', 'caption': 'A man carrying a yellow container filled with lemons.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110769.jpg', 'caption': 'A person in blue jacket falling on hill with a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110769.jpg', 'caption': 'the person is laying down with a snowboard on there foot ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110769.jpg', 'caption': 'A man is skiing in the snow and is on his back. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110769.jpg', 'caption': 'A man falls on the snow while skating on a snow covered mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000110769.jpg', 'caption': 'A snowboarder that has fallen down on the slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066190.jpg', 'caption': 'A young male skateboarder practicing a ramp stunt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066190.jpg', 'caption': 'A skateboarder performs a trick on a half pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066190.jpg', 'caption': 'A guy does a skate board trick while people watch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066190.jpg', 'caption': 'Hey kid that is doing a Bircher in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000066190.jpg', 'caption': 'GUY REACHING THE TOP OF RAMP ON A SKATEBOARD', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386204.jpg', 'caption': 'Woman with a backpack on sits on the curb moving her skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386204.jpg', 'caption': 'A woman sits on the curb with her feet on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386204.jpg', 'caption': 'A woman sitting on a curb with her feet on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386204.jpg', 'caption': 'A girl sitting on the ground with her feet on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386204.jpg', 'caption': 'a young female wearing shorts on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227772.jpg', 'caption': 'A skateboarder riding down the concrete handrail of stairs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227772.jpg', 'caption': 'A man at a show grinding a rail', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227772.jpg', 'caption': 'Skateboarder going down the side of Vrieling on top of his board. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227772.jpg', 'caption': 'A young man ridding a skateboard down the handrail of some steps as people watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227772.jpg', 'caption': 'skateboarder grinding down the retaining wall of a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177194.jpg', 'caption': 'a group of people riding skis on a snowy surface ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177194.jpg', 'caption': 'Three skiers are posing for a picture. One guy is in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177194.jpg', 'caption': 'Three skiers smile as they poses in the snow with ski poles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177194.jpg', 'caption': 'Three skiers wearing helmets pose for the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000177194.jpg', 'caption': 'A group of three people riding skis on top of snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552654.jpg', 'caption': 'A group of people playing with snowboards in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552654.jpg', 'caption': 'a man doing a trick with a snowboard that is just on one foot ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552654.jpg', 'caption': 'A man who is jumping up while in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552654.jpg', 'caption': 'A snowboarder does a trick in front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552654.jpg', 'caption': 'a snowboarder in a gray jacket is doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370399.jpg', 'caption': 'A group of green vegetables with some radishes and cauliflower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370399.jpg', 'caption': 'A collection of fresh vegetables sits in bowls on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370399.jpg', 'caption': 'A bowl of spinach, romaine lettuce, radishes, snap peas and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370399.jpg', 'caption': 'A grey table holding various vegetables and herbs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000370399.jpg', 'caption': 'Salad greens in white bowls surrounded by fresh veggies and herbs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010785.jpg', 'caption': 'A little girl with bows in her hair eating a plate full of broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010785.jpg', 'caption': 'A little girl bits into a piece of broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010785.jpg', 'caption': 'A girl with a red bow in her hair eats a piece of broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010785.jpg', 'caption': 'A young girl taking a bite of a piece of broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010785.jpg', 'caption': 'A little girl with a pink bow in her hair eating broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377359.jpg', 'caption': 'A plate of food that is on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377359.jpg', 'caption': 'A plate filled with food on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377359.jpg', 'caption': 'A blue and white plate with servings of food on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377359.jpg', 'caption': 'Ham and potatoes are in blue dishes on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377359.jpg', 'caption': 'some gainz for a meal with lots of meat and potatoes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108056.jpg', 'caption': 'A man riding a skateboard down a set of steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108056.jpg', 'caption': 'A boy skateboarding on the street with concrete structures behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108056.jpg', 'caption': 'A person on a skateboard rides on the pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108056.jpg', 'caption': 'A young man that is riding his skateboard on a sidewalk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000108056.jpg', 'caption': 'A man in a purple hat skateboards on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056326.jpg', 'caption': 'a food platter with white rice carrots and some pieces of pork', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056326.jpg', 'caption': 'A plate of food containing rice, meat, and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056326.jpg', 'caption': 'An oblong plate contains seafood, rice and carrot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056326.jpg', 'caption': 'Chicken with chies and red peppers, rice, carrots and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056326.jpg', 'caption': 'White rice with vegetables and meat on a white plate with silverware. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017755.jpg', 'caption': 'Small child in black outfit riding on the back of a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017755.jpg', 'caption': 'A young man riding on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017755.jpg', 'caption': 'A small child wears a helmet while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017755.jpg', 'caption': 'A young child wearing a helmet riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000017755.jpg', 'caption': 'a young child riding a skate board ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297260.jpg', 'caption': 'Sandwich and loaded french fries on a diner bar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297260.jpg', 'caption': 'A club sandwich with a pickle next to bacon and cheese fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297260.jpg', 'caption': 'A plate that has a sandwich and some fries on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297260.jpg', 'caption': 'a close up ofa plate with french fries ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000297260.jpg', 'caption': 'A fattening sandwich is stacked one half on top of the other next to a pile of greasy fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550815.jpg', 'caption': 'Large barrels of vegetables are in an open market.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550815.jpg', 'caption': 'Barrels of carrots, cabbages and asparagus in a market with people walking around. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550815.jpg', 'caption': 'A produce stand with barrels of vegetables including carrots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550815.jpg', 'caption': 'Huge barrels of vegetables with people near them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000550815.jpg', 'caption': 'Bushel baskets full of vegetables at a market as shoppers walk by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405365.jpg', 'caption': 'A person in a ski gear standing on a snowy mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405365.jpg', 'caption': 'A woman standing on a snowy hill on skis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405365.jpg', 'caption': 'a number of people riding skis on a snowy slope', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405365.jpg', 'caption': 'The people are all skiing around each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405365.jpg', 'caption': 'a person walking on skis on a snow bank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241880.jpg', 'caption': 'A person in snow gear skiing down a snowy slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241880.jpg', 'caption': 'A man riding skis down a snow covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241880.jpg', 'caption': 'A cross country skier on the snow with trees behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241880.jpg', 'caption': 'A man stands on skis on a snowy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241880.jpg', 'caption': 'A person who is in the snow skiing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573770.jpg', 'caption': 'Two people skiing down a snow covered hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573770.jpg', 'caption': 'People skiing down a gentle slope on a dark day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573770.jpg', 'caption': 'a couple of people on snow boards make their way through the snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573770.jpg', 'caption': 'two people snowboarding on a hill by some trees ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573770.jpg', 'caption': 'Two people who are on snow hill wearing snowboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206049.jpg', 'caption': 'Someone putting a fork into food sitting on a towel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206049.jpg', 'caption': 'A person with a fork poking holes into a baked cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206049.jpg', 'caption': 'A hand is sticking a fork into a custard looking dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206049.jpg', 'caption': 'A person holding a fork in a piece of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206049.jpg', 'caption': 'A person pierces the top of a cake with a fork', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391285.jpg', 'caption': 'A couple of men standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391285.jpg', 'caption': 'Black and white photograph of three snowboarders talking', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391285.jpg', 'caption': 'Some men with snowboards standing on a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391285.jpg', 'caption': 'Three snowboarders are standing on a snowy hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391285.jpg', 'caption': 'Three skiers are standing on a ski slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496090.jpg', 'caption': 'A man riding a skateboard down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496090.jpg', 'caption': 'this is a blurry picture of a person riding a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496090.jpg', 'caption': 'A BLURRED PHOTO OF SOMEONE MAYBE SKATE BOARDING', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496090.jpg', 'caption': 'A blurred photograph of a person skateboarding at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496090.jpg', 'caption': 'a blurry photo of a person riding a skate board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490701.jpg', 'caption': 'A dessert with vanilla ice cream and chocolate fudge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490701.jpg', 'caption': 'a plate of a chocolate cake besides a glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490701.jpg', 'caption': 'A dessert is pictured on a plate next to a beverage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490701.jpg', 'caption': 'there is a large plate of chocolate cake and icecream', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490701.jpg', 'caption': 'a desert on a plate on a table next to a glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190689.jpg', 'caption': 'A person doing a trick on a snowboard off of a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190689.jpg', 'caption': 'A snowboarder flying up in the air with the sun behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190689.jpg', 'caption': 'A person in the air on a snowboard doing a jumping trick and clouds covering the sun in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190689.jpg', 'caption': 'A artistic photo of a snowboarder jumping a mogul. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190689.jpg', 'caption': 'A person jumping over a hill on a snowboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240817.jpg', 'caption': \"A person that is on ski's standing in the snow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240817.jpg', 'caption': 'A young man riding skis through a snow covered forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240817.jpg', 'caption': 'a person walking along some path while wearing some skiis ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240817.jpg', 'caption': 'a person that is on some skiies in some snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240817.jpg', 'caption': 'A person cross country skiing on a winters day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098599.jpg', 'caption': 'a guy falling backwards during a jump on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098599.jpg', 'caption': 'A person doing a trick with a skateboard in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098599.jpg', 'caption': 'a person on a skate board doing a trick in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098599.jpg', 'caption': 'A black and white photo of a boy riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098599.jpg', 'caption': 'A man on a skateboard coming down from a jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064974.jpg', 'caption': 'A skateboarder flips his skateboard as he flies through the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064974.jpg', 'caption': 'He is in the air and his skateboard is also.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064974.jpg', 'caption': 'a person jumping a skate board in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064974.jpg', 'caption': 'A man performs a high flying maneuver on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064974.jpg', 'caption': 'The man is practicing his tricks on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357418.jpg', 'caption': 'A white container filled with rice, meat and veggies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357418.jpg', 'caption': 'A rice, meat and vegetables in a paper container', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357418.jpg', 'caption': 'Rice, meat and vegetables inside a plastic container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357418.jpg', 'caption': 'there is a white bowl with rice and meat in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357418.jpg', 'caption': 'A tray with white rice, pork, and steamed broccoli, cauliflower and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365663.jpg', 'caption': 'A young man riding his skateboard on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365663.jpg', 'caption': 'A man in a blue and white check shirt doing tricks on a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365663.jpg', 'caption': 'A man skating a ramp at a competition.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365663.jpg', 'caption': 'A skateboarder doing a trick in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365663.jpg', 'caption': 'A man skateboarding on a half pipe in front of judges.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462324.jpg', 'caption': 'a male skateboarder in a white shirt is doing a trick', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462324.jpg', 'caption': 'A man rides a skateboard down a thin rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462324.jpg', 'caption': 'Someone riding their skateboard at the skate park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462324.jpg', 'caption': 'The young skateboarder is balancing on the pink wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000462324.jpg', 'caption': 'A man on a skateboard near a ramp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083682.jpg', 'caption': 'a person riding a snowboard down a hill ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083682.jpg', 'caption': 'a group of people snow boarding down a slope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083682.jpg', 'caption': 'There are two people snowboarding in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083682.jpg', 'caption': 'A woman carving snow on her snow board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000083682.jpg', 'caption': 'Snow boarders going down a snowy slope during a snow storm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213881.jpg', 'caption': 'A large raw carrot and cut up garlic on a cutting board with a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213881.jpg', 'caption': 'A large thick carrot sits beside tiny chopped onions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213881.jpg', 'caption': 'A carrot and some onion next to a knife on a cutting board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213881.jpg', 'caption': 'A chopping board that has a carrot and a knife on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213881.jpg', 'caption': 'A carrot sitting on a cutting board next to a knife.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513292.jpg', 'caption': 'A little boy carrying a skateboard that is the same size as he is.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513292.jpg', 'caption': 'Child is carrying a skateboard on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513292.jpg', 'caption': 'a boy wearing red is carrying a large skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513292.jpg', 'caption': 'Small child holding up a skateboard as big as him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513292.jpg', 'caption': 'A child is carrying a skateboard on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515444.jpg', 'caption': 'A man eating a hotdog in a crowded stadium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515444.jpg', 'caption': 'A man eating a hot dog in a large group of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515444.jpg', 'caption': 'Man eating a hotdog at a crowded event with lots of other people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515444.jpg', 'caption': 'A man wearing a hat eating a hotdog at a sporting event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515444.jpg', 'caption': 'A man sitting in a stadium eating a hot dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394079.jpg', 'caption': 'two sandwiches with marinara sauce and vegetables on a long white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394079.jpg', 'caption': 'Some large sandwiches and a bowl of carbs are placed on the large plate as someone looks on. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394079.jpg', 'caption': 'Bread smothered in cheese and onions sits on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394079.jpg', 'caption': 'A plate with two sandwiches and a side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000394079.jpg', 'caption': 'Several food items are sitting on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011537.jpg', 'caption': 'A hot dog on a bun with pickles and tomatoes is displayed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011537.jpg', 'caption': 'A hot dog packed with toppings sits in front of the bag from the hot dog shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011537.jpg', 'caption': 'a hot dog in a bun with pickles on it laying next to a bag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011537.jpg', 'caption': 'a hot dog with green peppers and tomatoes on a bun', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000011537.jpg', 'caption': 'A hotdog with jalepenos, ketchup, and a pickle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215565.jpg', 'caption': 'A hotdog wrapped in tinfoil, with toppings all over it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215565.jpg', 'caption': 'a hot dog some white topping tinfoil and a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215565.jpg', 'caption': 'A hot dog covered in sour kraut in tin foil. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215565.jpg', 'caption': 'A hotdog with onions on it is sitting on tinfoil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215565.jpg', 'caption': 'A hot dog smothered in sauerkraut on aluminum foil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274240.jpg', 'caption': 'A young man is about to ride the ramp on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274240.jpg', 'caption': 'a young boy wearing a helmet and skate boarding in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274240.jpg', 'caption': 'A skateboarder crests at the top of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274240.jpg', 'caption': 'A guy on a skate board on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274240.jpg', 'caption': 'A boy performing tricks on a ramp with his skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155192.jpg', 'caption': 'A man riding a skateboard up the side of a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155192.jpg', 'caption': 'A young man skateboarding on a an outside ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155192.jpg', 'caption': 'A person on a skateboard is riding on a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155192.jpg', 'caption': 'Boy on skate board going up a ramp about to turn around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155192.jpg', 'caption': 'A man on a skate board at the top of a pike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238065.jpg', 'caption': 'A guy on a skateboard performs a trick on a half pipe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238065.jpg', 'caption': 'A young man riding a skateboard up a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238065.jpg', 'caption': 'Man riding his skateboard down a ramp way.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238065.jpg', 'caption': 'A young man rides his skateboard up a ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238065.jpg', 'caption': 'Helmeted boy skateboarding on a half pipe ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010023.jpg', 'caption': 'The young man is practicing his tricks on his skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010023.jpg', 'caption': 'there is a male skateboarder doing tricks in the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010023.jpg', 'caption': 'A young man jumps into the air while his skateboard twirls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010023.jpg', 'caption': 'A skateboarder is airborne in front of a corrugated door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000010023.jpg', 'caption': 'A skaterboader flipping his skateboard in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091545.jpg', 'caption': 'A man with hoodie skateboarding on a lonely road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091545.jpg', 'caption': 'A man is skateboarding down a paved path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091545.jpg', 'caption': 'A young man rides a skateboard down a paved path as the sun sets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091545.jpg', 'caption': 'A young man warmly dressed rides a skateboard at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000091545.jpg', 'caption': 'The boy rides his skateboard down the paved path into a blurry background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313169.jpg', 'caption': 'A man does a jump on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313169.jpg', 'caption': 'a boy is performing a skateboard trick in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313169.jpg', 'caption': 'A skateboarder is in mid air with arms outstretched.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313169.jpg', 'caption': 'A man on a skateboard looks down while in midair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313169.jpg', 'caption': 'A skate boarder takes flight on a high jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015826.jpg', 'caption': 'Kids enjoying the skateboard park on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015826.jpg', 'caption': 'Young men riding their skate boards in a public skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015826.jpg', 'caption': 'Teenagers riding their skateboards at a skate park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015826.jpg', 'caption': 'The boys are outside doing skate boarding tricks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000015826.jpg', 'caption': 'A group of people doing tricks on skateboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454457.jpg', 'caption': 'The skateboarder makes a jump above a rail and stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454457.jpg', 'caption': 'A man riding a skateboard over some steps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454457.jpg', 'caption': 'A person does a skateboard trick in the air', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454457.jpg', 'caption': 'A young man skateboarding over a set of cement steps. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000454457.jpg', 'caption': 'A person jumping over a set of stairs with a skateboard. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202444.jpg', 'caption': 'Skateboarder performing trick on cement with audience in daylight', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202444.jpg', 'caption': 'A young man skateboarding on a ramp with three other boys watching him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202444.jpg', 'caption': 'The boy is playing on a skateboard ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202444.jpg', 'caption': 'Young man at the peak of a stunt on a skateboard structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202444.jpg', 'caption': 'a man that is skateboarding on a big ramp', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527631.jpg', 'caption': 'A cut in half sandwich and fries on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527631.jpg', 'caption': 'A beef sandwich is cut in half next to fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527631.jpg', 'caption': 'A toasted sandwich and fries on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527631.jpg', 'caption': 'There is a sandwich cut in half on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527631.jpg', 'caption': 'A sandwich cut in half and an order of fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519460.jpg', 'caption': 'a plate with a sandwich, salad, and some soup sitting on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519460.jpg', 'caption': 'A sandwich and salad on a plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519460.jpg', 'caption': 'A white plate sitting on top of a wooden table topped with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519460.jpg', 'caption': 'A plate filled with food sits on the table with empty dishes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519460.jpg', 'caption': 'A restaurant prepared sandwich with a side of soup and a garden salad.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271215.jpg', 'caption': 'a close up of a hot dog on a plate near french fries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271215.jpg', 'caption': 'Hot dog with ketchup on a bin with french fries.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271215.jpg', 'caption': 'a plate with a hot dog and some fries on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271215.jpg', 'caption': 'a hot dog in a bun with ketchup on a plate with french fries', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271215.jpg', 'caption': 'A hotdog topped with ketchup with fries and a side of fresh fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329318.jpg', 'caption': 'A person jumping over a skateboard while doing a trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329318.jpg', 'caption': 'A guy is performing a trick on a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329318.jpg', 'caption': 'a man that is skateboard on some concrete', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329318.jpg', 'caption': 'A guy is poised mid-air doing a skateboard trick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000329318.jpg', 'caption': 'A boy is doing a skateboard trick outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540614.jpg', 'caption': 'A man flying through the air while riding a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540614.jpg', 'caption': 'a man doing a jump in the air with a skateboard ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540614.jpg', 'caption': 'A person jumping on a skateboard with a high-rise and trees behind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540614.jpg', 'caption': 'a person in the air while on a skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000540614.jpg', 'caption': 'Shirtless man in air doing trick on skateboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259087.jpg', 'caption': 'A crab cake on a sandwich with dressing and tomatoes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259087.jpg', 'caption': 'A tray of food has sliced tomatoes on a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259087.jpg', 'caption': 'A plate of food and a bottle on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259087.jpg', 'caption': 'A hamburger on a bun sitting on top of a paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000259087.jpg', 'caption': 'a patty on a bed of lettuce with tomatoes and fruit an a bottle of drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085045.jpg', 'caption': 'A hand holding a sandwich wrapped in black and white checkered wrapping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085045.jpg', 'caption': 'A hand holding a sandwich wrapped in paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085045.jpg', 'caption': 'Someone holding a very large sub rapped in checkerboard paper.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000045136.jpg', 'caption': 'A tennis player is holding his tennis racquet up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045136.jpg', 'caption': 'A male tennis player dressed in white, playing tennis on a grass surface tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045136.jpg', 'caption': 'A man with his tennis racket is on the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045136.jpg', 'caption': 'A man holding a tennis racquet on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000045136.jpg', 'caption': 'The man is playing a game of tennis on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381032.jpg', 'caption': 'A player runs for the ball during a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381032.jpg', 'caption': 'A woman reaching with her tennis racquet on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381032.jpg', 'caption': 'A woman standing on a tennis court with a racket in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381032.jpg', 'caption': 'A lady wearing white sneakers playing tennis on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381032.jpg', 'caption': 'A woman vigorously plays tennis by running off the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356414.jpg', 'caption': 'The tennis player is ready to return the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356414.jpg', 'caption': 'a tennis player getting ready to hit the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356414.jpg', 'caption': 'A person on a tennis court swinging to hit a tennis ball, with a crowd looking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356414.jpg', 'caption': 'The woman is swinging a tennis racket at an approaching ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356414.jpg', 'caption': 'A tennis player wearing an orange skirt holds her racket back as a yellow ball is in the air near her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213905.jpg', 'caption': 'Two women walking on top of a tennis court holding tennis racquets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213905.jpg', 'caption': 'two women tennis players are talking on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213905.jpg', 'caption': 'Two women tennis players are talking in front of a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213905.jpg', 'caption': 'Two women walking on a tennis court holding tennis rackets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213905.jpg', 'caption': 'Two women with tennis rackets talk while fans watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313372.jpg', 'caption': 'a couple of people play a game of tennis on a grass surface ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313372.jpg', 'caption': 'people playing tennis ball and others watching the game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313372.jpg', 'caption': 'Two people in the midst of a tennis match on a grass court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313372.jpg', 'caption': 'a man is playing tennis with another guy and is swinging the racket\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313372.jpg', 'caption': 'Two men playing tennis on a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153130.jpg', 'caption': 'a woman hitting a tennis ball with her racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153130.jpg', 'caption': 'A woman hitting a tennis ball with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153130.jpg', 'caption': 'An athletic woman is playing tennis near a sport official.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153130.jpg', 'caption': 'A WOMAN PLAYING A SHOT IN A GAME OF TENNIS.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153130.jpg', 'caption': 'A woman taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567276.jpg', 'caption': 'A lady posed to hit a tennis ball on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567276.jpg', 'caption': 'A tennis game being played on a clay court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567276.jpg', 'caption': 'A girl hitting a tennis ball during a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567276.jpg', 'caption': 'A woman playing tennis on a clay court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567276.jpg', 'caption': 'A woman hitting a tennis ball on the court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536467.jpg', 'caption': 'A view of a a pizza sitting on a table, with a person taking it off the tray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536467.jpg', 'caption': 'A person grabbing a piece of pizza from a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536467.jpg', 'caption': 'a trey with some pizza sitting inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536467.jpg', 'caption': 'Someone is getting a slice of the pizza that is half eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000536467.jpg', 'caption': 'some pizza is laying on a black pan', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412440.jpg', 'caption': 'A piece of pizza sitting on top of a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412440.jpg', 'caption': 'A person is holding up a slice of pizza as others visit a trolley shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412440.jpg', 'caption': 'A person that is holding a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412440.jpg', 'caption': 'A piece of pizza on a paper plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000412440.jpg', 'caption': 'The person hold up the piece of pizza on the plate while on a busy road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295656.jpg', 'caption': 'A beautiful woman standing next to two men with a beautiful blonde woman behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295656.jpg', 'caption': 'A smiling group of dressed up people are eating pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295656.jpg', 'caption': 'some people standing together while eating and holding some pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295656.jpg', 'caption': 'A couple of people eating a slice of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295656.jpg', 'caption': 'A group of people dressed up while eating pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401860.jpg', 'caption': 'Vegetable and cheese slice of pizza on white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401860.jpg', 'caption': 'A large slice of pizza sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401860.jpg', 'caption': 'a piece of pizza sitting on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401860.jpg', 'caption': 'A white piece of pizza served on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000401860.jpg', 'caption': 'A slice of pizza that does not have red sauce is on a white plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395665.jpg', 'caption': 'A tennis player gets prepared to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395665.jpg', 'caption': 'A fit young woman sees the tennis ball right in front of her, as she stands poised to swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395665.jpg', 'caption': 'A woman gets ready to hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395665.jpg', 'caption': 'A female tennis player is trying to hit the ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395665.jpg', 'caption': 'A woman tennis player is outstretched on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154090.jpg', 'caption': 'A woman is playing tennis on a brown dirt court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154090.jpg', 'caption': 'A tennis playing woman swinging to hit a tennis ball on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154090.jpg', 'caption': 'A lady is holding her arm forward for precision on a tennis swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154090.jpg', 'caption': 'A lady is trying to keep the Tennis ball moving. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154090.jpg', 'caption': 'a woman getting ready to hit a tennis with her racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325831.jpg', 'caption': 'A woman sharing a meal of cheese pizza with a friend at a cafe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325831.jpg', 'caption': 'A slice of cheese pizza laying on a paper plate at a restaurant and a woman eating a slice of pizza on a blue tray in front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325831.jpg', 'caption': 'A woman sitting in a restaurant with a slice of pizza in her hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325831.jpg', 'caption': 'A tray with a piece of pizza on it while a woman sits across the table eating. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325831.jpg', 'caption': 'a table that has a very large piece of pizza on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052664.jpg', 'caption': 'A fresh homemade pizza sitting on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052664.jpg', 'caption': 'A pizza topped with tomatoes sits atop a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052664.jpg', 'caption': 'A pizza covered in cheese and tomatoes with basil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052664.jpg', 'caption': 'Pizza made with spice and tomatoes on wooden pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052664.jpg', 'caption': 'A large uneaten pizza topped with tomatoes and basil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249884.jpg', 'caption': 'Flatbread pizzas baking over an open flame on a grill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249884.jpg', 'caption': 'Homemade pizzas with multiple vegetables cooking on a BBQ grill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249884.jpg', 'caption': 'a couple of pizzas sit on a grill ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249884.jpg', 'caption': 'Two very large pizzas sitting on top of a BBQ grill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249884.jpg', 'caption': 'Two pizzas being cooked on top of an outdoor grill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032039.jpg', 'caption': 'a flat bread pizza topped with vegetables on a grill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032039.jpg', 'caption': 'A pizza on bread with vegetables grilling on a grill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032039.jpg', 'caption': 'A grill with a pizza with peppers on the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032039.jpg', 'caption': 'A vegetable pizza is being cooked on a grill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032039.jpg', 'caption': 'a close up of a pizza being cooked on a grill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490842.jpg', 'caption': 'a half eaten pizza on a tray ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490842.jpg', 'caption': 'half of the thin crust pizza has been eaten by the diner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490842.jpg', 'caption': 'a half of cut cheese pizza on a silver tray ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490842.jpg', 'caption': 'A half eaten pizza is on a pizza pan. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490842.jpg', 'caption': 'A metal tray holding a pizza covered in cheese.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486770.jpg', 'caption': 'people gathered around a table getting slices of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486770.jpg', 'caption': 'A group of gentlemen are eating from several boxes of pizzas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486770.jpg', 'caption': 'Men serve themselves pizza out of boxes laid out on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486770.jpg', 'caption': 'Diners help themselves to slices of pizza, served buffet style.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486770.jpg', 'caption': 'Several people grabbing pizza from several pizza boxes on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155189.jpg', 'caption': 'A man standing on a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155189.jpg', 'caption': 'A man hitting a tennis ball with his racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155189.jpg', 'caption': 'A man in a red shirt hitting a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155189.jpg', 'caption': 'A man on a tennis court holding a racket playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155189.jpg', 'caption': 'A man hitting a tennis ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285844.jpg', 'caption': 'A man standing on top of a tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285844.jpg', 'caption': 'Tennis player in red shirt and white shorts serves ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285844.jpg', 'caption': 'A tennis player in action on the court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285844.jpg', 'caption': 'A man is playing tennis and watching the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285844.jpg', 'caption': 'I tennis player in a red shirt just served the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203878.jpg', 'caption': 'a tennis player wearing red and white swinging at the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203878.jpg', 'caption': 'A young man swinging a tennis racquet at a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203878.jpg', 'caption': 'The man has a tennis racket in his hand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203878.jpg', 'caption': 'a man with a racket hits a tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203878.jpg', 'caption': 'A tennis player is hitting the ball with his racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460866.jpg', 'caption': 'A table topped with a cup full of toothbrushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460866.jpg', 'caption': 'A bunch of toothbrushes in a cup on a bathroom sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460866.jpg', 'caption': 'Several different toothbrushes sitting in a cup beside toothpaste.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460866.jpg', 'caption': 'A closeup of a container with a bunch of toothbrushes', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460866.jpg', 'caption': 'A cup that is holding several toothbrushes in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552564.jpg', 'caption': 'People with a camera have toothbrushes in their mouths.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552564.jpg', 'caption': 'Two punks brush their teeth in a mirror while taking a selfie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552564.jpg', 'caption': 'Two hipsters standing next to each other in front of a bathroom mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552564.jpg', 'caption': 'Couple with odd expressions with object in their mouths possibly toothbrushes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552564.jpg', 'caption': 'Man woman in their bathroom brushing their teeth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483130.jpg', 'caption': 'The dog standing by the table is really skinny.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483130.jpg', 'caption': 'A simple and vintage inspired living room and sitting area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483130.jpg', 'caption': 'The living room has two chairs and a table with a typewriter on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483130.jpg', 'caption': 'A living room with furniture on top of a hard wood floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483130.jpg', 'caption': 'A nice looking living room with some nice chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410583.jpg', 'caption': 'Oriental woman preparing to put a toothbrush into her mouth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410583.jpg', 'caption': 'An Asian woman wearing a black top uses an electric toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410583.jpg', 'caption': 'The woman is brushing her teeth with a round brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410583.jpg', 'caption': 'A woman brushing her teeth with a electric toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410583.jpg', 'caption': 'a lady is about to put an automatic tooth brush in her mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469202.jpg', 'caption': 'A bald man in a bathroom brushing his teeth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469202.jpg', 'caption': 'A man brushing his teeth while standing next to a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469202.jpg', 'caption': 'an old man brushing his teeth in his house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469202.jpg', 'caption': 'A man is brushing his teeth near a window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469202.jpg', 'caption': 'a nude man brushing his teeth with the window shades open', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207507.jpg', 'caption': 'Two cellphones have cute homemade cellphone covers. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207507.jpg', 'caption': 'Some cartoon character phones are featured in this photo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207507.jpg', 'caption': 'Sesame Street themed nintendo wiimote covers and a Nintendo DS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207507.jpg', 'caption': 'THERE ARE TELEPHONES THAT ARE ON DISPLAY ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000207507.jpg', 'caption': 'Two Wii motes are decorated to look more like Sesame Street Characters. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387079.jpg', 'caption': 'A group of young women playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387079.jpg', 'caption': 'Two teams of female soccer players are vying for the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387079.jpg', 'caption': 'Young people are in action playing soccer on grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387079.jpg', 'caption': 'Soccer players head butt the ball during a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387079.jpg', 'caption': 'Two girls soccer teams are playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071360.jpg', 'caption': 'A chubby toddler is chewing on a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071360.jpg', 'caption': 'A teary eyed baby is holding a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071360.jpg', 'caption': 'A baby boy brushing his teeth with a tooth brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071360.jpg', 'caption': 'A very young child chewing on a toothbrush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071360.jpg', 'caption': 'A baby sitting chewing on a toothbrush to soothe his gumns', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547137.jpg', 'caption': 'A baby girl brushing her teeth in a bathroom sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547137.jpg', 'caption': 'A girl brushing her teeth at the bathroom sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547137.jpg', 'caption': 'A young girl is brushing her teeth in a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547137.jpg', 'caption': 'A toddler in the bathroom with a toothbrush in her mouth. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000547137.jpg', 'caption': 'A little girl with a toothbrush in her mouth bending over a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037660.jpg', 'caption': 'A substance on a pair of q-tips in a persons hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037660.jpg', 'caption': 'a close up of a person holding a pair of cotton swab', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037660.jpg', 'caption': 'Some one holding two Q-tips with some type of cream on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037660.jpg', 'caption': 'a person is holding a couple of q-tips ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037660.jpg', 'caption': 'Two white q-tips with cream on the tip', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140661.jpg', 'caption': 'A living room next to a kitchen and a dinning room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140661.jpg', 'caption': 'Interior view of a kitchen with a small bar area, wood floors and stairs to an upstairs area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140661.jpg', 'caption': 'an open concept of a living room and kitchen combined', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140661.jpg', 'caption': 'a kitchen with a stove a counter and cupboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140661.jpg', 'caption': 'There is a huge room with furniture and things inside.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032944.jpg', 'caption': 'An older man standing next to a woman.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032944.jpg', 'caption': 'an older man and woman are holding their controllers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032944.jpg', 'caption': 'A man and a woman holding remote controllers in front of a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032944.jpg', 'caption': 'A couple of people standing with remotes controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032944.jpg', 'caption': 'A man and woman holding Nintendo Wii controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405183.jpg', 'caption': 'A young girl with a nice booty standing in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405183.jpg', 'caption': '4 PEOPLE IN A ROOM, THREE SITTING AND ONE STANDING ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405183.jpg', 'caption': 'A person stands up to play wii while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405183.jpg', 'caption': 'a person playing nintendo wii while people watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405183.jpg', 'caption': 'People watching TV while the one standing is operating the remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490022.jpg', 'caption': 'Two kids on a couch playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490022.jpg', 'caption': 'A couple of people with remotes on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490022.jpg', 'caption': 'Two men sitting on a couch are playing a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490022.jpg', 'caption': 'A group of people in chairs with two young men playing video games.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000490022.jpg', 'caption': 'Two men playing Wii with other people behind them on computers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515821.jpg', 'caption': 'Two boys play Wii while seated on a couch in a crowded room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515821.jpg', 'caption': 'Two young men in chairs playing game with Nintendo Wii controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515821.jpg', 'caption': 'Some people sitting on a couch with remotes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515821.jpg', 'caption': 'Two people sitting on a couch and playing a Wii game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515821.jpg', 'caption': 'Two people on a couch holding Wii controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504599.jpg', 'caption': 'A living room filled with furniture and a library.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504599.jpg', 'caption': 'A living room containing books, beanbag chairs and a fireplace.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504599.jpg', 'caption': 'A living room has a fireplace and bookcases in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504599.jpg', 'caption': 'The books are helpful for me to read.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000504599.jpg', 'caption': 'A room with bookshelves, a wood floor, and bean bag chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113397.jpg', 'caption': 'A man holding a Nintendo Wii game controller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113397.jpg', 'caption': 'A man raises a Wii remote above his head, pointing it at something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113397.jpg', 'caption': 'A heavy set man showing his teeth in a funny manner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113397.jpg', 'caption': 'A man plays a game with a Wii controller. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000113397.jpg', 'caption': 'A man holding a controller playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459034.jpg', 'caption': 'An older man sitting next to an older woman, both of them are holding Wii controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459034.jpg', 'caption': 'A older man and women sitting on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459034.jpg', 'caption': 'The elderly couple is sitting on the couch with the remotes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459034.jpg', 'caption': 'An elderly man and woman hold remote controllers on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459034.jpg', 'caption': 'An older couple is playing a video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314757.jpg', 'caption': 'a person in a living room playing nintendo wii while people watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314757.jpg', 'caption': 'a man is standing up holding a controller', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314757.jpg', 'caption': 'Couple people sleeping on the couch while dud plays the Wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314757.jpg', 'caption': 'A man is playing Wii in a living room while other people sleep or watch him play.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314757.jpg', 'caption': 'Young man standing and playing a computer game on a big screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324584.jpg', 'caption': 'A neat living room in a wood cabin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324584.jpg', 'caption': 'A living room filled with furniture and windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324584.jpg', 'caption': \"A cabin's den with hardwood walls and entertainment system\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324584.jpg', 'caption': 'A living room with wooden walls and a tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324584.jpg', 'caption': 'A living room of a cabin-style house features furniture and some antique items. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529139.jpg', 'caption': 'A man with spiked hair looks at a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529139.jpg', 'caption': 'a man playing a computer game with a video game remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529139.jpg', 'caption': 'A man holding tie devices in his hands while he looks at his laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529139.jpg', 'caption': 'A man holding remotes in his hands standing next to a desk with a laptop on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529139.jpg', 'caption': 'A man with video game remotes in his hand and a neon necklace around his neck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494139.jpg', 'caption': 'Two men looking at a computer screen with Wii remotes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494139.jpg', 'caption': 'an image of two couples of playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494139.jpg', 'caption': 'Two men are using video game remote controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494139.jpg', 'caption': 'These two friends are playing a game of Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494139.jpg', 'caption': 'Two men playing video games together in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262738.jpg', 'caption': 'A beautiful blonde girl holding a Nintendo Wii controller next to a man .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262738.jpg', 'caption': 'A couple enjoying playing Wii on a computer screen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262738.jpg', 'caption': 'Two people are playing a computer video game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262738.jpg', 'caption': 'Two people are playing a video game together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262738.jpg', 'caption': 'Two people play a game with a game console and a monitor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517445.jpg', 'caption': 'two people standing near each other playing nintendo wii', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517445.jpg', 'caption': 'A man and a woman in front of a TV playing Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517445.jpg', 'caption': 'A man and woman are playing a game with Wii controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517445.jpg', 'caption': 'A man and a woman playing the Nintendo Wii.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517445.jpg', 'caption': 'A woman standing next to a man holding game controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115521.jpg', 'caption': 'two men playing a video game with controllers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115521.jpg', 'caption': 'Two guys holding up the Wii remote controls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115521.jpg', 'caption': 'A couple of men playing a game with remote controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115521.jpg', 'caption': 'Two men holding the remotes for a video game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115521.jpg', 'caption': 'A couple of young men holding Wii controllers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109707.jpg', 'caption': 'This is a living room with a gray couch and yellow chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109707.jpg', 'caption': 'Living room with sectional couch and modern decor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109707.jpg', 'caption': 'A living room with a large couch and a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109707.jpg', 'caption': 'The pillow is sitting on the grey couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109707.jpg', 'caption': 'A spacious living room with a large gray sectional sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486114.jpg', 'caption': 'A room filled with furniture and beautiful decor. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486114.jpg', 'caption': 'A full view of a room with many things. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486114.jpg', 'caption': 'A dining table sits next to a book shelf and cabinet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486114.jpg', 'caption': 'Vase and flower center piece on table next to window and china case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000486114.jpg', 'caption': 'The dining room table is clean and ready for us to use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572331.jpg', 'caption': 'Several pillows are lined up down the length of a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572331.jpg', 'caption': 'A bed with several pillows lined up on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572331.jpg', 'caption': 'this bed has many pillows on top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572331.jpg', 'caption': 'There is a bed with several pillows on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572331.jpg', 'caption': 'A bed with a row of red and blue stripped pillows with a lamp on a table next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055323.jpg', 'caption': 'A desktop computer sitting next to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055323.jpg', 'caption': 'An apple computer has a black checkered keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055323.jpg', 'caption': 'A small white computer and keyboard on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055323.jpg', 'caption': 'Black and white keys on a computer keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055323.jpg', 'caption': 'a computer with a keyboard that has black and white keys ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058886.jpg', 'caption': 'A wooden table topped with two monitors and a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058886.jpg', 'caption': 'A computer and two monitors sitting on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058886.jpg', 'caption': 'one laptop two monitors two keyboards and two mice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058886.jpg', 'caption': 'someone has to do their work on three computers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058886.jpg', 'caption': 'Three computer monitors are sitting on the desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136807.jpg', 'caption': 'There are keyboard keys on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136807.jpg', 'caption': 'The keys of an Apple keyboard displayed on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136807.jpg', 'caption': 'Buttons from a keyboard all arranged together on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136807.jpg', 'caption': 'A table holding various keys to a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000136807.jpg', 'caption': 'The letters of a laptop keyboard are sitting on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475995.jpg', 'caption': 'A man sitting next to two large dogs wearing bandannas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475995.jpg', 'caption': 'Man sitting down with both his dogs with a blurry hand and cell phone in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475995.jpg', 'caption': 'A man sits as two dogs interact with him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475995.jpg', 'caption': 'People standing near two furry dogs close to a rail.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475995.jpg', 'caption': 'A husky dog sits in front of his owner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182647.jpg', 'caption': 'Woman holding a cell phone covered with a crochet pounch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182647.jpg', 'caption': 'A woman holding a cell phone in a crocheted case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182647.jpg', 'caption': 'A woman holding a cell phone in a crochet cell phone holder. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182647.jpg', 'caption': 'a person holding a cell phone in a knit case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000182647.jpg', 'caption': 'a person holding a cell phone in a knit sleeve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065773.jpg', 'caption': 'a man in a room watching television and a wooden table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065773.jpg', 'caption': 'a man sitting on a chair on a tiled floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065773.jpg', 'caption': 'A living room area with tile flooring and a man sitting int he middle of the room on a chair with a remote control in his hand, while looking at a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065773.jpg', 'caption': 'The man sits in a chair as another sits on the couch watching television. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065773.jpg', 'caption': 'People sitting in a room and watching a small television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570022.jpg', 'caption': 'A living room filled with blue furniture in front of a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570022.jpg', 'caption': 'Room with a television, blue chairs and a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570022.jpg', 'caption': 'A living room with an attached bedroom divide by a gate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570022.jpg', 'caption': 'A bedroom is split by a gate to join two chairs and a tv.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570022.jpg', 'caption': 'a living room with two blue chairs and a television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100187.jpg', 'caption': 'A well lit living room with sofas and coffee table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100187.jpg', 'caption': 'A living room is set up in a dainty manner with sofas and loveseats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100187.jpg', 'caption': 'A living room with a couch, chairs, and a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100187.jpg', 'caption': 'A living room with a end table, three chairs and a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100187.jpg', 'caption': 'A nice living room has chairs and a love seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160308.jpg', 'caption': 'A very large building with a large clock on it .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160308.jpg', 'caption': 'A huge clock hanging from the side of the building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160308.jpg', 'caption': 'A large clock on the side of a building with trees below.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160308.jpg', 'caption': 'a clock attached to a building with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160308.jpg', 'caption': 'There is a clock on the side of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493273.jpg', 'caption': 'People flying and watching kites at a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493273.jpg', 'caption': 'A group of people standing on a field flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493273.jpg', 'caption': 'Several kites being flown in a city park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493273.jpg', 'caption': 'some people on some grass are flying kites and buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493273.jpg', 'caption': 'A kite flying through the air in the middle of a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153392.jpg', 'caption': 'Many of the kites ascend high into the clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153392.jpg', 'caption': 'A group of kites flying in the blue sky on a nice day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153392.jpg', 'caption': 'a blue sky that has a kite in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153392.jpg', 'caption': 'a couple of kites are flying in the sky\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000153392.jpg', 'caption': 'Two views of bright objects floating through the blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236909.jpg', 'caption': 'Kites flying over a large park in the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236909.jpg', 'caption': 'People in a park flying kites near a river. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236909.jpg', 'caption': 'People flying kites and having a picnic at the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236909.jpg', 'caption': 'A group of people sitting in the grass watching kites fly by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236909.jpg', 'caption': 'People having a picnic in the park while others fly kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428064.jpg', 'caption': 'A girl in a park area flies a multi-colored kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428064.jpg', 'caption': 'A girl flying a kit in the sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428064.jpg', 'caption': 'A young woman flying a rainbow colored kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428064.jpg', 'caption': 'a person in a large field flying a kite in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428064.jpg', 'caption': 'A woman looks up at her colorful sailing kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356863.jpg', 'caption': 'some people on a green hill are flying kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356863.jpg', 'caption': 'a bunch of people stand atop of a green hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356863.jpg', 'caption': 'A kite flying in the sky over a grassy hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356863.jpg', 'caption': 'Nothing is more pleasant than standing on a grassy knoll and flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000356863.jpg', 'caption': 'There are many people standing at the top of this hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050926.jpg', 'caption': 'A group of people flying a kite in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050926.jpg', 'caption': 'two people in a field are flying a kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050926.jpg', 'caption': 'People are standing in the grass flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050926.jpg', 'caption': 'Several people standing around with kites flying overhead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000050926.jpg', 'caption': 'An image of a kite being flown in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004246.jpg', 'caption': 'A couple of young men standing next to each other on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004246.jpg', 'caption': 'Two children on a street in a developing nation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004246.jpg', 'caption': 'Two young boys standing in brick paved street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004246.jpg', 'caption': 'Two kids standing in the street next to the curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004246.jpg', 'caption': 'Two boys stand on a city street next to a curb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054750.jpg', 'caption': 'A man kiteboarding over waves in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054750.jpg', 'caption': 'A man that is in the air on a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054750.jpg', 'caption': 'Kite surfer on board jumping out of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054750.jpg', 'caption': 'A man parasails in the ocean on a nice day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054750.jpg', 'caption': 'A man with feet connected to board being carried across water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184388.jpg', 'caption': 'A youngster is flying a kite on the beach. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184388.jpg', 'caption': 'A person flying a kite on the shore of a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184388.jpg', 'caption': 'Person running after red bag high in the air with clouds on beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184388.jpg', 'caption': 'a person in blue pants is flying a kite on the beach and clouds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184388.jpg', 'caption': 'A boy flying a kite in the cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212054.jpg', 'caption': 'Two beautiful women standing next to a black umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212054.jpg', 'caption': 'Two young girls pose with a kite near a painted wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212054.jpg', 'caption': 'Two girls holding a homemade kite between them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212054.jpg', 'caption': 'Two schoolgirls with a homemade kite featuring the flag of Jordan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212054.jpg', 'caption': 'These girls are showing the art they made.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137408.jpg', 'caption': 'A surf sailer gathers his gear and walks along grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137408.jpg', 'caption': 'A person carrying something used for para-sailing walks across the sandy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137408.jpg', 'caption': 'a ,man holding on to a surfboard and a large kite', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137408.jpg', 'caption': 'The person is carrying a very large kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137408.jpg', 'caption': 'a person is preparing to hang glide in the sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404652.jpg', 'caption': 'A white stove top oven sitting between two counters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404652.jpg', 'caption': 'Shot of a kitchen stove next to a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404652.jpg', 'caption': 'A white gas stove in between wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404652.jpg', 'caption': 'An earth tone kitchen has a gas range, tan countertops and oak cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000404652.jpg', 'caption': 'a kitchen with a white stove, patterned wall paper and wooden cabinets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326820.jpg', 'caption': 'A blue vase holding a bunch of white and yellow flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326820.jpg', 'caption': 'A blue ceramic vase filled with yellow and white flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326820.jpg', 'caption': 'There is a vase with sunflowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326820.jpg', 'caption': 'Bouquet of yellow and white flowers in a blue vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000326820.jpg', 'caption': 'An arrangement of yellow flowers with one white flower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557402.jpg', 'caption': 'A bucket full of red flowers and leaves put on a decorative area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557402.jpg', 'caption': 'A vase with pink flowers and a cloth at the bottom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557402.jpg', 'caption': 'A vase of lilies sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557402.jpg', 'caption': 'There is a vase with many beautiful pink flowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557402.jpg', 'caption': 'Bright red flowers are in a brown vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322620.jpg', 'caption': 'a teddy bear laying on a turned down hotel bed with chocolates', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322620.jpg', 'caption': 'A teddy bear laying in an empty bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322620.jpg', 'caption': 'A teddy bear on a hotel bed that is made.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322620.jpg', 'caption': 'Bear laying on a pillow with covers folded down and two candies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322620.jpg', 'caption': \"A teddy bear lays in a bed resting it's head against a pillow.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225198.jpg', 'caption': 'A brown stuffed teddy bear sitting on top of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225198.jpg', 'caption': 'a stuffed animal on a bed wearing headphones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225198.jpg', 'caption': 'A stuffed toy wearing headphones leans up against a pair of pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225198.jpg', 'caption': 'A stuffed rabbit wearing a set of headphones ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225198.jpg', 'caption': 'A stuffed rabbit with a headset on his ears. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065520.jpg', 'caption': 'a little teddy bear sitting by a pillow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065520.jpg', 'caption': 'A stuffed teddy bear sitting amongst pillows on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065520.jpg', 'caption': 'A teddy bear lies softly on a bed amongst the pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065520.jpg', 'caption': 'A small teddy bear is sitting by the pillow on the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065520.jpg', 'caption': 'A vintage teddy bear cuddles in the midst of pillows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188311.jpg', 'caption': 'a room with laptops and headphones resting on tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188311.jpg', 'caption': 'A classroom with desks and laptops with headphones on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188311.jpg', 'caption': 'A vacant classroom with tables covered by laptops with headphones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188311.jpg', 'caption': 'This classroom has several places to seat with laptops and headphones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188311.jpg', 'caption': 'A room with many tables, with multiple laptops with headphones on each.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503522.jpg', 'caption': 'a baseball player with a bat on the field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503522.jpg', 'caption': 'A baseball player is on the field warming up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503522.jpg', 'caption': 'A baseball player warms up beside home plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503522.jpg', 'caption': 'A man in a baseball uniform warming up preparing to bat at a baseball stadium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000503522.jpg', 'caption': 'a man holding a baseball b at on the ball field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487925.jpg', 'caption': 'A man standing on a baseball field holding a bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487925.jpg', 'caption': 'A baseball game in progress with the next player up warming up with his bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487925.jpg', 'caption': 'The men are playing a game of baseball on the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487925.jpg', 'caption': 'A group of people on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000487925.jpg', 'caption': 'some baseball players are playing baseball on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317797.jpg', 'caption': 'a girl in a white dress and a big yellow animal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317797.jpg', 'caption': 'Giant yellow teddy bear with light above and woman standing in front. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317797.jpg', 'caption': 'This is a woman standing in front of an enormous stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317797.jpg', 'caption': 'She was standing outside in front of the giant Teddy Bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000317797.jpg', 'caption': 'A woman in a dress posing by a large yellow stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325568.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325568.jpg', 'caption': 'An umpire stands behind a catcher who stands in front of a baseball player holding a bat to his shoulder on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325568.jpg', 'caption': 'A batter, catcher and umpire in a baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325568.jpg', 'caption': 'A man holding a baseball bat ready to swing with a catcher and umpire behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000325568.jpg', 'caption': 'a better at the plate with the catcher and umpire behind him', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530013.jpg', 'caption': 'A baseball player at bat in a stadium', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530013.jpg', 'caption': 'a baseball game with the batter swinging his bat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530013.jpg', 'caption': 'A baseball player in the batting box with the umpire and catcher.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530013.jpg', 'caption': 'A batter swinging a bat on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530013.jpg', 'caption': 'A baseball player about to swing at a pitch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224377.jpg', 'caption': 'The young girl is posing with a softball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224377.jpg', 'caption': 'A girl with a bat standing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224377.jpg', 'caption': 'a little girl that has a baseball bat in her hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224377.jpg', 'caption': 'A softball player holding the bat on first base.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224377.jpg', 'caption': 'A softball girl is posing with a bat on home base. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558242.jpg', 'caption': 'A child in baseball uniform prepares to pitch a ball. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558242.jpg', 'caption': 'A boy pitches a ball to a batter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558242.jpg', 'caption': 'The young ball player preparing to pitch the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558242.jpg', 'caption': 'The boy throws a baseball to another boy who is ready to hit it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558242.jpg', 'caption': 'A young man prepare to pitch in a game of baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398753.jpg', 'caption': 'A view of a baseball game during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398753.jpg', 'caption': 'A baseball game is in progress with a crowd.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398753.jpg', 'caption': 'Pitcher throws ball to the batter who is ready to swing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398753.jpg', 'caption': 'some baseball players are playing on a field and fans', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398753.jpg', 'caption': 'A pitcher throwing a ball at a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318130.jpg', 'caption': 'A batter waiting for a pitch to be thrown.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318130.jpg', 'caption': 'A baseball field with a guy standing at home plate batting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318130.jpg', 'caption': 'A softball game is being played on a dirt field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318130.jpg', 'caption': 'A baseball player is getting ready to hit the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000318130.jpg', 'caption': 'A batter waits for the pitch to be thrown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387950.jpg', 'caption': 'An advertisement on a trailer of baseball player', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387950.jpg', 'caption': 'A sign featuring a famous player claims allegiance to the Mets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387950.jpg', 'caption': 'A truck trailer with a vintage baseball sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387950.jpg', 'caption': 'A truck advertising a baseball team on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000387950.jpg', 'caption': \"A trailer has a big baseball advertisement on it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012552.jpg', 'caption': 'A baseball player swinging a bat at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012552.jpg', 'caption': 'a batter hitting a baseball with a at home plate ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012552.jpg', 'caption': 'A batter swings at an incoming fastball pitch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012552.jpg', 'caption': 'A batter on a baseball field in mid-swing with a catcher and an umpire behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000012552.jpg', 'caption': 'A baseball player prepares to hit the baseball with his bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221036.jpg', 'caption': 'The baseball player has connected with the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221036.jpg', 'caption': 'three people are playing baseball a batter a catcher and an umpire', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221036.jpg', 'caption': 'A baseball player swing a baseball bat on a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221036.jpg', 'caption': 'A batter has just hit the ball but has not dropped the bat yet to run.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000221036.jpg', 'caption': 'A baseball game is being played in a shadowy ballpark.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458487.jpg', 'caption': 'A baseball player holding a bat next to a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458487.jpg', 'caption': 'The man is trying to hit the baseball during his game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458487.jpg', 'caption': 'An adult baseball hitter reacts to a pitched ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458487.jpg', 'caption': 'A batter at home plate just about to swing at a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458487.jpg', 'caption': 'A man on a field swinging a baseball bat at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114317.jpg', 'caption': 'Baseball players fielding a hit in the infield.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114317.jpg', 'caption': 'A couple of baseball players running a play during the game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114317.jpg', 'caption': 'an action shot of some baseball players on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114317.jpg', 'caption': 'A baseball game where a player has fallen on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114317.jpg', 'caption': 'Baseball players catching a ball in the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212309.jpg', 'caption': 'A couple of young men standing on top of a baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212309.jpg', 'caption': 'Two men are running and playing some baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212309.jpg', 'caption': 'The runner tries to reach a plate before the baseman catches the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212309.jpg', 'caption': 'Two players from opposing teams in mid play ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212309.jpg', 'caption': 'Two men running and playing baseball with plate and grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514147.jpg', 'caption': 'An umpire, a guy in a red uniform and a guy in a green uniform', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514147.jpg', 'caption': 'A batter swings at the ball while the catcher and umpire watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514147.jpg', 'caption': 'A man that is standing in the dirt with a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514147.jpg', 'caption': 'A baseball player is swinging a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000514147.jpg', 'caption': 'A batter, catcher, and umpire in a baseball game. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094046.jpg', 'caption': 'a baseball player getting ready to run to first base', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094046.jpg', 'caption': 'A person playing baseball with legs ready to run.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094046.jpg', 'caption': 'Man in baseball uniform holding a bat and moving away front he plate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094046.jpg', 'caption': 'Baseball player about to run from home base while dropping the bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094046.jpg', 'caption': 'A baseball player running to another base with a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396997.jpg', 'caption': 'Many people playing a type of sport on a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396997.jpg', 'caption': 'A group of men on a field playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396997.jpg', 'caption': 'A baseball game is being played before a handful of people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396997.jpg', 'caption': 'People playing baseball on a sandy sports field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396997.jpg', 'caption': 'A man swinging a baseball bat as another looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466561.jpg', 'caption': 'Young man batting during a sunny baseball game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466561.jpg', 'caption': 'A man swinging a bat while playing baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466561.jpg', 'caption': 'A baseball player swinging the bat at a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466561.jpg', 'caption': 'The young baseball player in the red helmet is swinging his bat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000466561.jpg', 'caption': 'A man that is standing with a baseball bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042810.jpg', 'caption': 'A woman in a white shirt and pink skirt playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042810.jpg', 'caption': 'A female tennis player playing at the US Open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042810.jpg', 'caption': 'A woman on a tennis court poses her racquet as a ball comes towards her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042810.jpg', 'caption': 'A lady in a white top and pink skirt serving up a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000042810.jpg', 'caption': 'an image of a professional tennis player that is returning a serve', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449114.jpg', 'caption': 'A tennis player jumps and hits a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449114.jpg', 'caption': 'A man is playing tennis on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449114.jpg', 'caption': 'a man is playing tennis on a court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449114.jpg', 'caption': 'A man with a tennis racket with a tennis ball in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000449114.jpg', 'caption': 'The tennis player is returning a difficult serve.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075234.jpg', 'caption': 'A man swinging a tennis racket at a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075234.jpg', 'caption': 'a man on a blue tennis court waiting for a tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075234.jpg', 'caption': 'a tennis player has just hit the tennis ball ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075234.jpg', 'caption': 'A man in white shirt and shorts playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075234.jpg', 'caption': 'A person swinging at a tennis ball on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447354.jpg', 'caption': 'A person smiling next to a whole pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447354.jpg', 'caption': 'The man is smiling near a pizza at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447354.jpg', 'caption': 'A man that is sitting in front of a pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447354.jpg', 'caption': 'A man sitting at a table that has a pizza on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447354.jpg', 'caption': 'a man smiles as he sits in front of a big pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352257.jpg', 'caption': 'Woman tennis player delivering hit of tennis ball during a match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352257.jpg', 'caption': 'A tall girl hitting a tennis ball and smiling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352257.jpg', 'caption': 'Tennis player hitting a ball during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352257.jpg', 'caption': 'A woman taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000352257.jpg', 'caption': 'A woman is forcefully hitting a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569543.jpg', 'caption': 'A female tennis player in white serves the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569543.jpg', 'caption': 'A beatiful young woman playing a game of tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569543.jpg', 'caption': 'A girl with a racket in one hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569543.jpg', 'caption': 'The professional tennis player readies for that moment to serve the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000569543.jpg', 'caption': 'A woman serves the ball during a tennis match.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537631.jpg', 'caption': 'A young girl standing on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537631.jpg', 'caption': 'A hard surface tennis court with two girls on the first court together, holding tennis rackets in their hands.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000120860.jpg', 'caption': 'A picture of a dog standing on a boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423065.jpg', 'caption': 'A little alien toy sitting on top of a slice of lemon.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423065.jpg', 'caption': 'A small martian statue in a lime with a drink umbrella in a lime.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423065.jpg', 'caption': 'Is that a little green alien who got stuck with a paper umbrella in a lemon?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423065.jpg', 'caption': 'An alien toy with gloves on sitting in a lime with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423065.jpg', 'caption': 'A lime wedge with an umbrella holding toy alien on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174679.jpg', 'caption': 'A small boat and chair on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174679.jpg', 'caption': 'A beached sailboat in the sand with a chair next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174679.jpg', 'caption': 'Sailing boat tied up to a deck chair on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174679.jpg', 'caption': 'A white boat that is by the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174679.jpg', 'caption': 'A demasted and beached sailboat with a lawnchair next to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052853.jpg', 'caption': 'A small cow is walking down a path with an adult cow while a man in a red shirt watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052853.jpg', 'caption': 'a few animals that are walking down a path', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052853.jpg', 'caption': 'A cow and calf walking on a dirt road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052853.jpg', 'caption': 'There is a cow walking next to a calf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000052853.jpg', 'caption': 'There are cows walking by a person on the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135158.jpg', 'caption': 'A cat laying on a couch with a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135158.jpg', 'caption': 'a cat is on the coach staring at a remote control', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135158.jpg', 'caption': 'there is a orange tabby sitting on a couch next to a remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135158.jpg', 'caption': 'A cat that is laying down on a couch next to a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135158.jpg', 'caption': 'A house cat laying on a couch beside a remote', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377080.jpg', 'caption': 'a cabin cruiser going down the canal toward a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377080.jpg', 'caption': 'A boat is floating on water and about to go under a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377080.jpg', 'caption': 'A small boat is going down a water channel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377080.jpg', 'caption': 'A boat in the water with people on it about to go under a bridge near a city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377080.jpg', 'caption': 'The boat is sailing in the water by the bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038179.jpg', 'caption': 'A boat floating on a river next to a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038179.jpg', 'caption': 'a red and white boat and some buildings ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038179.jpg', 'caption': 'A photo of a waterway with boats and a city in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038179.jpg', 'caption': 'A boat is in the water near a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038179.jpg', 'caption': 'A city bay with skyrise buildings and a ferry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222430.jpg', 'caption': 'A man looks straight ahead sitting at a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222430.jpg', 'caption': 'A man with long hair sits at a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222430.jpg', 'caption': 'A man with long hair and a blue shirt sitting in front of a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222430.jpg', 'caption': 'A long haired technology professional is posing for a picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000222430.jpg', 'caption': 'A person sitting a desk inside of a office', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244160.jpg', 'caption': 'A large sign on the front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244160.jpg', 'caption': 'A sign on a red tiled wall with marquee above it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244160.jpg', 'caption': 'A sign for a place of business outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244160.jpg', 'caption': 'An Asian storefront shows a colorful sign and the words, \"DOM DOM\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000244160.jpg', 'caption': 'A sign on a red building has words in English and another kind of lettering.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493932.jpg', 'caption': 'a statue of a golden elephant and another sculpture behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493932.jpg', 'caption': 'A statue of an elephant standing on top of a stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493932.jpg', 'caption': 'A gold elephant statue sitting on a sidewalk with people near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493932.jpg', 'caption': 'Two statutes outside with people near them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493932.jpg', 'caption': 'Elephant sculptures on display down the sidewalk of a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122839.jpg', 'caption': 'A statue of a person and a elephant on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122839.jpg', 'caption': 'A statue of a man next to a statue of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122839.jpg', 'caption': 'A statue of a man and one of an elephant sitting on the side of the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122839.jpg', 'caption': 'Statues of a man with a top hat and cane and an elephant line an English street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122839.jpg', 'caption': 'a street with some statues and buildings around', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344741.jpg', 'caption': 'A man and woman sitting on the grass outside talking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344741.jpg', 'caption': 'A man sitting next to a woman while wearing a pink neck tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344741.jpg', 'caption': 'The girl is talking to the boy wearing the pink tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344741.jpg', 'caption': 'Two people talking to each other while sitting in the grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344741.jpg', 'caption': 'there are two people sitting in the grass and talking', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038332.jpg', 'caption': 'A single elephant standing in a large grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038332.jpg', 'caption': 'An elephant is alone in a field of grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038332.jpg', 'caption': 'this is an elephant eating in the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038332.jpg', 'caption': 'An elephant standing alone in a large grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000038332.jpg', 'caption': 'An elephant standing in the grass by itself.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067660.jpg', 'caption': 'A man with glowing shine has a violin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067660.jpg', 'caption': 'A bald man playing a violin while sitting down in a dark room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067660.jpg', 'caption': 'A man holding a violin to his cheek at a performance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067660.jpg', 'caption': 'A musician with a smile on his face prepares to play the violin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067660.jpg', 'caption': 'A man dressed in a tux holds a violin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482080.jpg', 'caption': 'A man standing in front of a large flat screen TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482080.jpg', 'caption': 'A man standing in front of a large white board giving a talk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482080.jpg', 'caption': 'There is a man standing at a smart board giving a presentation', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482080.jpg', 'caption': 'A speaker opens his mouth in front of a large screen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482080.jpg', 'caption': 'A man is talking in front of a television', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236370.jpg', 'caption': 'A crowd of people sitting in a room on to of a wooden floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236370.jpg', 'caption': 'The guest of the wedding are gathered in a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236370.jpg', 'caption': 'a family event where she is getting married', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236370.jpg', 'caption': 'A woman holding a bouquet walking down the aisle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000236370.jpg', 'caption': 'A wedding that is inside of a house', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206433.jpg', 'caption': 'a close up of two people wearing ties ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206433.jpg', 'caption': 'Two men wearing ties pose for a picture', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206433.jpg', 'caption': 'A couple of men standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206433.jpg', 'caption': 'A couple of men with ties and suits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000206433.jpg', 'caption': 'Two persons in formal dress posing for a photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342273.jpg', 'caption': 'A man in a top hat and a woman with glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342273.jpg', 'caption': 'A man and a women who are smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342273.jpg', 'caption': 'A young woman and a man posing together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342273.jpg', 'caption': \"A woman with her chin on a man's shoulder. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342273.jpg', 'caption': 'A couple is dressed formally and smiling for the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125051.jpg', 'caption': 'A young man standing near a picture frame. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125051.jpg', 'caption': 'This young man is stylish in his striped shirt and gaily printed, contrasting tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125051.jpg', 'caption': 'a ,man with a tie standing next to a tiny picture on the wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125051.jpg', 'caption': 'A man wearing a stripe shirt and a neck tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000125051.jpg', 'caption': 'A man who is wearing an orange and red tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122747.jpg', 'caption': 'A man in a black shirt and orange bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122747.jpg', 'caption': 'A close up photo of a man with an orange bow tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122747.jpg', 'caption': 'A man wearing an orange bow tie sitting in a living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122747.jpg', 'caption': 'A man taking a picture of himself wearing an orange bow tie. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122747.jpg', 'caption': 'A man with an orange bow tie sits on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229575.jpg', 'caption': 'A man with a green tie and eyes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229575.jpg', 'caption': 'The man is posing with a neon green tie that matches his eyes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229575.jpg', 'caption': 'A close up picture of a man dressed in a suit and green tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229575.jpg', 'caption': 'A close-up facial shot of man wearing a bright green tie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229575.jpg', 'caption': 'The right side of a man with a neon green tie and an unusual color of green eyes facing a camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530317.jpg', 'caption': 'Two air boats driving next to each other on the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530317.jpg', 'caption': 'A fan boat docked next to another fan boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530317.jpg', 'caption': 'A group of people have boarded a fan boat leaving the dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530317.jpg', 'caption': 'Some boats in the water near a bunch of trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000530317.jpg', 'caption': 'Two people in a boat with a big fan on the back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123410.jpg', 'caption': \"A close up of an elephant's orange eye. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123410.jpg', 'caption': 'A eye of an elephant that is looking forward. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123410.jpg', 'caption': \"Close up of an animal's eye against its large leather worn face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123410.jpg', 'caption': 'Elephant with a brown eye hyper focused in the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000123410.jpg', 'caption': 'A close up view of a pretty brown eye of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159979.jpg', 'caption': 'a number of people at a market with umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159979.jpg', 'caption': 'A group of food sellers at the edge of a waterway. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159979.jpg', 'caption': 'People on their canoe selling food by the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159979.jpg', 'caption': 'A market area with food and umbrellas next to water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000159979.jpg', 'caption': 'A bunch of black umbrellas over some boats', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552573.jpg', 'caption': 'A man splashing in the water with a giant umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552573.jpg', 'caption': 'A man sitting in the water with a umbrella being severally splashed . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552573.jpg', 'caption': 'Man sitting on top of water with a large green umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552573.jpg', 'caption': 'A man being flooded with water sitting under a white and green umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000552573.jpg', 'caption': 'A man rides a an inflatable chair as he rides down a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258085.jpg', 'caption': 'Two men in suits talking to a group of young people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258085.jpg', 'caption': 'A group of people standing around talking to two men in suites. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258085.jpg', 'caption': 'A politician shakes hands with a group of school children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258085.jpg', 'caption': ' a group of kids standing in front of a man in a buisness suit', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258085.jpg', 'caption': 'Two men in suits shake hands with a group of children.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365752.jpg', 'caption': 'Two men in suits and ties shaking hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365752.jpg', 'caption': 'A picture of two people that are shaking hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365752.jpg', 'caption': 'Two men in business suits shake hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365752.jpg', 'caption': 'Two dignitaries shake hands in front of saluting soldiers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365752.jpg', 'caption': 'Two men shake hands with a guard in a red uniform stands in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301993.jpg', 'caption': 'A man in a shirt and tie making a creepy face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301993.jpg', 'caption': 'The boy is a mirror image in this setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301993.jpg', 'caption': 'Two pictures of a man facing each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301993.jpg', 'caption': 'A reverse image of a man wearing a tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000301993.jpg', 'caption': 'a double image of the same man, left side in black and white', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289967.jpg', 'caption': 'A couple of white sculptures sitting under a red umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289967.jpg', 'caption': 'I am unable to see the image above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289967.jpg', 'caption': 'An umbrella set up over a table on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289967.jpg', 'caption': 'A red umbrella on a table in the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289967.jpg', 'caption': 'A seating area with an umbrella and some ball shaped decor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511658.jpg', 'caption': 'A deck with two chairs, glass table and umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511658.jpg', 'caption': 'A couple of white chairs sitting on either side of a white glass table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511658.jpg', 'caption': 'Empty furniture on an outdoor deck overlooking forested area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511658.jpg', 'caption': 'A white table with umbrella and two chairs on a deck near a railing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511658.jpg', 'caption': 'The two patio chairs are empty so we can sit down. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511159.jpg', 'caption': 'A man is standing in front of a book shelf filled with books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511159.jpg', 'caption': 'A bearded man standing in front of bookcases', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511159.jpg', 'caption': 'There is a man posing and showing off his tie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511159.jpg', 'caption': 'A man in a red and gold tie looking playfully ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511159.jpg', 'caption': 'A mean wearing a tie standing near a bookshelf.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147556.jpg', 'caption': 'An elephant standing in the middle of a tent.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147556.jpg', 'caption': 'workers sitting on elephants under a tent in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147556.jpg', 'caption': 'People are riding on the back of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147556.jpg', 'caption': 'Two individuals sitting on elephants - one large and one small.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147556.jpg', 'caption': 'A group of employees are working with a pair of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082263.jpg', 'caption': 'A white fishing boat goes under a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082263.jpg', 'caption': 'A fishing boat sailing under a very tall bridge with a road behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082263.jpg', 'caption': 'A white boat traveling across a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082263.jpg', 'caption': 'a small boat in a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082263.jpg', 'caption': 'A fishing boat moving through the water of a harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267411.jpg', 'caption': 'a close up of three older men standing near one another', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267411.jpg', 'caption': 'Three middle aged men having picture taken together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267411.jpg', 'caption': 'Three men are in a restaurant posing for a photograph', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267411.jpg', 'caption': 'Three men are stand next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000267411.jpg', 'caption': 'Three men stand posing together for a photograph.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421457.jpg', 'caption': 'A cat that is on top of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421457.jpg', 'caption': 'A cat sitting on top of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421457.jpg', 'caption': 'A brown cat is sitting on top of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421457.jpg', 'caption': 'A cat laying on top of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421457.jpg', 'caption': 'A tabby cat is sitting on top of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229631.jpg', 'caption': 'A black stove top oven sitting inside of a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229631.jpg', 'caption': 'Cat sitting on top of a vent in a kitchen over a stove. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229631.jpg', 'caption': 'A cat sitting on the awning above a stove', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229631.jpg', 'caption': 'A cat sitting on top of the stove cover', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229631.jpg', 'caption': 'A black and brown cat standing on air vent above a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391642.jpg', 'caption': 'A baby holding a blue umbrella inside the house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391642.jpg', 'caption': 'a child on the ground holding an open umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391642.jpg', 'caption': 'A child is under an open blue umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391642.jpg', 'caption': 'A young boy sitting on the ground while holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000391642.jpg', 'caption': 'A young boy that is sitting under a blue umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561856.jpg', 'caption': 'Several people walking in the rain with umbrellas. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561856.jpg', 'caption': 'A group of people crossing a street while holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561856.jpg', 'caption': 'Many people in a hurry with umbrellas to get out of rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561856.jpg', 'caption': 'People walking under umbrellas in the rain on a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561856.jpg', 'caption': 'A group of people holding umbrellas, in the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342271.jpg', 'caption': 'A family riding on the back of raft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342271.jpg', 'caption': 'a group of people riding a raft in a body of water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342271.jpg', 'caption': 'Two men paddle a raft with three children with them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342271.jpg', 'caption': 'A bunch of people that are sitting in a raft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000342271.jpg', 'caption': 'two adults and four children white water rafting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517946.jpg', 'caption': 'THERE ARE PEOPLE THAT ARE TAKING A WATER RAFT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517946.jpg', 'caption': 'A group of people in a kayak rowing together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517946.jpg', 'caption': 'A man is sitting in a raft with friends', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517946.jpg', 'caption': 'A group of men riding on top of a red boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000517946.jpg', 'caption': 'A group of people rafting on a raft boat with their paddles. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219848.jpg', 'caption': 'A man and woman riding on the back of a blue boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219848.jpg', 'caption': 'Two people on a raft with white water behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219848.jpg', 'caption': 'A smiling lady and a man in a boat with oars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219848.jpg', 'caption': 'A man and a woman holding oars to a boat and sitting in a raft with rapid water behind them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219848.jpg', 'caption': 'A man and a woman paddle a boat down a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296014.jpg', 'caption': 'a couple of people on a boat on a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296014.jpg', 'caption': 'A group of three riding on a raft while white water rafting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296014.jpg', 'caption': 'Three people on a raft going over a small waterfall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296014.jpg', 'caption': 'A group of people on a boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296014.jpg', 'caption': 'These three people are traveling down the river in a raft. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417031.jpg', 'caption': 'Four adults and a child are rafting through river rapids.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417031.jpg', 'caption': 'A group of people riding in a black raft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417031.jpg', 'caption': 'A group of people are in an inner tube looking boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417031.jpg', 'caption': 'A group of five people enjoying a white water rafting experience', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417031.jpg', 'caption': 'Some people are rafting together on a river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135846.jpg', 'caption': 'A man and woman that is sitting down in a raft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135846.jpg', 'caption': 'A man and a woman are white water rafting', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135846.jpg', 'caption': 'A couple paddling through the rapids in a blue raft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135846.jpg', 'caption': 'A man and a woman are kayaking on the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135846.jpg', 'caption': 'A couple are riding together on their raft.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137362.jpg', 'caption': 'A group of five people steering a raft down a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137362.jpg', 'caption': 'a raft full of people paddle their way through some water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137362.jpg', 'caption': 'A family of five goes white water rafting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137362.jpg', 'caption': 'Several people are in an inflatable blue boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137362.jpg', 'caption': 'A group of people in a small boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139192.jpg', 'caption': 'Four elephants standing in an open area surrounded by brush.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139192.jpg', 'caption': 'some elephants standing near one another in a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139192.jpg', 'caption': 'Elephants standing on a dirt ground behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139192.jpg', 'caption': 'A group of elephants stand together by a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139192.jpg', 'caption': 'Some elephants in a field with some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340305.jpg', 'caption': 'Two elephants with their trunks tied together with a third elephant in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340305.jpg', 'caption': 'Two elephants twisting trunks together next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340305.jpg', 'caption': 'Two elephants raise their trunks to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340305.jpg', 'caption': 'a pair of elephants with their trunks entwined', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000340305.jpg', 'caption': 'A couple of animals that are playing with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036481.jpg', 'caption': 'Two tall elephants standing behind a fenced in area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036481.jpg', 'caption': 'Two elephants who are walking towards each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036481.jpg', 'caption': 'Two elephants looking at each other in a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036481.jpg', 'caption': 'A pair of elephants standing in the middle of an open area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036481.jpg', 'caption': 'A couple of elephants walking along a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372227.jpg', 'caption': 'An orange and white cat chasing a feather', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372227.jpg', 'caption': 'A cat stands up to play with small, yellow feathers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372227.jpg', 'caption': 'A brown cat is reaching for a feather toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372227.jpg', 'caption': 'A cat reaching up to grab a feather on a string.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372227.jpg', 'caption': 'a cat chasing its toy in an awkward position', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359546.jpg', 'caption': 'Umbrellas made and woven items on beach near waterway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359546.jpg', 'caption': 'Four beach umbrellas on the beach on a clear day. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359546.jpg', 'caption': 'Several brown thatched umbrellas against an ocean view.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359546.jpg', 'caption': 'A row of umbrellas in front of the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000359546.jpg', 'caption': 'a couple of umbrellas that are next to some water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288860.jpg', 'caption': 'An elephant walking in a dirt area next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288860.jpg', 'caption': 'The elephant is walking on the sandy trail in the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288860.jpg', 'caption': 'An elephant stands in an area next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288860.jpg', 'caption': 'a small elephant walks by some fences ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000288860.jpg', 'caption': 'An elephant walking in the dirt in a zoo. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027662.jpg', 'caption': 'A boat is traveling in a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027662.jpg', 'caption': 'A boat floating across a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027662.jpg', 'caption': 'A boat drives in a large body of water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027662.jpg', 'caption': 'Small boat moving along water with orange objects hanging off end', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000027662.jpg', 'caption': 'a lone fishing boat accelerates into open water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198079.jpg', 'caption': 'A group of people sitting on a bench in front of a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198079.jpg', 'caption': 'Some people are sitting on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198079.jpg', 'caption': 'two men and two women sitting on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198079.jpg', 'caption': 'Four people sitting on a wooden bench outside of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198079.jpg', 'caption': 'Four people are on a bench next to a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275881.jpg', 'caption': 'A small white rusted boat floating across a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275881.jpg', 'caption': 'A white boat out in the middle of the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275881.jpg', 'caption': 'A rusty old boat on a large body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275881.jpg', 'caption': 'A small older boat by itself on the open water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000275881.jpg', 'caption': 'A white boat on ocean with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440940.jpg', 'caption': 'A beautiful young woman in a bikini riding a paddle boat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440940.jpg', 'caption': 'A woman in a blue life jacket white water rafting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440940.jpg', 'caption': 'A pretty young girl in a kayak on the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440940.jpg', 'caption': 'A Young woman is seen riding in a small blue canoe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440940.jpg', 'caption': 'A person that is in the water having some fun.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122994.jpg', 'caption': 'A large red umbrella on a metal pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122994.jpg', 'caption': 'Large colorful red umbrella sitting underneath a tree. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122994.jpg', 'caption': 'A large red umbrella with other colors around the center pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122994.jpg', 'caption': 'a bright red, yellow, pink and and green umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122994.jpg', 'caption': 'An umbrella is shown open under the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196989.jpg', 'caption': 'People ride an elephant through a path in the forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196989.jpg', 'caption': 'Three people are riding on a brown elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196989.jpg', 'caption': 'A large elephant with a couple people on the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196989.jpg', 'caption': 'Tourists under an umbrella on the back of an elephant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196989.jpg', 'caption': 'A group of people riding on the back of an elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470932.jpg', 'caption': \"An elephant is standing and raising it's trunk on a raised wooden floor as people watch in the background. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470932.jpg', 'caption': 'An elephant with decorations in captivity with people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470932.jpg', 'caption': 'An elephant wearing jewelry is standing near a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470932.jpg', 'caption': 'Several people looking at a decorated elephant on a platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000470932.jpg', 'caption': 'A decorated elephant on display in a town plaza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422221.jpg', 'caption': 'A large gray elephant standing under a blue covering.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422221.jpg', 'caption': 'A group of people watch an elephant that is wearing bells.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422221.jpg', 'caption': 'A large elephant wearing bells and necklaces under a blue pavillion.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422221.jpg', 'caption': 'An elephant with necklaces under a columned awning with people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000422221.jpg', 'caption': 'An elephant in the temple where people are looking at it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215755.jpg', 'caption': 'A woman sitting on top of a cement bench near a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215755.jpg', 'caption': 'a woman sitting on a concrete table next to a pond of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215755.jpg', 'caption': 'A lady sits at a fountain with her bag. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215755.jpg', 'caption': 'A woman sitting near a lake with a suitcase in front of her. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215755.jpg', 'caption': 'A woman sitting on a cement ledge with a suit case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509891.jpg', 'caption': 'A man scrubs down an elephant in a water hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509891.jpg', 'caption': 'A man and elephant inside of muggy water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509891.jpg', 'caption': 'A person stands next to an elephant in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509891.jpg', 'caption': 'Large sized elephant standing in the middle of a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000509891.jpg', 'caption': 'a man washing an elephant in the river', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271785.jpg', 'caption': 'The elephants and the young children are playing in the river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271785.jpg', 'caption': 'an elephant standing by the water with some people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271785.jpg', 'caption': 'A group of people join elephants in and near a water hole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271785.jpg', 'caption': 'A group of tourists are feeding some elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000271785.jpg', 'caption': 'A group of people that are by and elephant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417846.jpg', 'caption': 'Two dogs in a living room watching outside through a glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417846.jpg', 'caption': 'Two dogs are sitting in a living room looking out a window. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417846.jpg', 'caption': 'Two dogs laying down on the floor in the living room while looking outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417846.jpg', 'caption': 'Two adult dogs looking out sliding glass doors of a den room with curtains, TV, and chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417846.jpg', 'caption': 'Two dogs are lying on the floor looking out of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440400.jpg', 'caption': 'A woman is standing on the sidewalk with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440400.jpg', 'caption': 'A picture of a young lady stand by the street holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440400.jpg', 'caption': 'a lady o a urban street holding a see through umbrella with two men standing behind her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440400.jpg', 'caption': 'Woman standing under clear umbrella on urban sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440400.jpg', 'caption': 'a lady that has a umbrella in her hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477750.jpg', 'caption': 'Large special saddles are used while riding elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477750.jpg', 'caption': 'A group of people riding on the backs of elephants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477750.jpg', 'caption': 'a line of men riding elephants through a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477750.jpg', 'caption': 'there are three men riding elephants in the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477750.jpg', 'caption': 'A group of people ride elephants through a dry grassland.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343401.jpg', 'caption': 'A couple of people riding on the back of a horse carriage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343401.jpg', 'caption': 'there are two men that are riding a horse and carriage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343401.jpg', 'caption': 'Two people and a dog are riding in a horse drawn cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343401.jpg', 'caption': 'Two men in an automobile with a dog standing on the back of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343401.jpg', 'caption': 'a dog standing on a carriage behind two men', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032151.jpg', 'caption': 'A man wearing glasses while holding a piece of luggage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032151.jpg', 'caption': 'A man who is holding on a piece of luggage. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032151.jpg', 'caption': 'THIS IS A PICTURE OF A MAN POSING WITH HIS SUITCASE', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032151.jpg', 'caption': 'A man leaning his arm on a suitcase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000032151.jpg', 'caption': 'A man smiling at the camera with a large case in front of him ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333114.jpg', 'caption': 'a couple of people holding a umbrella on a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333114.jpg', 'caption': 'A group of people with umbrellas standing on a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333114.jpg', 'caption': 'Some people with umbrellas on a bridge near some pretty trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333114.jpg', 'caption': 'Four people are standing on a bridge are holding umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000333114.jpg', 'caption': 'People with umbrellas are walking over a bride in an Asian style garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195914.jpg', 'caption': 'A group of people walking down a small road under a large white tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195914.jpg', 'caption': 'A group of people with umbrellas are walking on a path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195914.jpg', 'caption': 'a number of people walking near a tree with open umbrellas ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195914.jpg', 'caption': 'Giant flowered tree on grass with people with umbrellas', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000195914.jpg', 'caption': 'People walking in the rain in a park with umbrellas looking a the blossoms on the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497960.jpg', 'caption': 'A black and white picture of three boys and two holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497960.jpg', 'caption': 'three males and two are holding umbrellas and bicycles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497960.jpg', 'caption': 'A black and white photo of people walking by some bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497960.jpg', 'caption': 'A group of people that are walking under umbrellas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497960.jpg', 'caption': 'three people in Japanese clothing, two are carrying umbrellas and all are wearing sandals and they are walking past parked bikes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183166.jpg', 'caption': 'Two people riding a scooter on the road while holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183166.jpg', 'caption': 'there are two people on a motorbike holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183166.jpg', 'caption': 'Two people, one of which is holding an umbrella, on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183166.jpg', 'caption': 'two people sitting on a scooter while one holds onto an umbrella ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000183166.jpg', 'caption': 'A couple of people riding a motorcycle down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179199.jpg', 'caption': 'A statue standing on a sidewalk while holding a black umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179199.jpg', 'caption': 'A statue of a man is holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179199.jpg', 'caption': 'A man wearing an tie holding an umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179199.jpg', 'caption': 'A statue of a man holding an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000179199.jpg', 'caption': 'A statue of a man in a suit with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280709.jpg', 'caption': 'Dog jumping in air to catch flying disc with adult sitting in background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280709.jpg', 'caption': 'A dog jumping in the air is holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280709.jpg', 'caption': 'A dog jumping up in the air with a Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280709.jpg', 'caption': 'An Australian Shepherd dog catches a pink Frisbee in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280709.jpg', 'caption': 'A dog with a kerchief has jumped in the air catching a pink frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488539.jpg', 'caption': 'Luggage on the curb waiting to be picked up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488539.jpg', 'caption': 'Group of mixed luggage sitting at a curb together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488539.jpg', 'caption': 'Three suitcases on the side of a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488539.jpg', 'caption': 'a bag of luggage and other bags on the sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488539.jpg', 'caption': 'There are three suitcases on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073521.jpg', 'caption': 'A few pieces of luggage sitting on top of a chair in an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073521.jpg', 'caption': 'Pieces of luggage near a waiting area of an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073521.jpg', 'caption': 'A pile of luggage left unattended at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073521.jpg', 'caption': 'A seat with bags on top and suitcases standing beside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073521.jpg', 'caption': 'There are some suitcases on a bench in an airport', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157214.jpg', 'caption': 'A man at a podium with another holding an umbrella over him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157214.jpg', 'caption': 'A couple of men standing under a umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157214.jpg', 'caption': 'The men are speaking in the rain with their umbrella up. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157214.jpg', 'caption': 'Two men with an umbrella and music stand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000157214.jpg', 'caption': 'A couple of men standing next to each other holding a blue umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036361.jpg', 'caption': 'a festival with entertainers on stilts walking around', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036361.jpg', 'caption': 'A man on stiltz is standing under a pink umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036361.jpg', 'caption': 'A man on stilts is holding a pink, polka dot unbrella over a woman in colorful clothes in a park setting and there is a crowd milling about.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036361.jpg', 'caption': 'a man on stilts holding a polka dot pink umbrella on a stage', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036361.jpg', 'caption': 'A large man in stilts holding a pink umbrella. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496252.jpg', 'caption': 'A large brown dog laying on a beach under a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496252.jpg', 'caption': 'A large brown dog laying in the sand at the beach under the shade of a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496252.jpg', 'caption': 'A dog lies under a surfboard in the sand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496252.jpg', 'caption': 'A dog laying underneath a surfboard in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496252.jpg', 'caption': 'A dog laying underneath a surfboard at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214363.jpg', 'caption': ' A woman with an umbrella on a bicycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214363.jpg', 'caption': 'Eccentric woman riding her bike under a colorful umbrella on a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214363.jpg', 'caption': 'A lady riding a bike with an umbrella on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214363.jpg', 'caption': 'A woman riding a bicycle with an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214363.jpg', 'caption': 'a lady with a umbrella riding down the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408057.jpg', 'caption': 'Clothes hanging on a rope over an unfinished patio.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408057.jpg', 'caption': 'A rooftop patio with clothes hanging on a line.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408057.jpg', 'caption': 'A city type deck with umbrella, clothes line, table and chair, and planters as well as other random items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408057.jpg', 'caption': 'Out door area with clothes line, table and chair, may potted plants and a pink umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000408057.jpg', 'caption': 'Clothes hanging on the line and an umbrella on a pole on a patio. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440763.jpg', 'caption': 'A child, wearing a cat costume and umbrella, stands before a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440763.jpg', 'caption': 'A small child wearing a cat style hat and carrying an open umbrella over her shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440763.jpg', 'caption': 'A girl with a hat shape like a cats head and an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440763.jpg', 'caption': 'A little girl is holding an umbrella while wearing an animal hood.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000440763.jpg', 'caption': 'Cute little girl dressed for rain and holding an opened umbrella', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022599.jpg', 'caption': 'an athletic dog playing with a frisbee in a grassy field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022599.jpg', 'caption': 'A black dog catching a frisbee in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022599.jpg', 'caption': 'The dog is running through the grass to catch the Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022599.jpg', 'caption': 'a black dog standing up to grab a frisbee in the air ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000022599.jpg', 'caption': 'a dog chasing a frisbee on the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210654.jpg', 'caption': 'A pair of shoes sitting on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210654.jpg', 'caption': 'A pair of black shoes is on a skateboard pulling a wheelie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210654.jpg', 'caption': 'a pair of shoes on a skate board on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210654.jpg', 'caption': 'A pair of sneakers are lying on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210654.jpg', 'caption': 'Tennis shoes laid on top of a skateboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104137.jpg', 'caption': 'A dog has made a bed on a stack of plastic chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104137.jpg', 'caption': 'A do is sitting on a stack of three chairs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104137.jpg', 'caption': 'A large brown dog sitting on top of a white chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104137.jpg', 'caption': 'A dog is laying in three chairs stacked together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104137.jpg', 'caption': 'A yellow dog lays on a stack of white chairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448236.jpg', 'caption': 'A guitar and a frisbee laying on a bed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448236.jpg', 'caption': 'a brown and black acoustic guitar and an orange frisbee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448236.jpg', 'caption': 'A frisbee propped up on a guitar on a bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448236.jpg', 'caption': 'A frisbee and guitar are laying on the bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000448236.jpg', 'caption': 'A frisbee and a guitar lay on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115721.jpg', 'caption': 'A dog laying down on top of a couch cushion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115721.jpg', 'caption': 'A dog with its eyes closed on a cushion.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115721.jpg', 'caption': 'A dog sleeping next to a person on a couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115721.jpg', 'caption': 'A dog laying on a sofa, sleeping next to a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115721.jpg', 'caption': 'A dog is sleeping on a couch next to a person', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155540.jpg', 'caption': 'A ADULT BROWN BEAR IS IN THE GRASS', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155540.jpg', 'caption': \"A large brown bear with it's mouth open.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155540.jpg', 'caption': 'a brown bear with its mouth open on some green grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155540.jpg', 'caption': 'A brown bear standing in a meadow observing the photo taker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155540.jpg', 'caption': 'A large bear on an outing on a pretty day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210958.jpg', 'caption': 'there are two dogs laying in a doggy bed together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210958.jpg', 'caption': 'two dogs on a couch on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210958.jpg', 'caption': 'a couple of small dogs are laying in a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210958.jpg', 'caption': 'two pug dogs laying in a dog bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210958.jpg', 'caption': 'two dogs laying down in a pillow on a wooden floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543836.jpg', 'caption': 'a gray and black cat and a male sleeping and pillows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543836.jpg', 'caption': 'A man laying in bed with a gray cat laying on top of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543836.jpg', 'caption': 'A MAN ON HIS BED IS SLEEPING WITH HIS CAT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543836.jpg', 'caption': 'A picture of a black cat sitting on a young man. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543836.jpg', 'caption': 'a man sleeping in bed with a cat lying on him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410781.jpg', 'caption': 'A zebra grazing on grass on top of a dry field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410781.jpg', 'caption': 'A zebra in a fence enclosed exhibit next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410781.jpg', 'caption': 'The zebra is drinking from the water inside the zoo enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410781.jpg', 'caption': 'a zebra next to a tree behind a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000410781.jpg', 'caption': 'A zebra under a tree in an eclosed area in a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562370.jpg', 'caption': 'Two small brown and black dogs standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562370.jpg', 'caption': 'THERE ARE TWO DOGS IN THE PARK LOOKING ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562370.jpg', 'caption': 'Two dogs sniffing each others noses on grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562370.jpg', 'caption': 'Two dogs playing at the park on a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562370.jpg', 'caption': 'Two small dogs with collars face each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098328.jpg', 'caption': 'Two zebras pushing against each other in a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098328.jpg', 'caption': 'A zebra rests its head on the back of another zebra.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098328.jpg', 'caption': 'Two zebras fighting out in an open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098328.jpg', 'caption': 'Two zebras are playing outside with each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098328.jpg', 'caption': 'A couple of zebra standing on top of a dry grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149252.jpg', 'caption': 'Two zebras in the standing next to each other rubbing noses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149252.jpg', 'caption': 'Two zebras are standing next to each other with their noses touching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149252.jpg', 'caption': \"A pair of zebra's being affectionate with each other.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149252.jpg', 'caption': 'THIS IS A PICTURE OF TWO ZEBRAS PLAYING TOGETHER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149252.jpg', 'caption': 'A photo of an outdoor with many things in the scene.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314396.jpg', 'caption': 'A case filled with different colored Frisbee on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314396.jpg', 'caption': 'a tan bag of what looks like frisbees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314396.jpg', 'caption': 'A bag filled with frisbees is sitting on a a metal table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314396.jpg', 'caption': 'A green back is divided into slots with frisbees in them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314396.jpg', 'caption': 'A large bag with several colored Frisbee inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053893.jpg', 'caption': 'Three zebras eating hay from a trough at the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053893.jpg', 'caption': 'Three zebras feed at a trough in a zoo exhibit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053893.jpg', 'caption': 'Zebras grazing on a dirt lot next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053893.jpg', 'caption': 'Three zebras drink water from a trough in their enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053893.jpg', 'caption': 'Three zebra who are standing next to a wooden trough. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453321.jpg', 'caption': 'A zebra standing on a dirt road next to a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453321.jpg', 'caption': 'A single zebra in an enclosure at the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453321.jpg', 'caption': 'A zebra stands with its behind to a camera, looking towards a fence. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453321.jpg', 'caption': 'a picture of a zebra standing inside a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453321.jpg', 'caption': 'a zebra in its pen at the zoo and a fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513659.jpg', 'caption': 'a carriage and a horse in front of a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513659.jpg', 'caption': 'a drawing of a large buidling with smoke coming out of the chimneys ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513659.jpg', 'caption': 'An old picture of a factory with some people walking by it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513659.jpg', 'caption': 'A picture depicts an old factory with carriages on the street in front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513659.jpg', 'caption': 'A painted picture of a old fashion factory..', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134386.jpg', 'caption': 'A lady in a shop with a piece of cake with lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134386.jpg', 'caption': 'A girl in a shop holding a plate with a dessert and candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134386.jpg', 'caption': 'A woman sitting in a store holding a cake with lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134386.jpg', 'caption': 'Smiling lady appears to be staying stop while holding a cake with candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134386.jpg', 'caption': 'A cute girl holding a plate with a cake and lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428786.jpg', 'caption': \"A horse's head poking through a window in a barn\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428786.jpg', 'caption': 'A horse peeking its head through a window, during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428786.jpg', 'caption': 'a white horse looking out of a window of a barn', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428786.jpg', 'caption': 'a white horse is sticking its head out of a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000428786.jpg', 'caption': 'a white and black horse looking out a window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241868.jpg', 'caption': 'An adult zebra and a child zebra walking through a lake. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241868.jpg', 'caption': \"A baby zebra following it's parent alongside of a river.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241868.jpg', 'caption': 'This is a image of an zoo outdoor.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241868.jpg', 'caption': 'Zebras grazing in the grass along a river.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000241868.jpg', 'caption': 'A zebra and its foal stand in a small pond.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523580.jpg', 'caption': 'A single zebra bends down to eat some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523580.jpg', 'caption': 'THIS IS A PICTURE OF A REAR VIEW OF A ZEBRA', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523580.jpg', 'caption': 'A black and white zebra grazing on grass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523580.jpg', 'caption': 'An adult zebra eating grass in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523580.jpg', 'caption': 'A single zebra grazing in a large open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335610.jpg', 'caption': 'Two zebras stand side-by-side grazing in a green pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335610.jpg', 'caption': 'A couple of zebra standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335610.jpg', 'caption': 'Three zebra are standing close together grazing in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335610.jpg', 'caption': 'Two zebras bent over eating green grass together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335610.jpg', 'caption': 'Two zebras that are grazing on some grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577219.jpg', 'caption': 'Two individuals, each on a horse, leading four other horses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577219.jpg', 'caption': 'A group of horses and two riders are walking in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577219.jpg', 'caption': 'Two men leading a pack of horses in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577219.jpg', 'caption': 'Two men walking with a row of horses on sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000577219.jpg', 'caption': 'two men are riding horses while four others are present. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396754.jpg', 'caption': 'A group of people horse back riding on a sandy beach.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000476925.jpg', 'caption': 'this is a man sitting on a green couch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041478.jpg', 'caption': 'a close up of a person cutting plants ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041478.jpg', 'caption': 'A person cuts green leaves into smaller pieces with scissors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041478.jpg', 'caption': 'a persons hands are next to some green leaves', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041478.jpg', 'caption': 'Person taking green vegetables over sink and clean them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000041478.jpg', 'caption': 'There is green vegetable chopped up on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347836.jpg', 'caption': 'A man and boy ride horse and stir up dust.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347836.jpg', 'caption': 'One horseback rider trailing a younger horseback rider\\n\\n\\n\\n\\n\\n\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347836.jpg', 'caption': 'A man in a red shirt and jeans riding on the back of a horse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347836.jpg', 'caption': 'A father and son riding horses though a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347836.jpg', 'caption': 'a close up of a person on a horse with a child on a horse ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262093.jpg', 'caption': 'A counter filled with lots of clutter in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262093.jpg', 'caption': 'A kitchen sink full of clutter is seen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262093.jpg', 'caption': 'A KITCHEN AREA NEAR THE SINK AND STOVE AND OVEN ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262093.jpg', 'caption': 'A kitchen sink with a flower pot, pans and utensils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262093.jpg', 'caption': 'There is a pot of flowers sitting near the sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409855.jpg', 'caption': 'A refrigerator that has a microwave above it in the kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409855.jpg', 'caption': 'A kitchen with wood cabinets, white refrigerator, white stove and a microwave above the refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409855.jpg', 'caption': 'Microwave sitting inside a wall with a refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409855.jpg', 'caption': 'The kitchen includes a microwave on a refrigerator.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409855.jpg', 'caption': 'This is the kitchen of a smaller apartment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161079.jpg', 'caption': 'A black and white photo of a woman standing next to a cows rear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161079.jpg', 'caption': 'A woman standing in a field next to a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161079.jpg', 'caption': 'A woman is standing in a fenced field near a cow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161079.jpg', 'caption': 'A woman standing in a pasture behind a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161079.jpg', 'caption': 'a woman standing behind a cow in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279948.jpg', 'caption': 'A young boy standing next to a kitchen sink next to a dish rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279948.jpg', 'caption': 'A young boy standing on a chair at the kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279948.jpg', 'caption': 'A boy in yellow shorts on chair at kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279948.jpg', 'caption': 'a little boy standing on a chair by the sink ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279948.jpg', 'caption': 'A boy pouring some drink into a cup at a counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543740.jpg', 'caption': 'A toddler in his underwear stands in front of a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543740.jpg', 'caption': 'A toddler in underwear plays in a kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543740.jpg', 'caption': 'A toddler standing on a chair in front of a sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543740.jpg', 'caption': 'A boy is standing on a chair using the kitchen sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543740.jpg', 'caption': 'a child in a kitchen on a chair at the sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403255.jpg', 'caption': 'A small white boat in the open water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403255.jpg', 'caption': 'Man driving a white speed boat through the ocean', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403255.jpg', 'caption': 'A very nice looking white boat in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403255.jpg', 'caption': 'Speedboat making turn on open ocean water with one passenger', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403255.jpg', 'caption': 'a man driving a little boat in the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137330.jpg', 'caption': 'Black and white photo of a boat full of rowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137330.jpg', 'caption': 'A team of row boat racers being instructed by their captain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137330.jpg', 'caption': 'A rowing team in a boat on the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137330.jpg', 'caption': 'A row team with a lead woman shouting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137330.jpg', 'caption': 'Coxswain motivating the crew during a sculling race', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539951.jpg', 'caption': 'A lego style kitchen with appliances and cabinets along with a checkered tile floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539951.jpg', 'caption': 'A model of a kitchen with a sink dishwasher stove refrigerator. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539951.jpg', 'caption': 'A miniature kitchen with a large electronic device.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539951.jpg', 'caption': 'A toy kitchen that has a pot on the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000539951.jpg', 'caption': 'this is a toy that looks like a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344498.jpg', 'caption': 'Friends having a drink together in the kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344498.jpg', 'caption': 'Three men and one woman stand around a green table as one man holds a silver bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344498.jpg', 'caption': 'The friends are standing around a kitchen table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344498.jpg', 'caption': 'A group of people gather in a kitchen with wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000344498.jpg', 'caption': 'Man holding a metal bowl at the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058910.jpg', 'caption': 'some kind of room with some weird things in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058910.jpg', 'caption': 'An aerial shot of a kitchen and living room model of hosue', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058910.jpg', 'caption': 'An overlooking view of a small house made out of legos. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058910.jpg', 'caption': 'A small room built from legos with a tiled floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000058910.jpg', 'caption': 'A colorful cute filled with furniture and flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074583.jpg', 'caption': 'A cat laying on a cushion on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074583.jpg', 'caption': 'A cat on a table in a fancy basket with fringe beside a parked bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074583.jpg', 'caption': 'Altered photograph of a cat sitting on a stool bench by a bicycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074583.jpg', 'caption': 'A cat sitting on top of a bed next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074583.jpg', 'caption': 'a cat that is sitting on a pillow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074132.jpg', 'caption': 'A bathroom with a large bathtub and sink under a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074132.jpg', 'caption': 'An empty bathroom has a tub and a sink in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074132.jpg', 'caption': 'A bathroom is shown with a tub and mirrors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074132.jpg', 'caption': 'A bathtub in front of a large mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074132.jpg', 'caption': 'Well lit bathroom with a jacuzzi style bath tub and small sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171809.jpg', 'caption': 'a close up of a cat laying on a bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171809.jpg', 'caption': 'a long hair cat sitting on a bench with a bicycle behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171809.jpg', 'caption': 'A brown cat sitting on the bench next to a bicycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171809.jpg', 'caption': 'a car stands on a small bench in the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171809.jpg', 'caption': 'A cat sitting on a bench with a bike behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171753.jpg', 'caption': 'An orange cat sitting on top of a white bench next to a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171753.jpg', 'caption': 'The large cat is sitting on the bench on the side of the house where the bike is parked. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171753.jpg', 'caption': 'A big orange cat sitting on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171753.jpg', 'caption': 'a cat sitting on a white bench next to a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000171753.jpg', 'caption': 'A golden cat sitting on a bench in front of a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316694.jpg', 'caption': 'A small black dog on a leash next to a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316694.jpg', 'caption': 'Dog standing next to bike while tied to the bike rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316694.jpg', 'caption': 'A dog is chained to a bike post locked up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316694.jpg', 'caption': 'A dog with a rope attached to its neck is standing on a sidewalk next to a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316694.jpg', 'caption': 'A dog on a leash is next to a bicycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264599.jpg', 'caption': 'A crowded city street with lots of people walking around.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264599.jpg', 'caption': 'people on a city street with buildings in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264599.jpg', 'caption': 'A man stands outside a shop on the city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264599.jpg', 'caption': 'A street in a down town area of an asian city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000264599.jpg', 'caption': 'A narrow city street is full of shops and people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240111.jpg', 'caption': 'A bath tub sitting next to a toilet under a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240111.jpg', 'caption': 'A BRIGHT GREEN COLORED BATHROOM WITH BABYTUB ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240111.jpg', 'caption': 'A baby bath tub is inside the regular bathtub. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240111.jpg', 'caption': 'A bathroom is painted a bright lime green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240111.jpg', 'caption': 'A lime green bathroom that is very messy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168834.jpg', 'caption': 'Cute little cat sitting inside of a bidet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168834.jpg', 'caption': 'A cat sitting inside a toilet bowl looking alert.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168834.jpg', 'caption': 'there is a small kitten inside of a sink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168834.jpg', 'caption': 'A brown cat crouches and arches its back in a white sink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168834.jpg', 'caption': 'A cat sitting inside a sink in a bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257660.jpg', 'caption': 'A toilet with a light blue cover next to a shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257660.jpg', 'caption': 'a bathroom toilet with a carpteted seat cover and floor rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257660.jpg', 'caption': 'A toilet in a bathroom with several accents upon it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257660.jpg', 'caption': 'The bathroom is decorated in blue and green.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257660.jpg', 'caption': 'A bathroom is nicely decorated with calming colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557923.jpg', 'caption': 'two people riding bicycles next to each other in a parking lot ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557923.jpg', 'caption': 'two people riding bikes in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557923.jpg', 'caption': 'Two men on bikes are riding through a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557923.jpg', 'caption': 'Two men that are sitting on bikes in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000557923.jpg', 'caption': 'Two people in jackets and helmets ride bicycles on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093736.jpg', 'caption': 'A group of bicycles on a subway train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093736.jpg', 'caption': 'Bikes are sitting against seats in a train car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093736.jpg', 'caption': 'A couple of bikes parked inside of a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093736.jpg', 'caption': 'Bicycles sit solidarity on a train car against the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093736.jpg', 'caption': 'A bike parked on a subway bus car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142257.jpg', 'caption': 'Multiple vehicles on a city street near a light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142257.jpg', 'caption': 'A street with cars and traffic lights on it during day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142257.jpg', 'caption': 'Cars at intersection waiting on a red light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142257.jpg', 'caption': 'Cars in the city are stopped at a red light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000142257.jpg', 'caption': 'A busy street with cars at an intersection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078554.jpg', 'caption': 'A restroom with toilet basins and a mirror', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078554.jpg', 'caption': 'A lego set shows a fo bathroom setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078554.jpg', 'caption': 'White toilets in a blue and white bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078554.jpg', 'caption': 'Miniature bathroom area made from white and blue toy blocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078554.jpg', 'caption': 'A toy bath room with a tolit and a sink. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028209.jpg', 'caption': 'a white sink and cabinet in a home bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028209.jpg', 'caption': 'a sink a mirror a cabinet a heater and some bottles', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028209.jpg', 'caption': 'A white sink sitting next to a washing machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028209.jpg', 'caption': 'A small well designed bathroom with a washing machine in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000028209.jpg', 'caption': 'a bathroom with various bathroom items, including a cabinet, sink, and towels, and a washing machine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234590.jpg', 'caption': 'a bathroom with towels , lights, and a sink that is clean ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234590.jpg', 'caption': 'A clean and modern looking bathroom with an unique light.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234590.jpg', 'caption': 'Modern bathroom sink and mirror in a hotel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234590.jpg', 'caption': 'A bathroom looks dark with a big light on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000234590.jpg', 'caption': 'A modern hotel bathroom is shown in dim lighting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420627.jpg', 'caption': 'A stop sign with a sticker that says \"worrying\" fastened to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420627.jpg', 'caption': 'a stop sign with a sticker attached to it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420627.jpg', 'caption': 'Stop sign with sarcastic comment placed underneath it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420627.jpg', 'caption': 'A red stop sign sitting under lush green trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000420627.jpg', 'caption': \"A stop sign with the word 'worrying' added to it. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544009.jpg', 'caption': 'A small grey rat floating in the bowl of a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544009.jpg', 'caption': 'A mouse cruelly placed into the toilet bowl for disposal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544009.jpg', 'caption': 'A mouse sitting in side of a toilet trying to get out. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544009.jpg', 'caption': 'A small mouse swimming inside of a white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000544009.jpg', 'caption': 'a little mouse swimming in a white toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155997.jpg', 'caption': 'A dog rides in a cart pulled by a man on a bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155997.jpg', 'caption': 'A man on a bike pulling a cart with a dog inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155997.jpg', 'caption': 'A dog in a basket being carried by its owner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155997.jpg', 'caption': 'A man riding a bike with a wooden trainer attached and a dog riding in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000155997.jpg', 'caption': 'A man on a bike pulling a dog in a cart.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135116.jpg', 'caption': 'A furry long haired dog standing near a car', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135116.jpg', 'caption': 'An adult golden retriever standing next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135116.jpg', 'caption': 'A dog standing up near a car looking ahead.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135116.jpg', 'caption': 'A dog standing outside next to a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135116.jpg', 'caption': 'A large brown dog standing next to a parked car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458424.jpg', 'caption': 'A dog seated on a car parked near the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458424.jpg', 'caption': 'A small adorable dog riding inside of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458424.jpg', 'caption': 'A very cute small dog in a car wearing a vest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458424.jpg', 'caption': 'A dog is in a car and wearing a harness and leash is looking at us.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000458424.jpg', 'caption': 'A small dog with a leash in a vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354537.jpg', 'caption': \"A blue vehicle with a dog sitting in the driver's seat.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354537.jpg', 'caption': 'A dog that is sitting in a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354537.jpg', 'caption': \"The dog is sitting behind the driver's seat of a blue car. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354537.jpg', 'caption': 'A dog driving a blue vehicle down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000354537.jpg', 'caption': \"A dog sits in the driver's seat of a parked car.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553698.jpg', 'caption': 'A cat sitting on a pile of books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553698.jpg', 'caption': 'A cat that is sitting on some books.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553698.jpg', 'caption': 'The cat stands on top of the stack of books at the newsstand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553698.jpg', 'caption': 'A cat sits on top of a stack of magazines. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553698.jpg', 'caption': 'A cat sitting on top of a pile of books in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348087.jpg', 'caption': 'A black and white clock on a street with people walking by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348087.jpg', 'caption': 'A clock on a pedestal in a parking lot with people walking with bags.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348087.jpg', 'caption': 'two people walking toward a large clock with roman numeral ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348087.jpg', 'caption': 'A very big pretty clock on a pole near the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348087.jpg', 'caption': 'A black clock with Roman numerals on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009274.jpg', 'caption': 'A single pillar with a clock is near approaching traffic, including a police car. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009274.jpg', 'caption': 'An outdoor clock across the street from a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009274.jpg', 'caption': 'A clock on a sidewalk with cars passing by on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009274.jpg', 'caption': 'A clock stands on the sidewalk while a police car turns the intersection in front of an old looking building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009274.jpg', 'caption': 'a clock on a pole next to a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534271.jpg', 'caption': 'Several different pots place on a stone floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534271.jpg', 'caption': 'A blue tiolet sits low on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534271.jpg', 'caption': 'There have been many different pieces of art created.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534271.jpg', 'caption': 'Port a potty displayed in basement near maintenance belongings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000534271.jpg', 'caption': 'A few containers sitting on top of a table next to a blue wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438560.jpg', 'caption': 'An old car sitting on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438560.jpg', 'caption': 'An old brown car is parked on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438560.jpg', 'caption': 'People gathering around to look at vintage cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438560.jpg', 'caption': 'Their are men around the car talking about things', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000438560.jpg', 'caption': 'A vintage car with surfboards fastened on top sits parked on the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114173.jpg', 'caption': 'The bathroom has white and green tiles on the wall, and green tiles on the floor, along with a white porcelain toilette, and a white garden style tub with a shower hook up.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114173.jpg', 'caption': 'A clean bathroom with white and green tiles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114173.jpg', 'caption': 'A tiled bathroom with a bath and shower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114173.jpg', 'caption': 'a green and white tiled bathroom a shower and a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114173.jpg', 'caption': 'A walk in shower next to a white toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258021.jpg', 'caption': 'A person with a moped is waiting for the rain to stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258021.jpg', 'caption': 'A woman gets ready to start her parked moped.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258021.jpg', 'caption': 'A woman standing next to a motor scooter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258021.jpg', 'caption': 'Outside back of a building person is by a parked motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000258021.jpg', 'caption': 'A woman next to a black moped near wet pavement.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174871.jpg', 'caption': 'A photograph of a cat and mouse on top of a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174871.jpg', 'caption': 'A mouse and cat sit on top of a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174871.jpg', 'caption': 'Small dog with both a cat and a mouse riding on its back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174871.jpg', 'caption': 'Cat and mouse riding on a dog on a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174871.jpg', 'caption': 'a close up of a dog with a cat and a mouse on its back', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009801.jpg', 'caption': 'A person near a bike and a car on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009801.jpg', 'caption': 'A parked motorcycle with a cat and a person leaning on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009801.jpg', 'caption': 'A woman is next to a scooter and cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009801.jpg', 'caption': 'a woman is looking at a cat on a bike', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009801.jpg', 'caption': 'A cat sitting on a motorcycle that is parked in a driveway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103462.jpg', 'caption': 'Black and white photograph of a woman using a sewing machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103462.jpg', 'caption': 'A woman sitting at a sewing machine cutting fabric.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103462.jpg', 'caption': 'A woman sitting in front of a sewing machine cutting fabric.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103462.jpg', 'caption': 'The older woman with the glasses is sewing the material. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000103462.jpg', 'caption': 'A black and white picture of an elderly woman sitting at a sewing machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459934.jpg', 'caption': 'A toilet sitting on its side beside a bunch of old stuff. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459934.jpg', 'caption': \"A white busted up toilet sitting on it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459934.jpg', 'caption': 'Commode and computer monitor next to junk pile.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459934.jpg', 'caption': 'A tipped over and broken toilet outside, surrounded by other thrown out items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000459934.jpg', 'caption': 'a broken toilet is laying on the ground with other junk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510169.jpg', 'caption': 'An orange and blue bus parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510169.jpg', 'caption': 'This is the front of a mobile library. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510169.jpg', 'caption': 'The front of a bus on top of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510169.jpg', 'caption': 'A mobile library bus drives on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510169.jpg', 'caption': 'A bus that is sitting in the street near grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098302.jpg', 'caption': 'A cat puking into a white toilet on top of a bathroom floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098302.jpg', 'caption': 'The black and white cat is looking into the bowl of a toilet. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098302.jpg', 'caption': 'A black and white cat standing on its back legs with its head looking into a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098302.jpg', 'caption': 'A black and white cat is staring into a toilet with the words \"barf\" on the picture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000098302.jpg', 'caption': 'there is a cat that is drinking from a toilet ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225505.jpg', 'caption': 'A bathroom with a stained glass and stone wall and tile of different shapes, sizes, and colors decorating the floor and walls with a toilet visible.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225505.jpg', 'caption': 'A bathroom has a toilet and a window made of glass bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225505.jpg', 'caption': 'A toilet inside a bathroom with lots of tiles and some brightly colored glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225505.jpg', 'caption': 'The bathroom tiles are eccentrically, stylishly mishapen and uneven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225505.jpg', 'caption': 'some black and white tile a toilet and a hallway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203085.jpg', 'caption': 'a man sits on a toilet as he plays on a computer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203085.jpg', 'caption': 'A man sits on the toilet playing on a desktop computer in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203085.jpg', 'caption': 'A man using the toilet while on the computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203085.jpg', 'caption': 'A young man working multi-tasks at a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000203085.jpg', 'caption': 'Man toilet seat while playing a game on computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292365.jpg', 'caption': 'The cat is standing up next to the toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292365.jpg', 'caption': 'A cat with paws on the toilet seat intrigued', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292365.jpg', 'caption': 'A cat with its front paws on a toilet seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292365.jpg', 'caption': 'A striped cat standing next to an open toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000292365.jpg', 'caption': 'a cat that is next to a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172710.jpg', 'caption': 'A woman kisses a man as they sit on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172710.jpg', 'caption': 'Two women riding a motorcycle at night holding a shopping bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172710.jpg', 'caption': 'A couple riding a motorcycle with bags in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172710.jpg', 'caption': 'A girl on a motorcycle holding a DSW bag and kissing a guy who is driving the bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172710.jpg', 'caption': 'A man and woman are riding a motorcycle and the woman is carrying a DSW bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276263.jpg', 'caption': 'People passed out on the floor of a bathroom with urinals and a toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276263.jpg', 'caption': 'People passed out in a public bathroom with drinks all around them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276263.jpg', 'caption': 'A person is passed out on the floor between two urinals. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276263.jpg', 'caption': 'Two people are sleeping on the floor of a bathroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276263.jpg', 'caption': 'some people laying on the ground in a bath room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457683.jpg', 'caption': 'The motorcycle has a large cargo box attached to the seat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457683.jpg', 'caption': 'A blue motorcycle with a luggage compartment parked at a driveway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457683.jpg', 'caption': 'A motorcycle is parked on a sidewalk in front of a yard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457683.jpg', 'caption': 'The motorcycle has a compartment attached on the back to hold items for the rider.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457683.jpg', 'caption': 'A motorcycle with a storage compartment on back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071145.jpg', 'caption': 'a bird on top of a cross on top of a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071145.jpg', 'caption': 'A facade to the front on an old church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071145.jpg', 'caption': 'A bird sits on the top of a cross in an old church.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071145.jpg', 'caption': 'A pigeon balances precariously at the highest point of the tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071145.jpg', 'caption': 'A bird sitting on top of a tall metal weather vein.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436968.jpg', 'caption': 'A blue new motorcycle being shown off in a lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436968.jpg', 'caption': 'Motorcycle parked on pavement near outdoor covered area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436968.jpg', 'caption': 'Blue and silver motorcycle parked on pavement under plastic awning.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436968.jpg', 'caption': 'A black and silver motorcycle parked on the pavement', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436968.jpg', 'caption': 'A motorcycle stands in an exhibits beneath some roofing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382542.jpg', 'caption': 'A bathroom with a sink, toilet and safety rails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382542.jpg', 'caption': 'A toilet with the lid up and a sink in a tiled public bathroom ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382542.jpg', 'caption': 'A small bathroom with a toilet and sink and handrails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382542.jpg', 'caption': 'There is a toilet and bathroom sink in the bathroom', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000382542.jpg', 'caption': 'A toilet that has a roll of toilet paper on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523953.jpg', 'caption': 'A young boy stands next to a row of parked motorcycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523953.jpg', 'caption': 'A boy stands next to some motorcycles while adults ride down the street behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523953.jpg', 'caption': 'A boy stands among a row of red mopeds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523953.jpg', 'caption': 'A kid standing next to a motor scooter with a crowd of people walking by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000523953.jpg', 'caption': 'A young boy stands in the middle of a pack of motorbikes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386755.jpg', 'caption': 'We are looking at the floor between the toilet and the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386755.jpg', 'caption': 'A white toilet sitting next to a toilet paper roller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386755.jpg', 'caption': 'THERE IS A TOILET IN THE BATH ROOM ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386755.jpg', 'caption': 'A bathroom toilet and chrome toilet paper dispenser. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386755.jpg', 'caption': 'a white bathroom with a silver toilet paper holder and a toilet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139567.jpg', 'caption': 'A tall church sitting next to a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139567.jpg', 'caption': 'A horse in a grassy field in front of a historic looking building with a steeple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139567.jpg', 'caption': 'A horse is on the grass by a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139567.jpg', 'caption': 'BROWN HORSE OUT ON THE LAWN, IN FRONT OF A CHURCH', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139567.jpg', 'caption': 'horse grazing in field next to old church', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294131.jpg', 'caption': 'This bathroom looks like a very compact one.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294131.jpg', 'caption': 'Closed toilet in small yellow bathroom bathed in sunlight from a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294131.jpg', 'caption': 'A toilet siting in a bathroom next to a toilet paper roller.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294131.jpg', 'caption': 'A yellow pained toilet next to trash can in the bathroom. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000294131.jpg', 'caption': 'A toilet is shown with a basket and toilet paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511572.jpg', 'caption': 'a bowl with some noodles inside of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511572.jpg', 'caption': 'A bowl filled with pasta, vegetables, and a utensil.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511572.jpg', 'caption': 'A pasta salad and a fork in a bowl. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511572.jpg', 'caption': 'Waffle-textured red linen holds a white plant with a dish, featuring tri-colored spiral pasta, and broccoli. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511572.jpg', 'caption': 'A bowl full of multi colored pasta and brocolli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510150.jpg', 'caption': 'A stoic looking cat sits in a green bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510150.jpg', 'caption': 'A black and white cat sitting in a green bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510150.jpg', 'caption': 'A cat laying on a bowl on a table in front of a fish tank.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510150.jpg', 'caption': 'A black and white cat curls up in a large mixing bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510150.jpg', 'caption': 'A cat resting inside a bowl next to different household items. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242073.jpg', 'caption': 'Toilet in a bathroom in an international location with a basket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242073.jpg', 'caption': 'A clean odd little bathroom with a white porcelain toilet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242073.jpg', 'caption': 'a small little toilet that is in a corner', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242073.jpg', 'caption': 'A white toilet sitting in the corner of a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242073.jpg', 'caption': 'A small toilet lies in a narrow lavatory.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099389.jpg', 'caption': 'A motorcycle parked in front of a graffiti covered building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099389.jpg', 'caption': 'The sport motorcycle sits in front of the graffiti filled wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099389.jpg', 'caption': 'Motorcycle parked in front of a building with graffiti on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099389.jpg', 'caption': 'A motorcycle parked outside a building with graffiti. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099389.jpg', 'caption': 'a motorcycle parked next to a building with graffiti ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199883.jpg', 'caption': 'A car, a moped, and a bike rider are stopped at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199883.jpg', 'caption': 'One man is riding a bike while another rides a motorcycle while some people are gathering around to talk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199883.jpg', 'caption': 'A cyclist, a car, and a man on a scooter wait at an intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199883.jpg', 'caption': 'an intersection with a red light where a bicyclist, scooter, and car wait.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000199883.jpg', 'caption': 'A group of drivers and bikers waiting at a stoplight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185904.jpg', 'caption': 'a man in a blue shirt riding a blue motorcycle and some people', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185904.jpg', 'caption': 'A man seated on a blue motorcycle in the middle of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185904.jpg', 'caption': 'A picture of an guy on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185904.jpg', 'caption': 'A man riding a blue motorcycle on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000185904.jpg', 'caption': 'People staring at a man on a fancy motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205002.jpg', 'caption': 'A man on a motorcycle waits at the traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205002.jpg', 'caption': 'The man waits at the traffic light on a large motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205002.jpg', 'caption': 'A man with a backpack on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205002.jpg', 'caption': 'a man that is sitting on a motorcycyle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205002.jpg', 'caption': 'a young man riding on a motorcycle wearing dark sunglasses and a black messenger bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322263.jpg', 'caption': 'A motorcycle parked on a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322263.jpg', 'caption': 'a close up of a motorcycle parked on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322263.jpg', 'caption': 'A motorcycle parked on the grass with people in back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322263.jpg', 'caption': 'A motorcycle being used as a display at an outdoor event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322263.jpg', 'caption': 'people standing around by some old motorcycles ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168580.jpg', 'caption': 'A person sitting on a motor bike on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168580.jpg', 'caption': 'Motorcycle police officer riding through the city ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168580.jpg', 'caption': 'a man with a helmet riding on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168580.jpg', 'caption': 'A police motorcyclist in motion on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000168580.jpg', 'caption': 'A cop on a motorcycle speeds down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247477.jpg', 'caption': 'Person lying on brown leather couch in sparsely fille room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247477.jpg', 'caption': 'The woman is laying down sleeping on the couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247477.jpg', 'caption': 'A woman lying down on a couch with newspapers near her feet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247477.jpg', 'caption': 'a person laying down on a brown coach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000247477.jpg', 'caption': 'A girl asleep on a couch in a wood paneled room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385181.jpg', 'caption': 'A white dish with a tomato based casserole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385181.jpg', 'caption': 'A serving of prepared food sits on a modern plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385181.jpg', 'caption': 'a square white plate with some colorful food in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385181.jpg', 'caption': 'a close up of a white plate of food on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385181.jpg', 'caption': 'A picture of a plate of food that looks to be a soup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427521.jpg', 'caption': 'A bowl of prepared food including rice, meat and broccoli.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427521.jpg', 'caption': 'Plate of food with rice, meat and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427521.jpg', 'caption': 'A plate of food with rice, meat and vegetables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427521.jpg', 'caption': 'A seafood dish served over a bowl of white rice', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427521.jpg', 'caption': 'a bowl of rice with carrots and broccoli', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461634.jpg', 'caption': 'A microwave with a bowl of food inside it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461634.jpg', 'caption': 'A picture of microwave with a glass dish full of rice and mushrooms. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461634.jpg', 'caption': 'A microwave with a glass dish full of rice and mushroom food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461634.jpg', 'caption': 'Glass cooking dish with food inside a microwave oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461634.jpg', 'caption': 'A microwave has a dish of food covered inside it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461634.jpg', 'caption': 'The dish of rice and mushrooms is inside of a microwave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200302.jpg', 'caption': 'A messy home office space with no one working.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200302.jpg', 'caption': 'A multiple shelf computer desk with two monitors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200302.jpg', 'caption': 'Two monitors sitting on a desk by a chair and a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200302.jpg', 'caption': 'A desk with two computer monitors and a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000200302.jpg', 'caption': 'A desk with two computer monitors, keyboard and mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571518.jpg', 'caption': 'All of the bunches of bananas are yellow and ripe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571518.jpg', 'caption': 'A table filled with bunches on yellow and green bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571518.jpg', 'caption': 'There are bunches of bananas grouped together with stickers on each.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571518.jpg', 'caption': 'Several bunches of bananas with a white vignette and border.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571518.jpg', 'caption': 'A framed picture of a bunch of bananas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500446.jpg', 'caption': 'A large clock mounted to the face of a buildings entrance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500446.jpg', 'caption': 'a clock in the wall of a building above a doorway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500446.jpg', 'caption': 'An old clock above a door in an archway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500446.jpg', 'caption': 'a clock in the wall above a big window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500446.jpg', 'caption': 'A rusted old clock is inset over a set of exterior doors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541223.jpg', 'caption': 'a glass building with a plane coming out of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541223.jpg', 'caption': 'A building with an airplane sitting in the middle of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541223.jpg', 'caption': 'A building with a plane sticking out the front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541223.jpg', 'caption': 'The restaurant is made from an old airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000541223.jpg', 'caption': 'An airplane cockpit is sticking out of the front of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453799.jpg', 'caption': 'A man sits on top of a motorbike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453799.jpg', 'caption': 'A man riding on his motorcycle down the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453799.jpg', 'caption': 'A man is sitting on his motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453799.jpg', 'caption': 'A man driving a motorcycle in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453799.jpg', 'caption': 'A man sits on a motorcycle in a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100896.jpg', 'caption': 'Artistic black and white photo of man on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100896.jpg', 'caption': 'A man sits on his motorcycle beside a leafless tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100896.jpg', 'caption': 'A black and white photo of a man on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100896.jpg', 'caption': 'Black and white photograph of a man on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100896.jpg', 'caption': 'A young man sits y a tree on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031965.jpg', 'caption': 'A person on a motorcycle passing a mountain on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031965.jpg', 'caption': 'a fast bike driven on curb next to a mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031965.jpg', 'caption': 'A motorcycle taking a sharp turn around a mountain corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031965.jpg', 'caption': 'a man is riding a red motorcycle on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000031965.jpg', 'caption': 'some motorcycle riders on a road and some trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302110.jpg', 'caption': 'A cat laying on a rug next to a sliding glass door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302110.jpg', 'caption': 'The cat is laying down on the floor by the glass doors. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302110.jpg', 'caption': 'a table rug black and brown cat television and cabinet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302110.jpg', 'caption': 'A room with a cat on the carpet and books', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000302110.jpg', 'caption': 'A cat is look out the window through blinds. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482597.jpg', 'caption': 'A man in an ATV is moving the cows along.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482597.jpg', 'caption': 'A man is riding a tractor following some cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482597.jpg', 'caption': 'A man herds cows down a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482597.jpg', 'caption': 'A person driving a 4 wheeler after a herd of cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000482597.jpg', 'caption': 'A man wrangling some cows with a four wheeler.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063855.jpg', 'caption': \"A train with it's doors open sitting next to a platform.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063855.jpg', 'caption': 'A subway car is stopped with its door open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063855.jpg', 'caption': 'Blue and black subway train at a stop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063855.jpg', 'caption': 'Looking in the door of a commuter train from the platform', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000063855.jpg', 'caption': 'A large long train on a steel track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154419.jpg', 'caption': \"A dog wearing a protective cone around it's head watching TV.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154419.jpg', 'caption': 'A dog has a plastic protector around his neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154419.jpg', 'caption': 'A dog wearing a protective head piece looking at a TV.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154419.jpg', 'caption': 'A dog with a clear cone on its head is watching television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154419.jpg', 'caption': 'The dog with a flee collar watches television.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116517.jpg', 'caption': 'A couple of doctors sitting in front of a sound board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116517.jpg', 'caption': 'A group of doctors sitting in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116517.jpg', 'caption': 'people in scrubs sit in front of large equipment in a hallway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116517.jpg', 'caption': 'A group of medical personal looking and listening to equipment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000116517.jpg', 'caption': 'several hospital staff watching monitors with soundboard and headphones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355370.jpg', 'caption': 'A large passenger jet sitting on top of a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355370.jpg', 'caption': 'There are many people climbing the stairs into the airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355370.jpg', 'caption': 'The people are getting off of the plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355370.jpg', 'caption': 'A line of people line up stairs toward an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000355370.jpg', 'caption': 'People line up with their luggage to board the small jet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298433.jpg', 'caption': 'a blue yellow and white jet parked and some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298433.jpg', 'caption': 'Small jet sits on tarmac of airport on sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298433.jpg', 'caption': 'A small white passenger jet parked on a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298433.jpg', 'caption': 'a white private jet blue stripes sitting in a air field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298433.jpg', 'caption': \"A jet is sitting on the tarmac with blue sky's around \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515854.jpg', 'caption': 'A group of people boarding a passenger jet up stairs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515854.jpg', 'caption': 'The passengers are going up the step in to the plane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515854.jpg', 'caption': 'Several people climbing a mobile staircase to board an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515854.jpg', 'caption': 'People are outside starting to board an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515854.jpg', 'caption': 'A group of people walking up steps into an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184789.jpg', 'caption': 'A airplane in the overcast gray sky over tarmac ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184789.jpg', 'caption': 'A large jumbo jet is ascending from an airport runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184789.jpg', 'caption': 'A black and white photo of a plane above a runway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184789.jpg', 'caption': 'A large jet liner flying through a cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000184789.jpg', 'caption': 'airplane taking off from airport on cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285681.jpg', 'caption': 'A commercial airplane either landing or preparing for take off.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285681.jpg', 'caption': 'A jet sits on the runway at an airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285681.jpg', 'caption': 'A Singapore Airlines jetliner sits on a runway with baggage carts nearby.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285681.jpg', 'caption': 'An airplane sitting on the runway on a cloudy day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000285681.jpg', 'caption': 'A Singapore Airliner is parked on the tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467475.jpg', 'caption': 'A formation of birds in a sky at sunset.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467475.jpg', 'caption': 'A airplane followed by birds flying in \"v-formation.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467475.jpg', 'caption': 'AIRPLANE IN THE SKY WITH A FOLLOWING OF GEESE BEHIND', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467475.jpg', 'caption': 'A flock of birds below an airplane in the sunset', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467475.jpg', 'caption': 'A plane flying in the sky, as birds fly behind it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084567.jpg', 'caption': 'A statue sitting on top of an old stone hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084567.jpg', 'caption': 'A statue of a man riding a horse on top of a brick wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084567.jpg', 'caption': 'Statute of a horse and rider on top of a block wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084567.jpg', 'caption': 'A statue of a man riding a horse on a tower of rocks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000084567.jpg', 'caption': 'A statue of a man sitting on a horse is siting on top of a rock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196681.jpg', 'caption': 'An airplane flying in the sky above a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196681.jpg', 'caption': 'A landscape of some mountains with a plane flying above them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196681.jpg', 'caption': 'some tree and mountains and a white airplane ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196681.jpg', 'caption': 'An airplane can be seen flying over a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000196681.jpg', 'caption': 'A small plane flying high above a mountain on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361497.jpg', 'caption': 'A airplane mirror where clouds can be seen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361497.jpg', 'caption': 'The view taken from the window seat of an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361497.jpg', 'caption': 'The view of clouds from an airplane window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361497.jpg', 'caption': 'View of clouds and the edge of a wing, from the interior of an airplane.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000361497.jpg', 'caption': 'A view of the sky and clouds through an airplane window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365556.jpg', 'caption': 'A window shot of a plane in the air with another plane present. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365556.jpg', 'caption': 'A window view form a plane of its wing and clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365556.jpg', 'caption': 'A wing outside of an airplane window high above clouds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365556.jpg', 'caption': 'A window of the view of the clouds in the sky .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000365556.jpg', 'caption': 'Plane window with plane wing and dense clouds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133098.jpg', 'caption': 'A group of scattered sheep move down a country path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133098.jpg', 'caption': 'A couple of sheep on top of trail near a pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133098.jpg', 'caption': 'A group of sheep grazing in a large open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133098.jpg', 'caption': 'this is some animals sitting in the dirt', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133098.jpg', 'caption': 'Some sheep in the middle of a field with some trees in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073622.jpg', 'caption': 'a couple of people in uniforms are sitting together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073622.jpg', 'caption': 'A group of people are sitting in a chair and one person is wearing a watch and another one is bitting his nails.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073622.jpg', 'caption': 'A group of people who are sitting together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073622.jpg', 'caption': 'A group of young people sitting around each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000073622.jpg', 'caption': 'A group of athletes sitting in chairs looking disappointed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033647.jpg', 'caption': 'Benches line the sidewalk of a city park in autumn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033647.jpg', 'caption': 'A park is full of patrons on a fall day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033647.jpg', 'caption': 'Many people walking in a park in autumn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033647.jpg', 'caption': 'A central park area with benches and trees in the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033647.jpg', 'caption': 'Leaves are falling from trees in a park type setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495311.jpg', 'caption': 'A small jet plane getting ready to be fueled at the airport.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495311.jpg', 'caption': 'A small jet sitting on top of an airport tarmac.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495311.jpg', 'caption': 'two planes at the airport and a man between them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495311.jpg', 'caption': 'An airplane is preparing to get gas so it can fly.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000495311.jpg', 'caption': 'A private jet on the tarmac being refueled.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053748.jpg', 'caption': 'A tall giraffe studding next to a parked truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053748.jpg', 'caption': 'a giraffe looking at a safari truck driving past', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053748.jpg', 'caption': 'A giraffe is standing alongside the road staring at an oncoming vehicle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053748.jpg', 'caption': 'A giraffe in a grassy area next to a jeep. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053748.jpg', 'caption': 'a giraffe standing next to a tour jeep', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007414.jpg', 'caption': 'A red car driving down a mountain road next to a herd of sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007414.jpg', 'caption': 'The car is driving down the road and the sheep is in the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007414.jpg', 'caption': 'a car parked in the road waiting for sheep to cross', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007414.jpg', 'caption': 'Cars stopped on a road blocked by a herd of sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007414.jpg', 'caption': 'Car driving down a road behind a lot of sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497674.jpg', 'caption': 'An older person sitting on a wooden bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497674.jpg', 'caption': 'A man and a dog sit in the park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497674.jpg', 'caption': 'A man sitting on a park bench reading while a dog lays on the ground in front of him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497674.jpg', 'caption': 'A man reading a book in the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497674.jpg', 'caption': 'Elderly man with dog enjoying quiet time on park bench reading.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515422.jpg', 'caption': 'A black and white image of a plane flying over treetops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515422.jpg', 'caption': 'A cloud covered mountain sitting above a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515422.jpg', 'caption': 'A plane that is flying in the air.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515422.jpg', 'caption': 'A plane flies lowly over a tree covered hill in the fog. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000515422.jpg', 'caption': 'a black and white photo of a flying airplane', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000085045.jpg', 'caption': 'A person holding a large baguette sandwich on a sidewalk near a trolly. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000085045.jpg', 'caption': 'Sandwich being held up in front of a parked bus on a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249453.jpg', 'caption': 'A woman cooking on a stove on the side of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249453.jpg', 'caption': 'A woman standing at a counter cooking food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249453.jpg', 'caption': 'a woman cooks some food outside by a wall ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249453.jpg', 'caption': 'a women that is frying up some doughntus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000249453.jpg', 'caption': 'An Amish woman sugaring freshly cooked donuts ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566105.jpg', 'caption': 'A machine that is making glazed donuts that are falling into a pan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566105.jpg', 'caption': 'A person holding a glob of dough over a pile of donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566105.jpg', 'caption': 'Freshly cooked doughnuts roll down into a circular machine to be sugared. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566105.jpg', 'caption': 'A photograph of an individual being taken in this picture. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566105.jpg', 'caption': 'A donut making machine rolling out donuts into a round pan/bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276841.jpg', 'caption': 'A woman holding two halves of a donut, one in each hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276841.jpg', 'caption': 'A woman at a baking rack with doughnuts in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276841.jpg', 'caption': 'So this is how they make donuts in a bakery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276841.jpg', 'caption': 'a woman wearing a yellow top and some donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276841.jpg', 'caption': 'A woman holding out her hands with some doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444386.jpg', 'caption': 'A man standing next to a woman inside of a donut shop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444386.jpg', 'caption': 'A man and woman displaying a box of doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444386.jpg', 'caption': 'A woman is holding a box of sprinkled doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444386.jpg', 'caption': 'A woman is holding a box of doughnuts next to a man in glasses and a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000444386.jpg', 'caption': 'A man and woman in a bakery kitchen holding some donuts', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567340.jpg', 'caption': 'A woman eating something wrapped up in a bun. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567340.jpg', 'caption': 'A woman is biting into a hot dog with ketchup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567340.jpg', 'caption': 'A woman is eating a hotdog with ketchup on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567340.jpg', 'caption': 'A woman is taking a bite out of a hotdog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567340.jpg', 'caption': 'a person biting into a hot dog with ketchup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390704.jpg', 'caption': 'a person riding a snow board on a snowy surface ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390704.jpg', 'caption': 'A young man is getting ready to take off on his snowboard, while another one waits.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390704.jpg', 'caption': 'A person moves forward on a skateboard on snow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390704.jpg', 'caption': 'A man riding a snowboard on top of snow covered ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390704.jpg', 'caption': 'A person performs snowboard tricks while a crowd looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198464.jpg', 'caption': 'Deli sandwich with beverage on table at eatery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198464.jpg', 'caption': 'A steak sub sandwich and drink sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198464.jpg', 'caption': 'a close up of a sandwich near a drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198464.jpg', 'caption': 'A steak sandwich sitting next to a cup of drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198464.jpg', 'caption': \"A photo of a steak sandwich and drink from Geno's Steaks restaurant.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109824.jpg', 'caption': 'A bunch of donuts sitting on top of metal rack covered in glaze.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109824.jpg', 'caption': 'Glazed donuts, one with a bite taken out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109824.jpg', 'caption': 'The many donuts are all different shapes and sizes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109824.jpg', 'caption': 'Glazed donuts on a cooling rack have been bitten into.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000109824.jpg', 'caption': 'A group of doughnuts sits on the cooling rack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213525.jpg', 'caption': 'a couple of doughnuts sit next to a glass of milk ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213525.jpg', 'caption': 'A small glass of milk sitting next to a platter full of doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213525.jpg', 'caption': 'A cloth covered plate of donuts next to a glass of milk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213525.jpg', 'caption': 'The doughnuts are next to the glass of milk on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000213525.jpg', 'caption': ' A savory snack of Dounts with a glass of milk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188866.jpg', 'caption': 'A girl sitting down with a donut in her hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188866.jpg', 'caption': 'The girl in the leopard jacket is eating a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188866.jpg', 'caption': 'a baby sitting in a on a chair in a restaurant holding a doughnut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188866.jpg', 'caption': 'a small child sitting at a table with a piece of food in her hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188866.jpg', 'caption': 'A PICTURE OF A LITTLE GIRL EATING A DOUGHNUT ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296544.jpg', 'caption': 'A table of food that includes pizza and a cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296544.jpg', 'caption': 'a three layered cake sits next to some pizza ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296544.jpg', 'caption': 'Several trays of pizza surrounding a large cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296544.jpg', 'caption': 'A table with four pizzas on stands and a cake in the middle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296544.jpg', 'caption': 'Ornate dessert item on display surrounded by pans of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476722.jpg', 'caption': 'a time lapse image of a snowboarder jumping off a ramp onto a snowy mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476722.jpg', 'caption': 'A time lapse photo of a snowboarder performing a jump.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476722.jpg', 'caption': 'People who are on skis and snowboards in the snow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476722.jpg', 'caption': 'An action sequence of a person shows them snowboarding onto a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476722.jpg', 'caption': 'a man is riding a snowboard on a hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395745.jpg', 'caption': 'A sandwich with meat, vegetables and dressing is sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395745.jpg', 'caption': 'A plate with two halves of a sandwich with chips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395745.jpg', 'caption': 'Two sandwiches on a plate with chips and a drink.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395745.jpg', 'caption': 'A plate with two sandwiches, cup and knife on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000395745.jpg', 'caption': 'A white plat topped with two sandwiches and chips.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443602.jpg', 'caption': 'two people eating food off of a paper plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443602.jpg', 'caption': 'A couple at an outdoor restaurant eating donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443602.jpg', 'caption': 'A couple is eating doughnuts at a doughnut stand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443602.jpg', 'caption': 'A couple getting ready to eat two different doughnuts from a vendor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443602.jpg', 'caption': 'Young man and woman eating at a food court counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357532.jpg', 'caption': 'A baseball game in progress with the batter about to swing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357532.jpg', 'caption': 'A baseball player holding a baseball bat on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357532.jpg', 'caption': 'A man prepares to hit a baseball in front of a large audience.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357532.jpg', 'caption': 'an image of a professional baseball game being played', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000357532.jpg', 'caption': 'People at a baseball stadium watching a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122413.jpg', 'caption': 'A man is in a kayak in a pool with a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122413.jpg', 'caption': 'A man riding a boat under an orange soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122413.jpg', 'caption': 'A man in a kayak in a swimming pool reaching to hit a volley ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122413.jpg', 'caption': 'Someone is in a kayak in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122413.jpg', 'caption': 'A person in a kayak is throwing a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330845.jpg', 'caption': 'A man riding a boat on top of a swimming pool.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330845.jpg', 'caption': 'A person in a kayak in a pool, playing volleyball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330845.jpg', 'caption': 'A guy in a kayak in a pool playing with a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330845.jpg', 'caption': 'A man in a kayak hitting a ball in the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000330845.jpg', 'caption': 'a person in a small boat in a pool ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202201.jpg', 'caption': 'Some people that are picking out from a large variety of doughnuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202201.jpg', 'caption': 'A man standing over many doughnuts on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202201.jpg', 'caption': 'People gathered around and selecting from two large boxes of donuts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202201.jpg', 'caption': 'an image of a tray of donuts being handed out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000202201.jpg', 'caption': 'Several people standing over two trays of donuts and cannolis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375621.jpg', 'caption': 'A man wearing glasses eating a sprinkle covered doughnut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375621.jpg', 'caption': 'a man is eating a frosted donut with sprinkles outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375621.jpg', 'caption': 'The person is eating a doughnut with sprinkles on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375621.jpg', 'caption': 'A man is eating a sprinkle covered donut. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375621.jpg', 'caption': 'a close up of a man taking a bite out of a chocolate glazed sprinkled donut', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511407.jpg', 'caption': 'a man holding up a picture of a shark', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511407.jpg', 'caption': 'A man holding a surfboard while standing in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511407.jpg', 'caption': 'A man in black shirt holding up a boogie board with a shark on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511407.jpg', 'caption': 'A man holding up his surf board with a shark on it .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000511407.jpg', 'caption': 'There is a man who is holding a boogie board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064399.jpg', 'caption': 'A female toddler in a flowered dress feeding herself some pastry', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064399.jpg', 'caption': 'A young girl eating food while sitting in front of a window with mini blinds.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064399.jpg', 'caption': 'A kid is biting into a piece of food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064399.jpg', 'caption': 'A young child eating a handful of something', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000064399.jpg', 'caption': 'an image of a child putting food in its mouth', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457584.jpg', 'caption': 'A display of donuts with various toppings and varieties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457584.jpg', 'caption': 'Gaily-decorated doughuts are on paper on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457584.jpg', 'caption': 'A table topped with different types of donuts and cakes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457584.jpg', 'caption': 'Window display of many types of donuts ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457584.jpg', 'caption': 'A variety of donuts inside a glass display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250993.jpg', 'caption': 'Various kinds of donuts displayed on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250993.jpg', 'caption': 'There are plenty of doughnuts on the table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250993.jpg', 'caption': 'A spread of several pastries that are covered in frosting. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250993.jpg', 'caption': 'A table with several kinds of donuts on top ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250993.jpg', 'caption': 'Many different donuts and pastries are inside of a display case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492378.jpg', 'caption': 'A box with four decorated donuts in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492378.jpg', 'caption': 'An assortment of donuts in a box on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492378.jpg', 'caption': 'A box filled with donuts on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492378.jpg', 'caption': 'A box with decorative tissue paper with donuts inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000492378.jpg', 'caption': 'A package of four donuts sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461491.jpg', 'caption': 'A baseball player wearing a catchers mitt while catching a baseball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461491.jpg', 'caption': 'A baseball player running to catch a baseball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461491.jpg', 'caption': 'A baseball player falls trying to catch a ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461491.jpg', 'caption': 'Kent State outfielder diving for a fly ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461491.jpg', 'caption': 'a baseball player reaching for a baseball in the outfield', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568426.jpg', 'caption': 'a person at a table with a sandwich and a drink', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568426.jpg', 'caption': 'a man is getting ready to eat a small meal', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568426.jpg', 'caption': 'a plate with the stuff to make a meatloaf sandwich on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568426.jpg', 'caption': 'A person sits before a plate of food and a glass of beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568426.jpg', 'caption': 'A man setting at a table looking at a large sandwich with vegetables on the side a glass of beer next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364190.jpg', 'caption': 'One slice is taken from the thick crust pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364190.jpg', 'caption': 'An apple pie missing one slice with a plate of spices.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364190.jpg', 'caption': 'an apple pie with some forks beside it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364190.jpg', 'caption': 'A pie with a slice missing sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364190.jpg', 'caption': 'a home made pizza sits on a trey ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452218.jpg', 'caption': 'A group of young people playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452218.jpg', 'caption': 'A group of female soccer players at the pitch playing', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452218.jpg', 'caption': 'Soccer players are on the field kicking the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452218.jpg', 'caption': 'Opposing teammates playing a game of soccer on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000452218.jpg', 'caption': 'A group of women are playing soccer on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529314.jpg', 'caption': 'A small group on the bleachers has an umbrella.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529314.jpg', 'caption': \"Spectators on bleachers watch a girls' soccer game\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529314.jpg', 'caption': 'A couple of soccer players playing a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529314.jpg', 'caption': 'Three girls are playing a soccer game in front of people watching in the stands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000529314.jpg', 'caption': 'Girls playing soccer on a soccer field with people watching from a set of bleachers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232769.jpg', 'caption': 'Some girls who are playing soccer against each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232769.jpg', 'caption': \"A women's soccer game in a field. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232769.jpg', 'caption': 'a number of people in a group playing soccer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232769.jpg', 'caption': 'A sports team is playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232769.jpg', 'caption': 'A group of young women play soccer on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566543.jpg', 'caption': 'A group of girls is playing soccer as the goalie tries to catch the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566543.jpg', 'caption': 'A group of girls in a field playing soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566543.jpg', 'caption': 'A group of women on a green field in the middle of a soccer game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566543.jpg', 'caption': 'A ALL GIRLS SOCCER TEAM ON A FIELD PLAYING SOCCER', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000566543.jpg', 'caption': 'A group of girls on a field playing soccer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256031.jpg', 'caption': 'A surfer is depicted riding a wave on a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256031.jpg', 'caption': 'A man carves a wave on his surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256031.jpg', 'caption': 'a man that is surfing on some body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256031.jpg', 'caption': 'A surfer is surfing the waves in the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000256031.jpg', 'caption': 'a person riding a surf board on a wave ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376347.jpg', 'caption': 'A person standing on a surfboard while riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376347.jpg', 'caption': 'A man water surfing nearly obscured by water spray.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376347.jpg', 'caption': 'A surfer rides a bright yellow surfboard in the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376347.jpg', 'caption': 'A surfer is riding a yellow surf board as he hits the waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000376347.jpg', 'caption': 'A man on a surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077596.jpg', 'caption': 'A man and woman holding surfboards close to the sea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077596.jpg', 'caption': 'A couple of people with surfboards walking towards the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077596.jpg', 'caption': 'a body of water that has some surfers on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077596.jpg', 'caption': 'a man and woman in wet suits carrying surf boards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000077596.jpg', 'caption': 'two people in wet suits walking towards the water ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266889.jpg', 'caption': 'Women run on a soccer pitch during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266889.jpg', 'caption': 'Three girls running after a soccer ball on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266889.jpg', 'caption': 'A group of girls on a field playing soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266889.jpg', 'caption': 'some women on a field running after a soccer ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266889.jpg', 'caption': 'A group of people playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133596.jpg', 'caption': 'Many young plays are playing soccer in the sand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133596.jpg', 'caption': 'A few friends having fun playing soccer on the beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133596.jpg', 'caption': 'there are many people playing soccer on the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133596.jpg', 'caption': 'A group of children playing volley ball in the sand. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000133596.jpg', 'caption': 'A group of girls who are playing a game in the sand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563909.jpg', 'caption': 'A woman smiles while eating a pita sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563909.jpg', 'caption': 'A blonde girl wearing sunglasses and a big smile eats a sandwich.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563909.jpg', 'caption': 'a very smiley lady eating a sandwich in the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563909.jpg', 'caption': 'A blonde woman wearing sunglasses is eating outdoors near some other people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000563909.jpg', 'caption': 'A woman is eating some food and smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417965.jpg', 'caption': 'Two men check a white surfboard on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417965.jpg', 'caption': 'Two men work on a surfboard while in a garage.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417965.jpg', 'caption': 'Two men in a garage working on a surfboard .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417965.jpg', 'caption': 'Two men in a parking garage work on a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417965.jpg', 'caption': 'Two men work on a surfboard as it sits on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320843.jpg', 'caption': 'a man holding a surf board at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320843.jpg', 'caption': 'The surfer in black suit hold surfboard standing at the entrance to the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320843.jpg', 'caption': 'A man with a surfboard about to go surfing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320843.jpg', 'caption': 'A surfer dressed in black carrying his board toward the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320843.jpg', 'caption': 'a surf boarder stands by rocks holding his surfboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364608.jpg', 'caption': 'A man standing on top of a sandy beach near an upright surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364608.jpg', 'caption': 'A surf board can be seen in the foreground and a man standing at the water can be seen in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364608.jpg', 'caption': 'A man is looking at the ocean water and a surfboard is behind a rope. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364608.jpg', 'caption': 'a young man is looking out at the distance at the ocean. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000364608.jpg', 'caption': 'A man who is standing on a beach.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065883.jpg', 'caption': 'A young boy getting ready to blow out candles for his birthday.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065883.jpg', 'caption': 'A little boy wearing a bright orange shirt prepares to blow out the candles on his birthday cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065883.jpg', 'caption': 'A boy and a birthday cake with lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065883.jpg', 'caption': 'A young boy sitting in front of a birthday cake with lit candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000065883.jpg', 'caption': 'A child is in front of a birthday cake with candles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152019.jpg', 'caption': 'A man kicks a soccer ball on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152019.jpg', 'caption': 'A man kicking a soccer ball on top of a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152019.jpg', 'caption': 'A soccer player is kicking the ball during a game.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152019.jpg', 'caption': 'a group of people playing soccer on a field ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000152019.jpg', 'caption': 'A group playing a game of soccer on a field in a park area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169045.jpg', 'caption': 'A golden plate topped with strawberries covered in sauce.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169045.jpg', 'caption': 'A number of strawberries on a green plate with sparklers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169045.jpg', 'caption': 'A plate with plates, candles, forks, scissors and knives', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169045.jpg', 'caption': 'Some strawberries floating in a bowl of pudding with sparklers added.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169045.jpg', 'caption': 'A strawberry dish with two sparklers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383270.jpg', 'caption': 'A cake sitting in a green bowl filled with fruit.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383270.jpg', 'caption': 'A chocolate strawberry dessert on a blue table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383270.jpg', 'caption': 'A chocolate pudding in a dish with strawberries arranged on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383270.jpg', 'caption': 'A gelatin dessert with strawberries in a green bowl.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383270.jpg', 'caption': 'Chocolate and strawberry dessert in a bowl sitting on a table near some silverware.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176935.jpg', 'caption': 'A couple pieces of cake sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176935.jpg', 'caption': 'a plate with a cake on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176935.jpg', 'caption': 'Chocolate cake on a white plate and tray, on mice table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176935.jpg', 'caption': 'A cake sitting on top of a plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000176935.jpg', 'caption': ' cake with several slices removed and placed on two plates. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443034.jpg', 'caption': 'A third of the chocolate cake has been eaten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443034.jpg', 'caption': 'a cake with slices cut out of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443034.jpg', 'caption': 'A mini chocolate cake with pieces missing from it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443034.jpg', 'caption': 'A chocolate cake with several slices already gone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443034.jpg', 'caption': 'Small chocolate cake which is missing two slices', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519182.jpg', 'caption': 'A chocolate cake with a ring on it is on a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519182.jpg', 'caption': 'A chocolate cake is on a white dish.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519182.jpg', 'caption': 'A chocolate cake sitting on a white plat that is sitting on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519182.jpg', 'caption': ' A chocolate ganache cake with a hotel stamp on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000519182.jpg', 'caption': 'A chocolate cake with a label on the top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350160.jpg', 'caption': 'A boy lying a cross his bed with the lap top ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350160.jpg', 'caption': 'A boy in a green shirt laying on a bed with red sheets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350160.jpg', 'caption': 'Young man laying on a bed staring at a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350160.jpg', 'caption': 'an image of a boy sitting on his bed playing on his laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000350160.jpg', 'caption': 'A young man on a bed with a laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094501.jpg', 'caption': 'A chocolate cake is next to a bottle of beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094501.jpg', 'caption': 'A slice of chocolate cake on a plate near a beer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094501.jpg', 'caption': 'a stock photo of some dessert and a beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094501.jpg', 'caption': 'A peace of cake on a plate in front of a beer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094501.jpg', 'caption': 'A slice of cake on top of a square plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362409.jpg', 'caption': 'A man on a surfboard riding a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362409.jpg', 'caption': 'A man rides a surfboard on a large wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362409.jpg', 'caption': 'A person riding waves through the ocean on their surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362409.jpg', 'caption': 'A person rides a surf board in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362409.jpg', 'caption': 'Surfer riding on decent sized wave as it breaks in ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396693.jpg', 'caption': 'A surfer is on his board in the middle of an ocean spraying wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396693.jpg', 'caption': 'A man on a surfboard riding a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396693.jpg', 'caption': 'A man is surfing a small wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396693.jpg', 'caption': 'A man riding on a wave on a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396693.jpg', 'caption': 'a person riding a surf board on a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149155.jpg', 'caption': 'a bunch of people are in the water at the beach', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149155.jpg', 'caption': 'Several surfers out in the ocean waiting for waves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149155.jpg', 'caption': 'Bunch of people out in the ocean riding surfboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149155.jpg', 'caption': 'A group of people standing at the beach riding waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000149155.jpg', 'caption': 'A large group of surfers scattered about the wavy shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367673.jpg', 'caption': 'The young girls are playing a game of soccer on the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367673.jpg', 'caption': 'A couple of girls are playing soccer with a green ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367673.jpg', 'caption': 'young girls on a grassy field playing soccer with a bright green soccer ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367673.jpg', 'caption': 'Two woman soccer players are playing soccer on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367673.jpg', 'caption': 'Two young girls on the same team playing soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372913.jpg', 'caption': 'A group of young girls playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372913.jpg', 'caption': 'Some girls playing soccer together on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372913.jpg', 'caption': 'A girl lunges as she kicks a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372913.jpg', 'caption': 'A girl in a green shirt going after a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372913.jpg', 'caption': 'A group of girls chase after a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118069.jpg', 'caption': 'A group of young girls kicking around a soccer ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118069.jpg', 'caption': 'there are many girls playing soccer on the field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118069.jpg', 'caption': 'A soccer field with girls kicking a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118069.jpg', 'caption': 'A girl getting ready to kick the ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118069.jpg', 'caption': 'Girls running after a soccer ball on a soccer field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262229.jpg', 'caption': 'A group of young ladies playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262229.jpg', 'caption': 'Four girls are playing soccer in the field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262229.jpg', 'caption': 'A few women on a field playing soccer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262229.jpg', 'caption': 'Girls kicking the ball and running playing competitive soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262229.jpg', 'caption': 'A group of girls playing soccer against each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296072.jpg', 'caption': 'A surfer hangs ten while other surfers and swimmer look on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296072.jpg', 'caption': 'A group of surfers are in the ocean catching waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296072.jpg', 'caption': 'Surfers are in the ocean and one is catching a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296072.jpg', 'caption': 'A man is surfing in the ocean next to other surfers who are sitting on their boards. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296072.jpg', 'caption': 'A man riding a wave on a surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227550.jpg', 'caption': 'Man riding a surf board in a breaking wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227550.jpg', 'caption': 'A man in a wetsuit surfing in a rough sea', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227550.jpg', 'caption': 'a man on a surfboard riding a big wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227550.jpg', 'caption': 'A surfer racing in front the a curling wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227550.jpg', 'caption': 'A man rides the wave of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001290.jpg', 'caption': 'A baby in high chair with bib and cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001290.jpg', 'caption': 'Two babies with a birthday cake with one candle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001290.jpg', 'caption': 'a close up of two children at a table with a cake', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001290.jpg', 'caption': 'a little boy looking at a birthday cake with white frosting ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000001290.jpg', 'caption': 'The children are getting ready to enjoy a piece of cake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497438.jpg', 'caption': 'Children eating at a birthday party with party hats on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497438.jpg', 'caption': 'Three small children wearing birthday next to a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497438.jpg', 'caption': 'A group of small children having a birthday party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497438.jpg', 'caption': 'Three children have cake at a birthday party.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000497438.jpg', 'caption': 'three children wearing party hats are at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488377.jpg', 'caption': 'Two men on surfboards riding on a small wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488377.jpg', 'caption': 'two men in the ocean one up on a surfboard the other in the water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488377.jpg', 'caption': 'The surfers are riding the ocean waves on their surfboards.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488377.jpg', 'caption': 'A surfer is on top of the wave and another is near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488377.jpg', 'caption': 'Two people on surfboards, one standing and the other lying down to paddle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516116.jpg', 'caption': 'Two teams of girls playing soccer in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516116.jpg', 'caption': 'A girls soccer match is being played during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516116.jpg', 'caption': 'Girls of opposing teams playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516116.jpg', 'caption': 'A group of young women playing each other in soccer. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000516116.jpg', 'caption': 'a group of girls playing a game of soccer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303534.jpg', 'caption': 'the bedroom looks neat and clean though it is a small area', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303534.jpg', 'caption': \"A bedroom with a picture window displays the owner's possessions.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303534.jpg', 'caption': 'A IMAGE OF A BED ROOM WITH CHAIRS AND BOOK PACK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303534.jpg', 'caption': 'A room with a bed, chairs and various boxes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000303534.jpg', 'caption': 'A photograph of a bedroom inside a home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513039.jpg', 'caption': 'A man surfing along a small wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513039.jpg', 'caption': 'A surfer in a yellow shirt catching a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513039.jpg', 'caption': 'A person on a surfboard rides a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513039.jpg', 'caption': 'A surfer riding the crest of a wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513039.jpg', 'caption': 'A man riding a successfully riding a wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312078.jpg', 'caption': 'A man riding a wave on top of a surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312078.jpg', 'caption': 'a person riding a wave on a surf board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312078.jpg', 'caption': 'A young person ridding the waves on a surf board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312078.jpg', 'caption': 'A surfer that is riding a really big wave in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000312078.jpg', 'caption': 'A man that is on a surfboard in the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118614.jpg', 'caption': 'A man on a surf board riding the waves in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118614.jpg', 'caption': 'A man in red shirt surfing on a white surfboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118614.jpg', 'caption': 'a person riding a surf board on a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118614.jpg', 'caption': 'The surfer is riding the big waves on the water. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118614.jpg', 'caption': 'A surfer is on top of an ocean wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004742.jpg', 'caption': 'A man on a surfboard riding an ocean wave.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004742.jpg', 'caption': 'A person rides low on a surfboard over waves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004742.jpg', 'caption': 'A man riding a wave on a surfboard in the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004742.jpg', 'caption': 'A man on a surfboard that just caught a wave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004742.jpg', 'caption': 'Man surfing on blue surfboard during low tide.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144694.jpg', 'caption': 'a group of people playing soccer on a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144694.jpg', 'caption': 'A female soccer player sprints through the air for the ball while the opposing team follows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144694.jpg', 'caption': 'A group of female soccer players in white and orange uniforms.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144694.jpg', 'caption': 'The girl kicks the soccer ball as the other girls pursue her.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000144694.jpg', 'caption': 'A group of young girls playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485564.jpg', 'caption': 'a group of females playing soccer in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485564.jpg', 'caption': 'Athletic teams are playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485564.jpg', 'caption': \"girl's soccer game showing competing girls in foreground with ball in mid air\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485564.jpg', 'caption': 'A group of women playing soccer in a grassy field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485564.jpg', 'caption': 'A group of young women playing a game of soccer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054965.jpg', 'caption': 'A wedge of crumb cake on a white plate with a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054965.jpg', 'caption': 'Blueberry breakfast cake and fork on white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054965.jpg', 'caption': 'A slice of berry crumble cake on a plate with a fork', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054965.jpg', 'caption': 'A piece of cakes with fruit in it on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054965.jpg', 'caption': 'A slice of pie with topping and a fork sits on a serving plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535626.jpg', 'caption': 'A plate with a cake on top of it next to a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535626.jpg', 'caption': 'A piece of cake that is next to a fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535626.jpg', 'caption': 'a white plate a fork and some berry pie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535626.jpg', 'caption': 'A piece of blueberry crumb pie sitting to the rest of the pie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535626.jpg', 'caption': 'A pie with a slice cut out of it, and that slice placed in the front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367597.jpg', 'caption': 'A slice of pizza is on this plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367597.jpg', 'caption': 'A white plate topped with a slice of pizza next to eating utensils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367597.jpg', 'caption': 'A plate of cheese pizza with meat and vegetable toppings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367597.jpg', 'caption': 'A white plate holding a piece of pizza with a knife and fork.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000367597.jpg', 'caption': 'A slice of pizza on a plate on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298405.jpg', 'caption': 'A gentleman putting something into a pizza box in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298405.jpg', 'caption': 'The man is putting ingredients on the pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298405.jpg', 'caption': 'A guy is putting veggies onto a pizza while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298405.jpg', 'caption': 'A person that is wearing a hat and glasses putting something on a pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298405.jpg', 'caption': 'a picture of a group of pizza eating pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337705.jpg', 'caption': 'A man wears a wrap towel in a hospital room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337705.jpg', 'caption': 'Man stands in front of hospital bed with a sheet wrapped around him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337705.jpg', 'caption': 'A man standing in a hospital room by a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337705.jpg', 'caption': 'A man is standing in a hospital room with a sheet wrapped around him. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337705.jpg', 'caption': 'A man in a hospital standing by the bed ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375211.jpg', 'caption': 'Yellow bowl filled with white powder topped in red jelly.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375211.jpg', 'caption': 'A yellow bowl with red and white food in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375211.jpg', 'caption': 'I do not know what this image is.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375211.jpg', 'caption': 'A red gel added to a mixing bowl of flour', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375211.jpg', 'caption': 'A bowl containing powdered sugar topped with a fruit syrup.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555739.jpg', 'caption': 'a close up of a piece of cake on a plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555739.jpg', 'caption': 'A chocolate and strawberry cake with a chocolate covered strawberry on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555739.jpg', 'caption': 'A white plate with a desert that includes a strawberry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555739.jpg', 'caption': 'A cake with a large strawberry decoration on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000555739.jpg', 'caption': 'A piece of chocolate cake is decorated with strawberry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099342.jpg', 'caption': 'a checkers board sits in a jail cell', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099342.jpg', 'caption': 'A prison cell that has become home is decorated with photographs and knick-knacks; also has some books and a checkers table set up. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099342.jpg', 'caption': 'There is a cot sitting beside a checkers board.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099342.jpg', 'caption': 'The jail cell is arranged neatly with striped wall, made-up beg and checkerboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000099342.jpg', 'caption': 'A small jail cell filled with personal artifacts.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546649.jpg', 'caption': 'black and white image of a bedroom with bars on the windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546649.jpg', 'caption': 'In a rundown hospital setting beds are empty.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546649.jpg', 'caption': 'Prison cell with two beds and paint peeling from walls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546649.jpg', 'caption': 'Black and white photograph of a bedroom with multiple pullout cots.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546649.jpg', 'caption': 'Beds in an old hosipital and barred windows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095866.jpg', 'caption': 'A cheesy pizza sitting on top of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095866.jpg', 'caption': 'A pizza pie, with two people preparing to take a slice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095866.jpg', 'caption': 'Pizza with bright green vegetables on it on a table. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095866.jpg', 'caption': 'A pizza with leafy greens on it is on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095866.jpg', 'caption': 'A freshly cut pizza about to be consumed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513136.jpg', 'caption': 'Food on a plate on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513136.jpg', 'caption': 'A large piece of flatbread with olive oil that is sitting on a round plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513136.jpg', 'caption': 'Freshly baked bread item, lightly seasoned, on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513136.jpg', 'caption': 'A flat bread pizza is placed on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000513136.jpg', 'caption': 'A pizza that is sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217071.jpg', 'caption': 'A bed with a purple blanket is pictured in this image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217071.jpg', 'caption': 'a room with a bed with a purple sheet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217071.jpg', 'caption': 'A bed made with drawers underneath it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217071.jpg', 'caption': 'A bed with a purple comforter in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000217071.jpg', 'caption': 'A bed covered in a purple blanket covered mattress.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106617.jpg', 'caption': 'A man and woman eating slices of pizza at a pizzaria', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106617.jpg', 'caption': 'A man and a woman eating pizza off paper plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106617.jpg', 'caption': 'A man and woman sitting at a table eating pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106617.jpg', 'caption': 'Two people sitting and eating cheese pizza on paper plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106617.jpg', 'caption': 'A man and a woman eat pizza in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508801.jpg', 'caption': 'A plate with a pizza sitting on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508801.jpg', 'caption': 'A pizza with mozzarella, tomato, and basil on a table with silverware. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508801.jpg', 'caption': 'A thin crust pizza served on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508801.jpg', 'caption': 'A dinner plate with a flat pizza crust garnished with sauce and vegetables', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508801.jpg', 'caption': 'A plate with pizza set on a table with silver wear ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135497.jpg', 'caption': 'a man holding two fingers up with both hands', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135497.jpg', 'caption': 'A man sits at a table and he is holding two fingers up on each hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135497.jpg', 'caption': 'Man posed behind a big salad bowl in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135497.jpg', 'caption': 'Amanda continues was holding up the peace sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000135497.jpg', 'caption': 'A man in a restaurant makes the V sign with both hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240637.jpg', 'caption': 'A dog sleeping on bed against the wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240637.jpg', 'caption': 'A black and white dog laying on top of a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240637.jpg', 'caption': 'The black dog lies on the bed near the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240637.jpg', 'caption': 'A dog is laying on the bed like a person.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000240637.jpg', 'caption': 'a dog laying in a bed in a bed room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277971.jpg', 'caption': 'A young man sitting next to a little girl on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277971.jpg', 'caption': 'Two young kids in bed, one reading a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277971.jpg', 'caption': 'A girl reads a book to her brother while they sit on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277971.jpg', 'caption': 'Two young children are reading a book in bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277971.jpg', 'caption': 'A boy and a girl sitting in bed looking at a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471004.jpg', 'caption': 'A person swinging a tennis racket on a tennis court. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471004.jpg', 'caption': 'A tennis player dressed in tennis whites playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471004.jpg', 'caption': 'A tennis player that just hit a tennis ball on the court ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471004.jpg', 'caption': 'A man swinging a tennis racquet on a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000471004.jpg', 'caption': 'A person holding a tennis racquet on top of a court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360721.jpg', 'caption': 'A white plate topped with pieces of pizza.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360721.jpg', 'caption': 'A picture has text describing the food shown', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360721.jpg', 'caption': 'Pieces of a pizza with goat cheese, bacon, fig jam and kale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360721.jpg', 'caption': 'Two plates with several pieces of pizza on each plate, and on the pizza is cheese, bacon and kale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360721.jpg', 'caption': 'A graphic advertises savory fig jam, goat cheese, bacon and kale.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358055.jpg', 'caption': 'a man holding onto a roll of film in one hand and a tennis racket in the other ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358055.jpg', 'caption': 'A man holding a racket on a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358055.jpg', 'caption': 'A man on the tennis court holding a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358055.jpg', 'caption': 'a man in black shirt playing serving at badmitten.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358055.jpg', 'caption': 'a man with a tennis racket gets ready to hit a bad mitton ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491098.jpg', 'caption': 'A formally set dining table is adorned with fresh tulips. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491098.jpg', 'caption': 'a large table with many chairs and plates ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491098.jpg', 'caption': 'A dinner table with a bunch of flowers on it in vases. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491098.jpg', 'caption': 'A table and chairs all set of with dishes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491098.jpg', 'caption': 'the table is set in the formal dining room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134551.jpg', 'caption': 'A man holding a tennis racket in one hand and bouncing a tennis ball wit the other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134551.jpg', 'caption': 'A picture of a man on a tennis court taken from behind a chain link fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134551.jpg', 'caption': 'A guy is photographed as he is playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134551.jpg', 'caption': 'A black and white picture of a person on a tennis court through the fence', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000134551.jpg', 'caption': 'A man with a hat walking behind a gate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082554.jpg', 'caption': 'A large cheesy pizza sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082554.jpg', 'caption': 'A pizza that is on a platter on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082554.jpg', 'caption': 'A large pizza with toppings on it sitting on a pan. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082554.jpg', 'caption': 'there is a very large pizza pie on this table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082554.jpg', 'caption': 'A large pizza and a cell phone on a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437618.jpg', 'caption': 'A large television and some chairs in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437618.jpg', 'caption': 'some tables chairs a yellow rug and some monitors ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437618.jpg', 'caption': 'Two tall television monitors are next to chairs and desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437618.jpg', 'caption': 'A room with large desks and chairs with two television monitors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000437618.jpg', 'caption': 'A table is shown with chairs and televisions.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094012.jpg', 'caption': 'A man holding a tennis racquet on top of a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094012.jpg', 'caption': 'A man taking a swing at a tennis ball', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094012.jpg', 'caption': 'A man hitting a tennis ball on a tennis court.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094012.jpg', 'caption': 'A man hitting a tennis ball with his racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000094012.jpg', 'caption': 'THERE IS A TENNIS PLAYER PLAYING TENNIS ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570242.jpg', 'caption': 'A close up of a house phone showing only the numbers in focus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570242.jpg', 'caption': 'A television remote with several buttons and a blurry background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570242.jpg', 'caption': 'Picture of what might be a TV remote control and a distorted picture in the front.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570242.jpg', 'caption': 'There is a close up photo of a phone dial pad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000570242.jpg', 'caption': 'The keys 1, 4, 7, and 8 are clearly visible on the remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174091.jpg', 'caption': 'A pizza sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174091.jpg', 'caption': 'A pizza that is sitting on a plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174091.jpg', 'caption': 'there is a freshly made pizza being put on a white plate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174091.jpg', 'caption': 'A freshly made pizza that is being served for a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174091.jpg', 'caption': 'A pizza, with a saucy and leafy topping, on a plate on a dark brown table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323766.jpg', 'caption': 'Young people open up many pizza boxes lined up on tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323766.jpg', 'caption': 'An assembly line of people boxing a variety of pizzas.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323766.jpg', 'caption': \"Long tables full of boxed pizza's and people helping themselves.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323766.jpg', 'caption': 'there are people processing pizza on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000323766.jpg', 'caption': 'School lunch room with dozens and dozens of pizzas on tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009002.jpg', 'caption': 'There is a freshly made pizza out of the oven', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009002.jpg', 'caption': 'A man holding a square shaped pizza pie.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009002.jpg', 'caption': 'A freshly made pizza, hot from the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009002.jpg', 'caption': 'A homemade square pizza fresh from the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000009002.jpg', 'caption': 'A piece of food that is on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378894.jpg', 'caption': 'a man stands on a chair looking at a computer ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378894.jpg', 'caption': 'A man is standing on a chair using his laptop that is on top of a scaffolding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378894.jpg', 'caption': 'Man standing on a chair looking at a computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378894.jpg', 'caption': 'A man stands atop a chair and peers at a laptop on a scaffold.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000378894.jpg', 'caption': 'a person standing on a chair using a computer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561004.jpg', 'caption': 'Two pizzas sitting on pizza pans on a oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561004.jpg', 'caption': 'Two pizzas that are sitting on pans on a stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561004.jpg', 'caption': \"Two large pizza's in pizza pans on an oven.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561004.jpg', 'caption': 'Two pepperoni pizzas rest on the counter after coming out of the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561004.jpg', 'caption': 'Two pepperoni pizzas cooling on the stove top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046732.jpg', 'caption': 'A pizza that is on a wooden platter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046732.jpg', 'caption': 'Partially eaten pizza near other upper class menu items on table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046732.jpg', 'caption': 'A mushroom pizza sitting on a board with a plate of salad and glass of wine in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046732.jpg', 'caption': 'A pizza that has been cut sitting on a cutting board', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000046732.jpg', 'caption': 'A half eaten pizza that is on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556216.jpg', 'caption': 'The backside of a tennis player who just hit a ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556216.jpg', 'caption': 'A woman standing on a tennis court holding a tennis racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556216.jpg', 'caption': 'A woman jumps to serve a tennis ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556216.jpg', 'caption': 'A tennis player taking aim for a hit at the ball.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000556216.jpg', 'caption': 'A woman has just hit a tennis ball at an Olympic game.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000036012.jpg', 'caption': 'There are four buses parked in a row next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036012.jpg', 'caption': 'Three red double decker buses that are parked and one green bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000036012.jpg', 'caption': 'three double deckered busses parked near a green truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320893.jpg', 'caption': 'A bench in the woods surrounded by leaves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320893.jpg', 'caption': 'A rustic wooden bench is sitting in a heavily wooded area all alone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320893.jpg', 'caption': 'A wooden bench nestled in front of sparse woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320893.jpg', 'caption': 'Wooden bench located in a lush wooded area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000320893.jpg', 'caption': 'A lone wooden bench sitting in a wooded forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120831.jpg', 'caption': 'A bench sitting in a grassy area. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120831.jpg', 'caption': 'A park bench sitting in the woods ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120831.jpg', 'caption': 'a bench near many different plant life near a path', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120831.jpg', 'caption': 'A wooden bench sitting next to a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120831.jpg', 'caption': 'A couple of old benches that are sitting in a grassy spot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229478.jpg', 'caption': 'An opened fire hydrant spills water onto a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229478.jpg', 'caption': 'the fire hydrant is letting water out ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229478.jpg', 'caption': 'A fire hydrant spilling water into a street near a fire truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229478.jpg', 'caption': 'Flowing fire hydrant on a street in front of a fire truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229478.jpg', 'caption': 'A fire truck and ambulance parked next to a fire hydrant shooting water into the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562708.jpg', 'caption': 'The back of a bus riding on the street in traffic ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562708.jpg', 'caption': \"Car's and buses going down a busy highway.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562708.jpg', 'caption': 'the back of a bus from the San Mateo County Transit District on a highway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562708.jpg', 'caption': 'Buses, cars and trucks are on a highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000562708.jpg', 'caption': 'A bus is driving on the highway near other vehicles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033830.jpg', 'caption': 'a man assisting a woman shearing a sheep with several children watching', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033830.jpg', 'caption': 'A child sheering a sheep while others watch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033830.jpg', 'caption': 'A man and woman cutting some fur using scissors as a group of kids watches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033830.jpg', 'caption': 'A family shearing a sheep at a festival.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000033830.jpg', 'caption': 'A man shaving the wool off of a sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093964.jpg', 'caption': 'A white city bus traveling down a street with traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093964.jpg', 'caption': 'a white blue and orange bus and a traffic light', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093964.jpg', 'caption': 'A large white and yellow bus riding on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093964.jpg', 'caption': 'A large city bus driving through an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000093964.jpg', 'caption': 'A bus with bicycles attached to the front passing through an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071965.jpg', 'caption': 'A green mailbox with graffiti on the side', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071965.jpg', 'caption': 'A green mail box sitting next to a white brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071965.jpg', 'caption': 'A mailbox covered in graphitti next to a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071965.jpg', 'caption': 'Green mailbox sitting in front of a red fire hydrant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071965.jpg', 'caption': 'A green box to drop mail into covered with graffiti ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348648.jpg', 'caption': 'A fire hydrant sitting on the side of a road near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348648.jpg', 'caption': 'a red fire hydrant is next to a yellow wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348648.jpg', 'caption': 'A very cute looking fire hydrant by a yellow wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348648.jpg', 'caption': 'A fire hydrant in front of a building with two windows. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000348648.jpg', 'caption': 'A fire hydrant stands out on the bright yellow wall. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399091.jpg', 'caption': 'a bench surrounded by different types of plant life ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399091.jpg', 'caption': 'A bench in a garden with gravel walkway', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399091.jpg', 'caption': 'A wooden bench sitting in the woods off a path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399091.jpg', 'caption': 'There is a wood bench in the garden.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399091.jpg', 'caption': 'A wooden bench is out in nature on a nice day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427376.jpg', 'caption': 'A fire hydrant by a sidewalk marked with paint.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427376.jpg', 'caption': 'A fire hydrant in the grass next to a sidewalk with paint on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427376.jpg', 'caption': 'a red fire hydrant at the corner of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427376.jpg', 'caption': 'A red fire hydrant near a sidewalk that has been painted on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000427376.jpg', 'caption': 'A red fire hydrant on the corner of a sidewalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000641.jpg', 'caption': 'A bus that is sitting in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000641.jpg', 'caption': 'A long white bus driving down a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000641.jpg', 'caption': 'A large passenger bus going down a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000641.jpg', 'caption': 'a bus moving down a road next to a street corner. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000000641.jpg', 'caption': 'there is a large bus that is coming up the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289073.jpg', 'caption': 'A close up of a red fire hydrant next to a light pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289073.jpg', 'caption': 'A fire hydrant next to a light pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289073.jpg', 'caption': 'A red fire hydrant next to lampposts on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289073.jpg', 'caption': 'A red fire hydrant sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289073.jpg', 'caption': 'Someone on a bike rides pass a a dual street light and a fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579036.jpg', 'caption': 'a red bus with an open upper deck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579036.jpg', 'caption': 'A double deck tour bus riding through a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579036.jpg', 'caption': 'A double decker bus tour of the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579036.jpg', 'caption': 'A red double-decker bus on the street with tall buildings in the background. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000579036.jpg', 'caption': 'A double decker bus is driving past some skyscrapers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180541.jpg', 'caption': 'a black and white double decker bus and some cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180541.jpg', 'caption': 'A black and white double decker bus is on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180541.jpg', 'caption': 'A black double decker bus that gives ghost tours', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180541.jpg', 'caption': 'A double decked bus is stopped in traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000180541.jpg', 'caption': 'A black double decker bus drives down the street with an advertisement on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279154.jpg', 'caption': 'a fire hydrant in a field with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279154.jpg', 'caption': \"A red fire hydrant that's out in the middle of nowhere. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279154.jpg', 'caption': 'A fire hydrant is at the top of a hill. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279154.jpg', 'caption': 'A fire hydrant in the grass near the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279154.jpg', 'caption': 'A red fire hydrant is set up in a grassy clearing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189245.jpg', 'caption': 'View of a snow capped mountain above trees and a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189245.jpg', 'caption': 'A bench in a clearing at the foot of a mountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189245.jpg', 'caption': 'A bench in some grass near some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189245.jpg', 'caption': 'A large mountain overlooks a bench and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000189245.jpg', 'caption': 'A bench with a view of the mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496680.jpg', 'caption': 'a big blue bus that is parked next to some cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496680.jpg', 'caption': 'A city bus parked at the curb ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496680.jpg', 'caption': 'This silver and blue bus has a face painted on the front of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496680.jpg', 'caption': \"A bus driving down a street with a bears face on it's front.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000496680.jpg', 'caption': 'A smiling dog painted on the front of a large blue bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463783.jpg', 'caption': 'Two men and a woman sit on a park bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463783.jpg', 'caption': 'A black and white photo of two men and a woman on a bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463783.jpg', 'caption': 'Service man sitting on park bench with two other people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463783.jpg', 'caption': 'A woman is flanked by two men sitting on a bench in an outdoor area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000463783.jpg', 'caption': \"A 1950's photo showing a two young men, one in military uniform, flanking a young woman on a bench\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334311.jpg', 'caption': 'A bench sitting on the side of an empty walking path.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334311.jpg', 'caption': 'A wooden park bench next to an empty road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334311.jpg', 'caption': 'An empty road in a park with one bench. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334311.jpg', 'caption': 'A wooden bench, on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000334311.jpg', 'caption': 'A wooden park bench next to a country road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254001.jpg', 'caption': 'a bench sitting by a wall and surrounded by purple flowers ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254001.jpg', 'caption': 'A bench and flowers sitting in front of a stone wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254001.jpg', 'caption': 'a wood bench with some flowers next to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254001.jpg', 'caption': 'The flowers are next to the open bench', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000254001.jpg', 'caption': 'A bench that is sitting against a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139549.jpg', 'caption': 'A bus and car wait at an intersection on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139549.jpg', 'caption': 'A city bus stopped at a crosswalk on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139549.jpg', 'caption': 'A bus driving down a street next to buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139549.jpg', 'caption': 'This is a bus traveling down a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000139549.jpg', 'caption': 'White bus with red and blue marking at street intersection in urban setting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414249.jpg', 'caption': 'A empty park bench that is near some flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414249.jpg', 'caption': 'A bench and seat in the middle of a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414249.jpg', 'caption': 'A row of park benches sitting next to a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414249.jpg', 'caption': 'The park benches are put next to the planters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000414249.jpg', 'caption': 'there are many black benches on the side of the grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475529.jpg', 'caption': 'Firetruck driving through city with lights on, fast.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475529.jpg', 'caption': 'A red fire truck driving down the middle of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475529.jpg', 'caption': 'a red fire truck driving down a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475529.jpg', 'caption': 'A firetruck that is sitting in the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000475529.jpg', 'caption': 'The fire truck is moving through the streets. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398628.jpg', 'caption': 'A group of giraffes hang around in the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398628.jpg', 'caption': 'Several giraffes eating and moving around their habitat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398628.jpg', 'caption': 'Two giraffes nuzzle each other in a zoo as the others search the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398628.jpg', 'caption': 'A herd of giraffe standing on a dirt hill at a zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000398628.jpg', 'caption': 'Two giraffes snuggling among a group of giraffes.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295336.jpg', 'caption': 'Four giraffes huddling around a tree inside a fenced area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295336.jpg', 'caption': 'A lot of animals that are walking around the dirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295336.jpg', 'caption': 'Several giraffes stand around a tree in the zoo.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295336.jpg', 'caption': 'Four giraffes encircle the palm tree within the fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000295336.jpg', 'caption': 'A group of giraffe standing next to a wooden tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145061.jpg', 'caption': 'There is a bus and a car on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145061.jpg', 'caption': 'A multi colored bus with a silver sedan on the side of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145061.jpg', 'caption': 'A car next to a bus on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145061.jpg', 'caption': 'A bus being passed by a car on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145061.jpg', 'caption': 'A car and a city bus sit side by side on the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435703.jpg', 'caption': 'A grey discolored fire hydrants stands on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435703.jpg', 'caption': 'A fire hydrant on a city street sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435703.jpg', 'caption': 'A rusty hydrant has some graffiti on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435703.jpg', 'caption': 'A fire hydrant with an open outlet sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000435703.jpg', 'caption': 'An old fire hydrant on an empty sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078023.jpg', 'caption': 'A white fire hydrant next to a red newspaper dispenser.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078023.jpg', 'caption': 'A white fire hydrant next to a newspaper dispenser. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078023.jpg', 'caption': 'The white fire hydrant is on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078023.jpg', 'caption': 'A water hydrant near a booth with some vehicles in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078023.jpg', 'caption': 'A fire hydrant next to a paper box on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118956.jpg', 'caption': 'a yellow and white fire hydrant near a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118956.jpg', 'caption': 'A yellow and white fire hydrant sitting next to train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118956.jpg', 'caption': 'a yellow and white fire hydrant near railroad tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118956.jpg', 'caption': 'A fire hydrant in front of a railroad track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118956.jpg', 'caption': 'a yellow and white fire hydrant sitting close to some tracks ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187876.jpg', 'caption': 'a group of giraffes standing near one another with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187876.jpg', 'caption': 'A close up of several giraffes standing around under a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187876.jpg', 'caption': 'Colorful giraffes are grazing by some green trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187876.jpg', 'caption': 'three giraffes standing next to trees and shrubbery.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187876.jpg', 'caption': 'Several giraffes are standing near some trees, one is eating.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405047.jpg', 'caption': 'A large bus is parked outside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405047.jpg', 'caption': 'A city bus is parked along side the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405047.jpg', 'caption': 'A bus on the side of the street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405047.jpg', 'caption': 'a public transit bus on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000405047.jpg', 'caption': 'A double decker transit bus parks by a blue on the side of the street in front of a brick building in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478665.jpg', 'caption': 'A tropical bird perches on a rope surrounded by greenery. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478665.jpg', 'caption': 'A bird in the rainforest that looks like it has two beaks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478665.jpg', 'caption': 'A large black bird with a large orange beak sitting on a rope.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478665.jpg', 'caption': 'This is an exotic bird standing on a rope in a jungle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478665.jpg', 'caption': 'A bird that is sitting on a rope by some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090442.jpg', 'caption': 'A red bus on street next to buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090442.jpg', 'caption': 'a public transit bus on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090442.jpg', 'caption': 'A large red bus on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090442.jpg', 'caption': 'A red bus crossing a street next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090442.jpg', 'caption': 'A red bus is parked along the side of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024195.jpg', 'caption': 'a yellow bus that is next to a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024195.jpg', 'caption': 'there is a green bus that is stopped at the bus stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024195.jpg', 'caption': 'a green bus is sitting by a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024195.jpg', 'caption': 'A lime green bus parked in front of parking meters.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024195.jpg', 'caption': 'A green bus at a street with a tree by it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525542.jpg', 'caption': 'a white bus is on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525542.jpg', 'caption': 'A street shot centers mainly on a bus alongside a sidewalk with a sign and bus stop conveyance, that is also right behind the rear part of a second bus, though a periphery section past the bus shows trees and a turning truck. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525542.jpg', 'caption': 'Several vehicles are moving along a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525542.jpg', 'caption': 'a couple of city buses drive down a street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000525542.jpg', 'caption': 'A bus getting ready to make a stop in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508165.jpg', 'caption': 'A yellow bus driving down a road under a tall structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508165.jpg', 'caption': 'A yellow bus is parked alongside a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508165.jpg', 'caption': 'a yellow bus going under an underpass ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508165.jpg', 'caption': 'Bright yellow bus on street in large city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000508165.jpg', 'caption': 'a big yellow bus that is parked by a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327149.jpg', 'caption': 'a fire hydrant on a sidewalk near a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327149.jpg', 'caption': 'There is a fire hydrant on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327149.jpg', 'caption': 'A fire hydrant sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327149.jpg', 'caption': 'a green fire hydrant siting by a yellow pole ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000327149.jpg', 'caption': 'A fire hydrant that is on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409138.jpg', 'caption': 'A city bus is parked along the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409138.jpg', 'caption': 'A city bus is traveling down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409138.jpg', 'caption': 'A large passenger bus traveling on a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409138.jpg', 'caption': 'A bus that is driving down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000409138.jpg', 'caption': 'A street scene with the city bus going by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061959.jpg', 'caption': 'A photo of a bus driving down the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061959.jpg', 'caption': 'A bus driving down a street past a jack in the box.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061959.jpg', 'caption': 'A transit bus driving down a highway by some fast food restaurants.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061959.jpg', 'caption': 'A white and red bus on street next to buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061959.jpg', 'caption': \"A colorful bus is in traffic near a Jack in the Box and Church's Chicken.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335929.jpg', 'caption': 'Two roosters standing next to a wooden fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335929.jpg', 'caption': 'A group of chickens standing next to a red fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335929.jpg', 'caption': 'A red fire hydrant with some chickens near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335929.jpg', 'caption': 'Two roosters on the ground by a fence ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335929.jpg', 'caption': 'Two roosters walking next to a fence, near a fire hydrant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057390.jpg', 'caption': 'A small brown bird is sitting inside by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057390.jpg', 'caption': 'A little brown bird sits on a white ledge near a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057390.jpg', 'caption': 'A little brown bird sitting by a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057390.jpg', 'caption': 'The orange legs are striking on this drab brown bird.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000057390.jpg', 'caption': 'A bird near a window during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434867.jpg', 'caption': 'An orange and grey trolley on street next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434867.jpg', 'caption': 'A trolley is traveling down the street along a cable. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434867.jpg', 'caption': 'a big empty yellow bus in front of a store', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434867.jpg', 'caption': 'A large trolley going down a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000434867.jpg', 'caption': 'An orange trolley is on the street next to a building with a lot of windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097868.jpg', 'caption': 'A blue, white and red fire hydrant sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097868.jpg', 'caption': 'A red white and blue fire hydrant next to a street filled with vehicles at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097868.jpg', 'caption': 'An old fire hydrant is painted red, white and blue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097868.jpg', 'caption': 'RED WHITE AND BLUE FIRE HYDRANT NEAR A BUSY STREET AT NIGHT', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097868.jpg', 'caption': 'a patriotic red white and blue fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268044.jpg', 'caption': 'Giraffes have a very long tongue to go with their long neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268044.jpg', 'caption': 'Some people standing by a small pen with three giraffes in it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268044.jpg', 'caption': 'a couple of people stand in front of some giraffes ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268044.jpg', 'caption': 'A person standing by a fence and some giraffe.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268044.jpg', 'caption': 'A man feeding giraffes with pellets as others watch', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282366.jpg', 'caption': 'a city bus drives down a street next to a building ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282366.jpg', 'caption': 'A bus driving down a street past some buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282366.jpg', 'caption': 'Street with townhouses along it and a bus driving up it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282366.jpg', 'caption': 'a public transit bus on a city street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000282366.jpg', 'caption': 'A bus pulls up to a village on a near empty road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005437.jpg', 'caption': 'A fire hydrant with a blue jacket on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005437.jpg', 'caption': 'A blue jacket laying on top of a fire hydrant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005437.jpg', 'caption': 'a coat sitting on top of a metal pipe in the corner of the yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005437.jpg', 'caption': 'A fire hydrant covered in a blue rainbow jacket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005437.jpg', 'caption': 'Blue jacket sitting on top of a fire hydrant. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107840.jpg', 'caption': 'A bus traveling past a traffic light next to a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107840.jpg', 'caption': 'A bus sitting on the side of the road, during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107840.jpg', 'caption': 'the town bus is driving down the track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107840.jpg', 'caption': 'A city bus is stopped at a light on a sunny day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000107840.jpg', 'caption': 'A bus that is pulled over to the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211487.jpg', 'caption': 'A red and white fire hydrant is on the lawn.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211487.jpg', 'caption': 'Red and silver fire hydrant at the edge of grass near street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211487.jpg', 'caption': 'A red and white fire hydrant at the corner of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211487.jpg', 'caption': 'A fire hydrant sits near the curb along a road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000211487.jpg', 'caption': 'A red fire hydrant with silver top on side of street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088084.jpg', 'caption': 'A red and white painted fire plug on the sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088084.jpg', 'caption': 'Fire hydrant on side of the sidewalk next to a crosswalk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088084.jpg', 'caption': 'a red and white fire hydrogen that is by a curb', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088084.jpg', 'caption': 'A fire hydrant that is sitting on a sidewalk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000088084.jpg', 'caption': 'Red and white fire hydrant sitting on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559416.jpg', 'caption': 'A man and two sheep stand on green grass with a castle in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559416.jpg', 'caption': 'a man standing next to a sheep and horse on a little hill ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559416.jpg', 'caption': 'A man walking with two animals following him with a big building behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559416.jpg', 'caption': 'a person with a few sheep at a grassy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559416.jpg', 'caption': 'A person standing with a cane in grass, in front of two sheep, with a castle in the far distance, and cloudy blue sky above.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464390.jpg', 'caption': 'An oxen looking at a giraffe near some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464390.jpg', 'caption': 'A giraffe and animal with large horns in grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464390.jpg', 'caption': 'A big horned cow and a giraffe together in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464390.jpg', 'caption': 'A giraffe and a cow are in a fenced enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000464390.jpg', 'caption': 'A smaller bull is staring at the much bigger giraffe. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568956.jpg', 'caption': 'A flock of birds gathered on and around some people in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568956.jpg', 'caption': 'A boy in a raincoat is standing among pigeons while a person with umbrella looks on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568956.jpg', 'caption': 'The child is entertaining the pigeons in the rain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568956.jpg', 'caption': 'Child in yellow raincoat with birds sitting on top of her. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000568956.jpg', 'caption': 'A child in a rain coat with birds surrounding them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299442.jpg', 'caption': 'a white and yellow bus and its driver', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299442.jpg', 'caption': 'A bus with an advertisement in a foreign language. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299442.jpg', 'caption': 'A bus in Japan has anime characters painted on its sides', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299442.jpg', 'caption': 'A brightly colored handicap accessible bus pulls away from the roadside. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000299442.jpg', 'caption': 'a yellow and white bus is driving down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388812.jpg', 'caption': 'A group of giraffe standing on top of a lush green field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388812.jpg', 'caption': 'Three giraffes standing in the sun in the woods. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388812.jpg', 'caption': 'A group of giraffes that are standing in the grass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388812.jpg', 'caption': 'a bunch of giraffes walk around in a vegetation area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388812.jpg', 'caption': 'A group of giraffes standing and grazing in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417115.jpg', 'caption': 'A man that is standing in the street near a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417115.jpg', 'caption': 'A man in a suit walking through a cross walk on a street filled with traffic. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417115.jpg', 'caption': 'A person crossing a street by a large bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417115.jpg', 'caption': 'A man is walking across a street by a bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417115.jpg', 'caption': 'A man walks across the street at a city intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232550.jpg', 'caption': 'a man standing on a sidewalk outside a parkded bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232550.jpg', 'caption': 'Adults standing on sidewalk at intersection with commuter bus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232550.jpg', 'caption': 'A man walking towards a curb when a bus is passing by. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232550.jpg', 'caption': 'A bus parked by the curb in a city ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000232550.jpg', 'caption': 'There is a picture of an outside area.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457348.jpg', 'caption': 'A large bus is stopped at a red stoplight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457348.jpg', 'caption': 'A passenger bus is travelling on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457348.jpg', 'caption': 'A bus driving down a street past traffic lights.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457348.jpg', 'caption': 'A bus driving through a street intersection behind a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000457348.jpg', 'caption': 'A bus going through an intersection with trees and parked cars near the sidewalks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154168.jpg', 'caption': 'A bus driving down a street past tall houses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154168.jpg', 'caption': 'A city transit bus pulled up to a curb across from a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154168.jpg', 'caption': 'a bus with an advertisement on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154168.jpg', 'caption': 'A bus with a fast food ad showing a great deal. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154168.jpg', 'caption': 'a bus stopped to pick up passengers and a red truck', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019624.jpg', 'caption': 'A busy street at night with parked cars on the side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019624.jpg', 'caption': 'Automobiles and motorcycles are parked on the side of a busy street in the evening. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019624.jpg', 'caption': 'A crowd of motorbikes parked along a busy street in a small city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019624.jpg', 'caption': 'a busy city with cares and mopeds everywhere', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019624.jpg', 'caption': 'BUSY CITY STREET AT DUSK WITH SUN SETTING IN BACKGROUND', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212507.jpg', 'caption': 'Two long buses parked on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212507.jpg', 'caption': 'A few buses are parked outside in a line. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212507.jpg', 'caption': 'two blue and yellow buses lined up on a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212507.jpg', 'caption': 'Several buses line up in a town, outside a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000212507.jpg', 'caption': 'Three buses parked in row on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431152.jpg', 'caption': 'People walking down a residential street where cars are parked.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431152.jpg', 'caption': 'Pedestrians and parked cars on a small village street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431152.jpg', 'caption': 'Cars parked in the street of a town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431152.jpg', 'caption': 'Cars are parked on a street near people walking.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431152.jpg', 'caption': 'A street filled with traffic next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527961.jpg', 'caption': 'a purple bus standing outside the building and a woman coming out', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527961.jpg', 'caption': 'A purple triple decker passenger bus waits for riders.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527961.jpg', 'caption': 'A very large purple triple decker bus with a person standing on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527961.jpg', 'caption': 'A triple decker purple bus is fenced in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000527961.jpg', 'caption': 'A large triple deck bus parked on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023351.jpg', 'caption': 'A giraffe that is laying on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023351.jpg', 'caption': 'A giraffe lays down in an enclosure. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023351.jpg', 'caption': 'some giraffes dirt trees fence and a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023351.jpg', 'caption': 'A giraffe sitting down while another giraffes eats on branches. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000023351.jpg', 'caption': 'Three giraffes, one seated on some dirt, the other two standing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500468.jpg', 'caption': 'A large group of chickens stand together in a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500468.jpg', 'caption': 'THERE ARE A LOT OF WHITE CHICKENS IN A ROOM', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500468.jpg', 'caption': 'One chicken is hurt in this large chicken farm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500468.jpg', 'caption': 'A very big building with a bunch of chickens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000500468.jpg', 'caption': 'A large building of chickens with one lying down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388770.jpg', 'caption': 'A flock of birds standing on top of a metal set of bars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388770.jpg', 'caption': 'Birds walking along the edge of metal structure below a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388770.jpg', 'caption': 'Eight birds sit on a metal arch way over a street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388770.jpg', 'caption': 'a group of birds sitting on a structure all together ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000388770.jpg', 'caption': 'Birds perched on green iron rails with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343821.jpg', 'caption': 'A duck and baby ducks are in the blue water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343821.jpg', 'caption': 'A mother swan watches over her young babies', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343821.jpg', 'caption': 'a goose and baby geese in a body of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343821.jpg', 'caption': 'A swan and her babies floating on a lake together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000343821.jpg', 'caption': 'A few baby birds are swimming next to their mother.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309571.jpg', 'caption': 'A blue street sign attached to a pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309571.jpg', 'caption': 'A street sign with some writing on it in white.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309571.jpg', 'caption': 'a close up of a street sign on a pole ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309571.jpg', 'caption': 'A blue street sign on a pole, on a clear day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000309571.jpg', 'caption': 'A blue street sign that reads Prof. Verbernelaan.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543492.jpg', 'caption': 'A group of giraffes near a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543492.jpg', 'caption': 'a number of giraffes on a road ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543492.jpg', 'caption': 'Several giraffes that are next to a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543492.jpg', 'caption': 'A group of giraffes stand on the side of a road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000543492.jpg', 'caption': 'Four giraffes are standing close together by a dirt road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276971.jpg', 'caption': 'Two birds on a parking bay with cars', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276971.jpg', 'caption': 'A parking lot with two seagulls next to the cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276971.jpg', 'caption': 'A goose and another type bird in a parking lot ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276971.jpg', 'caption': 'Two geese walking in a parking lot. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276971.jpg', 'caption': 'Two ducks walk across a parking lot in front of some cars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324670.jpg', 'caption': 'A seagull sitting on the pier with the light house behind him.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324670.jpg', 'caption': 'A bird is sitting on the rail next to the lake and a light house. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324670.jpg', 'caption': 'White bird sitting in front of a lighthouse with a red roof. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324670.jpg', 'caption': 'A seagull rests on a concrete wall, with the ocean and a lighthouse in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000324670.jpg', 'caption': 'A seagull sitting on a cement ledge across from a lighthouse port.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224916.jpg', 'caption': 'A group of small exotic birds standing on a large bamboo stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224916.jpg', 'caption': 'A group of colorful birds huddled together. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224916.jpg', 'caption': 'Colorful birds resting on a hollow log together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224916.jpg', 'caption': 'A family of parakeets in a number of different colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000224916.jpg', 'caption': 'Colorful birds huddled together on a large branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068715.jpg', 'caption': 'A street sign with the name of a street on it, and next to it is a post with various names up and down the post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068715.jpg', 'caption': 'A street sign has a long row of peoples names on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068715.jpg', 'caption': 'A street sign stands besides a wooden post with many signs, both at the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068715.jpg', 'caption': 'A family name sign post next to a street sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000068715.jpg', 'caption': 'a metal pole with a single sign is next to a wood pole with many signs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122838.jpg', 'caption': 'A small white bard with a long beak on a branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122838.jpg', 'caption': 'A small bird standing on some tree branches', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122838.jpg', 'caption': 'The beak of the hummingbird enables it to suck nectar easily from many flower varieties.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122838.jpg', 'caption': 'a closeup of a small bird in trees', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000122838.jpg', 'caption': 'A bird perched on a branch in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502317.jpg', 'caption': 'Some signs on a street corner near some buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502317.jpg', 'caption': 'Multiple signs in the middle of a small town area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502317.jpg', 'caption': 'A strew with street signs next to a brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502317.jpg', 'caption': 'a building with some blue street signs next to it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502317.jpg', 'caption': 'A nice neighborhood in the country of Belgium.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137185.jpg', 'caption': 'A train caboose is sitting beside train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137185.jpg', 'caption': 'An abandoned train cart is next to a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137185.jpg', 'caption': 'This is a train that is parked near a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137185.jpg', 'caption': 'A train that is stationary off of the track. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000137185.jpg', 'caption': 'A trailer that is near railing under a cloudy sky. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545309.jpg', 'caption': 'A train travels down the tracks of a covered bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545309.jpg', 'caption': 'a train is in a tunnel by a station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545309.jpg', 'caption': 'A gray train is on a train track near a long tunnel.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545309.jpg', 'caption': 'a silver and blue train is on its track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000545309.jpg', 'caption': 'A passenger train that is pulling into a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030478.jpg', 'caption': 'A train in a trainstation with many people nearby. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030478.jpg', 'caption': 'People looking at a train carriage behind a barrier in a warehouse', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030478.jpg', 'caption': 'Commuter train at station with passengers on nearby platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030478.jpg', 'caption': 'a parked train sitting in a garage ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030478.jpg', 'caption': 'A train is at rest as passengers view it at the station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007952.jpg', 'caption': 'A truck crosses train tracks near an oncoming train. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007952.jpg', 'caption': 'A truck stopped at the tracks while a train is approaching.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007952.jpg', 'caption': 'a truck on a train track with an oncoming train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007952.jpg', 'caption': 'The truck is crossing the train tracks as the train approaches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000007952.jpg', 'caption': 'A train on a train track running through a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339738.jpg', 'caption': 'A cat looks tired while wearing a small plastic hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339738.jpg', 'caption': 'a cat with a plastic baseball hat laying on a pillow ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339738.jpg', 'caption': 'A yellow cat wears a blue plastic sports hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339738.jpg', 'caption': 'A PICTURE OF A ORANGE CAT WITH A BASEBALL CAP ON ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000339738.jpg', 'caption': 'A cat laying on its stomach wearing a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229387.jpg', 'caption': 'An unhappy cat wearing a puffy pink beanie', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229387.jpg', 'caption': 'The black and white cat is wearing a pink hat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229387.jpg', 'caption': 'A black and white cat with a pink hat on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229387.jpg', 'caption': 'A tuxedo cat is wearing a pink knitted hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000229387.jpg', 'caption': 'A black and white cat wearing a pink hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238602.jpg', 'caption': 'A cat is wearing a pink wool hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238602.jpg', 'caption': 'Brown cat with a pink knit had sitting on top of its head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238602.jpg', 'caption': 'Brown tabby cat wearing a purple knit hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238602.jpg', 'caption': 'a orange cat with a purple hat on its head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238602.jpg', 'caption': 'A cat sitting down with a purple hat on its head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460972.jpg', 'caption': 'A lake filled with ducks floating on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460972.jpg', 'caption': 'A group of mallards swimming in a lake, with trees in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460972.jpg', 'caption': 'Several ducks are out in the middle of a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460972.jpg', 'caption': 'Ducks are floating on the water at the park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000460972.jpg', 'caption': 'a bunch of ducks are swimming in a big lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358795.jpg', 'caption': 'This is a picture of a post with several street signs attached. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358795.jpg', 'caption': 'a number of street signs on a pole on a city street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358795.jpg', 'caption': 'A group of street signs hanging from a metal pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358795.jpg', 'caption': 'A pole with several street and traffic signs on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000358795.jpg', 'caption': 'A street sign on the corner of Wall Street and William Street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337035.jpg', 'caption': 'Ducks are gathered on rocks beside a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337035.jpg', 'caption': 'a bunch of ducks new to a pond of water', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337035.jpg', 'caption': 'A bunch of birds are gathered around the waters edge near some rocks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337035.jpg', 'caption': 'A group of ducks sitting on the rocks next to a lake.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000337035.jpg', 'caption': 'Ducks are sitting on a rocky edge of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473214.jpg', 'caption': 'A road that has a car driving down it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473214.jpg', 'caption': 'A car is coming down a winding road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473214.jpg', 'caption': 'a red soda machine on a long road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473214.jpg', 'caption': 'A lot of building on each side of the road, with a very curvy road in the middle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473214.jpg', 'caption': 'A car that is sitting int he street near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456192.jpg', 'caption': 'A group of elephants are standing under a roof cover.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456192.jpg', 'caption': 'Four elephants, two babies, and two that are adults standing together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456192.jpg', 'caption': 'Four elephants that are wandering around in their enclosure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456192.jpg', 'caption': 'A group of elephants under a pavilion next to trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000456192.jpg', 'caption': 'A group of elephants taking cover from the sun under an area with a canopy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090367.jpg', 'caption': 'a close up of a dog sitting wearing a hat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090367.jpg', 'caption': 'A dog wearing a striped elf hat sits in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090367.jpg', 'caption': 'A dog is wearing an elf hat in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090367.jpg', 'caption': 'A dog wearing an elf hat sits in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000090367.jpg', 'caption': 'Brown and white dog in Christmas hat standing in the snow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054007.jpg', 'caption': 'A young boy holding a baseball bat and a stick.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054007.jpg', 'caption': 'A boy is on a baseball field holding a broken bat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054007.jpg', 'caption': 'Young boy carrying a broken baseball bat across baseball field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054007.jpg', 'caption': 'A little boy with a broken base ball bat walking on the field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000054007.jpg', 'caption': 'a boy walking with his broke bat in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209274.jpg', 'caption': 'A small train ride carrying people around a park', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209274.jpg', 'caption': 'A small open air passenger train with people aboard is giving off a cloud of steam or smoke.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209274.jpg', 'caption': 'A train is traveling down a rail in a beautiful park full of people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209274.jpg', 'caption': 'A small sight-seeing train, running on tracks through a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209274.jpg', 'caption': 'A train carrying a green cart with people on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421976.jpg', 'caption': 'An adult sheep leaning towards a newborn sheep in a hay filled area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421976.jpg', 'caption': 'A sheep and lamb standing perpendicular to one another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421976.jpg', 'caption': 'The vicious sheep bends down to bite the small black lamb.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421976.jpg', 'caption': 'A sheep and a baby sheep in some hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000421976.jpg', 'caption': 'A mother sheep and a baby lamb are standing in hay.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114710.jpg', 'caption': 'A person standing by a fence with a sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114710.jpg', 'caption': 'a woman is standing next to a goat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114710.jpg', 'caption': 'A woman smiles while standing near a sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114710.jpg', 'caption': 'A lady is smiling for the camera in front of a sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114710.jpg', 'caption': 'A young woman smiles in front of a sheep.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000114710.jpg', 'caption': 'A woman smiles while standing in front of a sheep. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377949.jpg', 'caption': 'A women who is standing by a barb wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377949.jpg', 'caption': 'A woman walking past a fence with animals on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377949.jpg', 'caption': 'The woman wearing a coat stands near sheep behind a fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377949.jpg', 'caption': 'a little kid walks next to a fence and sheep ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377949.jpg', 'caption': 'A woman stands in the forefront with some livestock behind her in a field near a house on the ocean.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070870.jpg', 'caption': 'A lone woman stands at an empty train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070870.jpg', 'caption': 'A person in a deserted subway station waits for the train to pass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070870.jpg', 'caption': 'A man standing on a subway platform next to a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070870.jpg', 'caption': 'We see a woman waiting on a subway platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070870.jpg', 'caption': 'A person that is walking for a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145562.jpg', 'caption': 'a small toys with so many people in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145562.jpg', 'caption': 'People riding a small train on a mini track . ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145562.jpg', 'caption': 'kids riding around on a little colorful train ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145562.jpg', 'caption': \"A small child's train traveling down train tracks near a field.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000145562.jpg', 'caption': 'A small train being ridden by a few people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170129.jpg', 'caption': 'A large body of water in front of a shoreline with a long train bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170129.jpg', 'caption': 'A train crossing a bridge that is going over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170129.jpg', 'caption': 'A train travels over a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170129.jpg', 'caption': 'Passenger train passing over an ocean on a bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000170129.jpg', 'caption': 'A far off view of a mono rail and piers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078865.jpg', 'caption': 'A railroad train passing a field of cows', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078865.jpg', 'caption': 'A train passes the countryside with cows grazing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078865.jpg', 'caption': 'An field with cows and a train passing by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078865.jpg', 'caption': 'Animals graze on grass in the green pasture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000078865.jpg', 'caption': 'A train on a track going near some cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150893.jpg', 'caption': 'a blue and white passenger train coming to a stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150893.jpg', 'caption': 'An MTA train next to a platform with an awning.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150893.jpg', 'caption': 'A train is heading down the railroad tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150893.jpg', 'caption': \"A train that is on it's tracks next to a station.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150893.jpg', 'caption': 'A commuter train passes a stop in front of a large building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559955.jpg', 'caption': 'A platform at a train station with a train on either side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559955.jpg', 'caption': 'There is a train parked at a station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559955.jpg', 'caption': 'There are some trains on two tracks on each side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559955.jpg', 'caption': 'Two trains pulled into a train station next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559955.jpg', 'caption': 'Two trains are pulled up to a passenger zone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468499.jpg', 'caption': 'A city train as it travels down the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468499.jpg', 'caption': 'Train riding the tracks coming to the station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468499.jpg', 'caption': 'A train passing under a series of metal girders', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468499.jpg', 'caption': 'A train driving over a bridge on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000468499.jpg', 'caption': 'A white and green train traveling along train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477526.jpg', 'caption': 'a train moving along the track on a hillside near a mountain', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477526.jpg', 'caption': 'A train winds its way down a mountain track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477526.jpg', 'caption': 'A train ridding on a rail with a large view of a mountain range.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477526.jpg', 'caption': 'A train is moving along on a track that appears to lead right into the snowy mountains.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000477526.jpg', 'caption': 'a train on a train track with mountains in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478099.jpg', 'caption': 'A small train is going through a garden with people watching. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478099.jpg', 'caption': 'People waiting on a train platform in a wooded area ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478099.jpg', 'caption': 'a train being operated on train tracks with trees in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478099.jpg', 'caption': 'There is a train stopped at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478099.jpg', 'caption': 'Small red and white train passing while people take pictures.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220739.jpg', 'caption': 'A green and white street sign that reads \"lincoln av e.\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220739.jpg', 'caption': 'A street sign reads \"Lincoln\" ave below the trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220739.jpg', 'caption': 'The street sign is near a very large tree.', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000220739.jpg', 'caption': 'A green street sign next to some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000220739.jpg', 'caption': 'The name of the street is Lincoln Ave ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296388.jpg', 'caption': 'This is the side of an intersection with a red sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296388.jpg', 'caption': 'A side of a building with a variety of signs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296388.jpg', 'caption': 'a building with some street signs and bars on the windows ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296388.jpg', 'caption': 'Red and white stop sign sitting on the front of the building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000296388.jpg', 'caption': 'A building set with wrought iron bars on the windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381842.jpg', 'caption': 'A green street sign hanging from a metal pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381842.jpg', 'caption': 'A street sign on the corner of Brad Street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381842.jpg', 'caption': 'A street sign on a corner with two signs ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381842.jpg', 'caption': 'An intersection street sign with one sign reading Brad St.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000381842.jpg', 'caption': 'A double street sign atop a pole with a stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035436.jpg', 'caption': 'There are very few people inside of the large train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035436.jpg', 'caption': 'People walking in a building that has columns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035436.jpg', 'caption': 'A large lobby with a train on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035436.jpg', 'caption': 'two people walking in a building with a train painting on the wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000035436.jpg', 'caption': 'People walking through a lobby filled with large white pillars.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147577.jpg', 'caption': 'The train image on the wall is beautiful.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147577.jpg', 'caption': 'a painted mural on the wall of people waiting at the train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147577.jpg', 'caption': 'A painting on the side of a wall of two different trains', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147577.jpg', 'caption': 'A mural of people at a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000147577.jpg', 'caption': 'Mural of past passengers and trains on a station wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130437.jpg', 'caption': 'Cars riding on the street across a train on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130437.jpg', 'caption': 'A train moves through the city on its tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130437.jpg', 'caption': 'there is a train that is coming up the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130437.jpg', 'caption': 'A train travels along the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130437.jpg', 'caption': 'A passenger trains speeding through the city on a train track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104880.jpg', 'caption': 'A humorous street sign is pictured in this image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104880.jpg', 'caption': 'A sign in a city street that says, \"Smile between the hours of 5pm and 9am\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104880.jpg', 'caption': 'A sign on a street post advises smiling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104880.jpg', 'caption': 'A sign ordering viewers to smile at a certain time.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000104880.jpg', 'caption': 'A smile sign on a street corner, in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483722.jpg', 'caption': 'A silver and black train passing under a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483722.jpg', 'caption': 'A subway train passing beneath an underground tunnel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483722.jpg', 'caption': 'A large long train on a steel track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483722.jpg', 'caption': 'A train is coming through a tunnel in a quiet city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000483722.jpg', 'caption': 'An electric commuter train emerging from a tunnel', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210766.jpg', 'caption': 'A red sign posted to a pole in front of a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210766.jpg', 'caption': 'There is a red sign attached to a street pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210766.jpg', 'caption': 'A red sign posted on a steel pole', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210766.jpg', 'caption': 'The maroon sign has been written in white words.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000210766.jpg', 'caption': 'A street sign that references a brick on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056932.jpg', 'caption': 'A blurred train is going under a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056932.jpg', 'caption': 'An urban train passes swiftly by under a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056932.jpg', 'caption': 'A train traveling on a train track next to railway platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056932.jpg', 'caption': 'a white and orange train is going down the track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056932.jpg', 'caption': 'a train speeding down a track in the city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522959.jpg', 'caption': 'Street signs on an empty city street intersection. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522959.jpg', 'caption': 'close up of a street sign with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522959.jpg', 'caption': 'A street sign at the crosswalk of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522959.jpg', 'caption': 'Retail store as seen from the corner of Broadway and Seventh', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522959.jpg', 'caption': 'A street corner has a sign, and across the street is a store.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505933.jpg', 'caption': 'This is an image of an elevated train in the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505933.jpg', 'caption': 'a train bridge going through the middle of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505933.jpg', 'caption': 'Several buildings are standing behind a bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505933.jpg', 'caption': 'Two trains going in opposite directions on tracks over busy streets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000505933.jpg', 'caption': 'Urban scene of elevated train going over a busy street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353977.jpg', 'caption': 'an amtrak train going down a track underneath a bridge', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353977.jpg', 'caption': 'an Amtrak train moving long train tracks in a city', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353977.jpg', 'caption': 'there is a amtrak train that can be seen on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353977.jpg', 'caption': 'An Amtrak train is going under a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353977.jpg', 'caption': 'thi8s blue train is riding on the tacks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000353977.jpg', 'caption': 'A silver and blue train traveling down tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375409.jpg', 'caption': 'A silver and blue Amtrak train sitting below tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375409.jpg', 'caption': 'An Amtrak train engine at the station on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375409.jpg', 'caption': 'An Amtrak train rolling down the tracks of a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375409.jpg', 'caption': 'Train at a train station on a clear day in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000375409.jpg', 'caption': 'A silver blue train parked in a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253940.jpg', 'caption': 'A train traveling down train tracks next to traffic signals.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253940.jpg', 'caption': 'A train is on the track with buildings in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253940.jpg', 'caption': 'There is a silver train passing by on the railroad', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253940.jpg', 'caption': 'A train travels down the tracks towards a group of buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000253940.jpg', 'caption': 'A grey and white train passing under a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187450.jpg', 'caption': 'Two people walking a way from a train waiting at a train station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187450.jpg', 'caption': 'A train stopped at a train station next to orange cones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187450.jpg', 'caption': 'a white and blue train is at a train stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187450.jpg', 'caption': 'A train is arriving to the virtually empty platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000187450.jpg', 'caption': 'An engine train sitting idly on the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403481.jpg', 'caption': 'A white and blue train heading towards a sign in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403481.jpg', 'caption': 'a train on a train track with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403481.jpg', 'caption': 'A train travelling on some train tracks on the edge of a town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403481.jpg', 'caption': 'A train is shown coming from trees on a track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000403481.jpg', 'caption': 'a yellow train approaching along the train tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250260.jpg', 'caption': 'TWO ELECTRIC TRAIN COMPARTMENTS STANDING NEAR TO A BUILDING.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250260.jpg', 'caption': 'Two train cars on separate tracks parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250260.jpg', 'caption': 'A train is sitting on the train station ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250260.jpg', 'caption': 'Two blue and yellow trains parked next to each other on train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000250260.jpg', 'caption': 'an image two blue and yellow shuttles next to each other', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225093.jpg', 'caption': 'A train with a green and orange stripe is sitting on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225093.jpg', 'caption': 'A very long pretty train in a big terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225093.jpg', 'caption': 'Two train side by side at a train station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225093.jpg', 'caption': 'A passenger train on the tracks in a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000225093.jpg', 'caption': 'A passenger train that is pulling into the station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174198.jpg', 'caption': 'A green, orange and white train in a train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174198.jpg', 'caption': 'There is a train that has pulled into the station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174198.jpg', 'caption': 'Two passengers sit on separate tracks inside a train station. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174198.jpg', 'caption': 'A large long train on a steel track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174198.jpg', 'caption': 'A subway bus traveling along through a terminal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390368.jpg', 'caption': 'A white street sign sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390368.jpg', 'caption': 'A sign located on the street stating no peddling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390368.jpg', 'caption': 'A sign in a city street is stating no peddling.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390368.jpg', 'caption': 'A street sign indicating no peddling is allowed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000390368.jpg', 'caption': 'A \"No Peddling\" sign stands on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415840.jpg', 'caption': 'A silver and red train traveling down a busy city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415840.jpg', 'caption': 'A grey train passes on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415840.jpg', 'caption': 'Electric rail cars move along a track between automobile traffic lanes. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415840.jpg', 'caption': 'A silver and orange bus is on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000415840.jpg', 'caption': 'The trolley for the San Francisco Zoo is on its tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193069.jpg', 'caption': 'A blue and white train engine pulling lots of brown train cars through a rural area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193069.jpg', 'caption': 'a train on a train track next to some wind mills', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193069.jpg', 'caption': 'A train with a blue engine traveling down a railroad track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193069.jpg', 'caption': 'Here is an image of an outside district.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000193069.jpg', 'caption': 'A passenger train that is traveling on railroad tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289870.jpg', 'caption': 'The freight train is speeding through the crossing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289870.jpg', 'caption': 'a train that is on a train track by a station', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289870.jpg', 'caption': 'A person standing on the side of a train traveling down tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289870.jpg', 'caption': 'a person in a red shirt and a train and some wires', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289870.jpg', 'caption': 'a train going down the tracks full speed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006789.jpg', 'caption': 'An electric tower in front of buildings on the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006789.jpg', 'caption': 'An passenger train travels down the track under power lines.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006789.jpg', 'caption': 'A train riding pass a tower and a street with cars on it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006789.jpg', 'caption': 'A passenger train moves on tracks beside a freeway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000006789.jpg', 'caption': 'a white car is driving down the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037709.jpg', 'caption': 'There is a stop sign and two street name signs on one poll', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037709.jpg', 'caption': 'A stop sign in front of an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037709.jpg', 'caption': 'A stop sign is shown on the corner of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037709.jpg', 'caption': 'A stop sign at the intersection of an off ramp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000037709.jpg', 'caption': 'Be sure to stop before entering Central or Jackson.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565971.jpg', 'caption': 'A large long train on a steel track.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565971.jpg', 'caption': 'There is a train moving past a crossing gate', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565971.jpg', 'caption': 'Intersection gates are lowered while train speeds by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565971.jpg', 'caption': 'A grey and blue train speeds through a rail road crossing.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000565971.jpg', 'caption': 'A train moving in a city near traffic lights. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013965.jpg', 'caption': 'A green an White train car traveling past a road filled with heavy traffic.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013965.jpg', 'caption': 'A green bus pulled up to a bus stop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013965.jpg', 'caption': 'a green bus parked on the side of the road waiting for passengers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013965.jpg', 'caption': 'A trolley train stopped with its doors open.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013965.jpg', 'caption': 'A passanger train waiting to load more passangers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418092.jpg', 'caption': 'A man walks across a street with a stop sign in the foreground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418092.jpg', 'caption': 'A man in a striped shirt walking between a stop sign and a blue wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418092.jpg', 'caption': 'A man walking past a stop sign on the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418092.jpg', 'caption': 'A man walking on a street next to a stop sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000418092.jpg', 'caption': 'a man walking in front of a cinder block building near a stop sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024629.jpg', 'caption': 'A red stop sign sitting on the side of a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024629.jpg', 'caption': 'Car whizzing by with headlights on behind the stop sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024629.jpg', 'caption': 'a stop sign with some arabic writing on the bottom of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024629.jpg', 'caption': 'A stop sign has some foreign writing under it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024629.jpg', 'caption': 'A stop sign in front of a yellow building at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522406.jpg', 'caption': 'A red stop sign mounted to the top of a metal pole.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522406.jpg', 'caption': 'A stop sign on a city street corner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522406.jpg', 'caption': 'A four way stop sign written in two languages.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522406.jpg', 'caption': 'A four way stop sign written in English and Arabic.\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522406.jpg', 'caption': 'Arabic writing is on a stop sign at an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075046.jpg', 'caption': 'The bedroom has stuffed animals and a stop sign on the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075046.jpg', 'caption': \"A child's clean bedroom with a stop sign on the wall.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075046.jpg', 'caption': \"The child's bedroom is clean and ready to be played in. \", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075046.jpg', 'caption': 'A blue room with a stop sign mounted on the wall and large windows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000075046.jpg', 'caption': 'an image of a bedroom setting that is decorated ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055545.jpg', 'caption': 'A blue and white train parked next to a loading platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055545.jpg', 'caption': 'A city train stopped at the train station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055545.jpg', 'caption': 'a parked train sitting at a station with a person alongside of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055545.jpg', 'caption': 'A blue and white train on tracks near buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055545.jpg', 'caption': 'A train is stopped at the station to pick up passengers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061715.jpg', 'caption': 'A passanger train moves on the rails of the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061715.jpg', 'caption': 'A train in a city with tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061715.jpg', 'caption': 'A train going down a track beside many skyscrapers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061715.jpg', 'caption': 'A commuter train speeding through the heart of the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000061715.jpg', 'caption': 'A commuter train on tracks between tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257940.jpg', 'caption': 'A train is going through a big city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257940.jpg', 'caption': 'A small city street stands next to a train track with a gray and orange train on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257940.jpg', 'caption': 'An above-ground subway car on a city street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257940.jpg', 'caption': 'A fast moving commuter train travels through the city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257940.jpg', 'caption': 'A silver passenger train traveling down tracks next to a tall building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372070.jpg', 'caption': 'A train caravan passes by a small town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372070.jpg', 'caption': 'Large black train car pulling a few other cars behind it. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372070.jpg', 'caption': 'A train traveling down train tracks past tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372070.jpg', 'caption': 'an old looking train going down the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000372070.jpg', 'caption': 'A train on the tracks, passing a buildling', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227134.jpg', 'caption': 'A red stop sign hanging from a pole with \" Never \" and \" Loving \" painted on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227134.jpg', 'caption': 'a stop sign with some graffiti written on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227134.jpg', 'caption': 'A stop sign that has been graffitied to say never stop loving.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227134.jpg', 'caption': 'a stop sign graffiti written on the front', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000227134.jpg', 'caption': 'Stop sign with graffiti on it that adds the words never and loving on the sign. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160394.jpg', 'caption': 'A silver train traveling past a train stations.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160394.jpg', 'caption': 'A passenger train that is traveling down some tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160394.jpg', 'caption': 'a train is driving across the rails during daytime hours', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160394.jpg', 'caption': 'A train is traveling on the train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000160394.jpg', 'caption': 'subway sitting on metal tracks next to walls', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151135.jpg', 'caption': 'A train sitting on a track in a field near a bridge.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151135.jpg', 'caption': 'There is a train with two cars moving along a track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151135.jpg', 'caption': 'There is an old train with broken windows on the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151135.jpg', 'caption': 'A red and white train sitting on a track by a hill.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000151135.jpg', 'caption': 'a short passenger train on a track by a grassy hill', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013127.jpg', 'caption': 'An locomotive blowing out a cloud of steam.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013127.jpg', 'caption': 'A steam train is traveling down the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013127.jpg', 'caption': 'A picture of a train passing by a apartment complex.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013127.jpg', 'caption': 'A steam engine on a railway turntable with houses in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000013127.jpg', 'caption': 'A train passing by some houses on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214468.jpg', 'caption': 'Train conductor standing on a moving train next to some trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214468.jpg', 'caption': 'A man riding on a small red train near trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214468.jpg', 'caption': 'a man standing inside of a red train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214468.jpg', 'caption': 'A man inside a small park themed train with an open top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000214468.jpg', 'caption': 'A man in plaid shirt on a small train engine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419624.jpg', 'caption': 'A long white train traveling through a lush green hillside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419624.jpg', 'caption': 'A long railroad train going down the tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419624.jpg', 'caption': 'A green and white train on the tracks next to row of trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419624.jpg', 'caption': 'A train going across the tracks in an area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419624.jpg', 'caption': 'A passenger train that is traveling down railroad tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384038.jpg', 'caption': 'A young boy leaning up against an iron fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384038.jpg', 'caption': 'A boy standing next to a fence in front of a vintage train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384038.jpg', 'caption': 'A kid standing by a metal fence and a train.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384038.jpg', 'caption': 'Little kid leans against the gate in front of train', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000384038.jpg', 'caption': 'The young child is standing by the fence outside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461973.jpg', 'caption': 'People on a platform watch a train go by', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461973.jpg', 'caption': 'A train traveling under a pedestrian bridge at a station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461973.jpg', 'caption': 'A train driving under a bridge and beside a platform with people waiting.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461973.jpg', 'caption': 'People are standing near a train heading down the tracks. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000461973.jpg', 'caption': 'A train is parked on the train tracks at the station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276437.jpg', 'caption': 'a long double decker passenger train going along a track ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276437.jpg', 'caption': 'A silver train crossing the road on tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276437.jpg', 'caption': 'An Amtrack California train running on the track', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276437.jpg', 'caption': 'A long train traveling across a road on train tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276437.jpg', 'caption': 'The train is travelling down the tracks of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535242.jpg', 'caption': 'a red stop sign is by a road outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535242.jpg', 'caption': 'A stop sign with graffiti written on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535242.jpg', 'caption': \"It says don't Stop and then it loses it's meaning.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535242.jpg', 'caption': 'A stop sign that had graffiti written on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000535242.jpg', 'caption': 'A stop sign along a road is vandalized with graffiti.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242869.jpg', 'caption': 'A fish-eye view of a stop sigh in front of a trailer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242869.jpg', 'caption': 'A red stop sign sitting on the side or a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242869.jpg', 'caption': 'a close up of an old wooden stop sign', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242869.jpg', 'caption': 'An old stop sign that has been painted over.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242869.jpg', 'caption': 'The paint is almost all chipped away from the Stop sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095227.jpg', 'caption': 'A red sign sitting on the side of a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095227.jpg', 'caption': 'a stop sign with Arabic writing at an intersection', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095227.jpg', 'caption': 'A street corner with a stop sign written in Arabic', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095227.jpg', 'caption': 'The stop sign is posted at the corner of an intersection.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000095227.jpg', 'caption': 'A stop sign with another language printed on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465550.jpg', 'caption': 'a stop sign sits under neath some power lines ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465550.jpg', 'caption': 'a stop sign underneath some telephone wiring ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465550.jpg', 'caption': 'A red stop sign against some cables in a blue sky', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465550.jpg', 'caption': 'A red stop sign sitting below a cloudy blue sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000465550.jpg', 'caption': 'A stop sign that has a sticker on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386581.jpg', 'caption': 'A brown horse standing next to a blue car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386581.jpg', 'caption': 'a horse that is attached to a meter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386581.jpg', 'caption': 'The officer is off of his horse to write tickets.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386581.jpg', 'caption': 'Horse standing on the sidewalk next to a road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000386581.jpg', 'caption': 'a police horse tied to a parking meter as the cop writes a ticket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573622.jpg', 'caption': 'The long passenger train rides beside a chain link fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573622.jpg', 'caption': 'A train moving through the tracks in the country. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573622.jpg', 'caption': 'Long sized personal riding train running down large field area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573622.jpg', 'caption': 'A train is riding along the train tracks in the valley.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000573622.jpg', 'caption': 'A train is coming down the tracks in a grassy area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417265.jpg', 'caption': 'a building sits in front of a parking meter ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417265.jpg', 'caption': 'A wet city street in evening with brick building and street lamps.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417265.jpg', 'caption': 'A town with a building, street lights, and a bridge. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417265.jpg', 'caption': 'A tall brick building sitting next to a wet street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000417265.jpg', 'caption': 'A multistory city building with a garage door', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383018.jpg', 'caption': 'A train moving overhead at a train station behind a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383018.jpg', 'caption': 'A flowering tree below an elevated train platform.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383018.jpg', 'caption': 'Trees with white blossoms and a string of lanterns.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383018.jpg', 'caption': 'An elevated train passing over a blossoming tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383018.jpg', 'caption': 'A train is going overhead with a tree and banners down below it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491764.jpg', 'caption': 'The passenger train is moving in front of buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491764.jpg', 'caption': 'A silver train traveling down tracks next to tall buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491764.jpg', 'caption': 'Commuter train running parallel to a street with apartments and office buildings near by.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491764.jpg', 'caption': 'A passenger train travels over train tracks through a town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000491764.jpg', 'caption': 'A passenger train going by on the tracks.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172924.jpg', 'caption': 'The railroad crossing is protected by lights and barriers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172924.jpg', 'caption': 'A light rail moves through a Japanese city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172924.jpg', 'caption': 'a white train is coming down some tracks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172924.jpg', 'caption': 'A long white bus is heading through the station.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000172924.jpg', 'caption': 'a train that is on a road next to some buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472643.jpg', 'caption': 'Children cover a parking meter in a red knitted garment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472643.jpg', 'caption': 'A woman putting a sweater over a white parking meter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472643.jpg', 'caption': 'A woman dressing a parking meter with a knit squid covering.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472643.jpg', 'caption': 'A girl raises her arm to touch a parking meter, which is wearing a hat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000472643.jpg', 'caption': 'a young person decorating a parking meter with knitted fabric', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242570.jpg', 'caption': 'Black and white photograph of dogs riding in bed of truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242570.jpg', 'caption': 'Dogs sit with lumber in the back of a pickup truck on a country road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242570.jpg', 'caption': 'Dogs looking out of bed of small truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242570.jpg', 'caption': 'Two dogs ride in the back of a pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000242570.jpg', 'caption': 'Black and white Toyota truck with two dogs on back.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328111.jpg', 'caption': 'The cars are traveling in opposite directions down the two way road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328111.jpg', 'caption': 'A large building standing next to a busy highway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328111.jpg', 'caption': 'A large building set against the sky with roads', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328111.jpg', 'caption': 'traffic going down a freeway close to some tall buildings', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000328111.jpg', 'caption': 'Cars drive down a multi-lane road and pass businesses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188522.jpg', 'caption': 'An old pickup truck sitting in a field falling apart. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188522.jpg', 'caption': 'Old brocken down truck sitting near large open field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188522.jpg', 'caption': 'a rusty old truck sitting in the shade ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188522.jpg', 'caption': 'An old truck that is rusting in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188522.jpg', 'caption': 'A rusted old truck sits by a field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148280.jpg', 'caption': 'A parking lot filled with cars parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148280.jpg', 'caption': 'A sedan is badly parked next to a truck in front of a building. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148280.jpg', 'caption': 'Cars and trucks parked in a lot outside a garage door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148280.jpg', 'caption': 'A car illegally parked next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000148280.jpg', 'caption': 'Automobiles parked on the street near a store. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522909.jpg', 'caption': 'A long haired cat sitting next to an open door.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522909.jpg', 'caption': 'Grey long-haired cat sitting on a small stereo speaker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522909.jpg', 'caption': 'A gray cat sitting on a drawer looking toward a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522909.jpg', 'caption': 'A grey cat sitting on wooden box in sunlight of window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000522909.jpg', 'caption': 'A cat that is sitting on top of a speaker.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127556.jpg', 'caption': 'A gray cat eating a treat from a humans hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127556.jpg', 'caption': 'A cat is sniffing a piece of food that someone is holding.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127556.jpg', 'caption': 'A grey cat sniffing an item that is put in front of him by a person. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127556.jpg', 'caption': 'It pays a cat to be suspicious of what your owner tries to feed you.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000127556.jpg', 'caption': 'A cat sitting down smelling a piece of food a person is holding out to it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362289.jpg', 'caption': 'A grey cat starring at a hand with a donut.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362289.jpg', 'caption': 'a close up of a person holding food to a cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362289.jpg', 'caption': 'A person eating a donut while a cat watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362289.jpg', 'caption': 'A person holding a donut close to a black cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000362289.jpg', 'caption': 'A person trying to feed bread to a kitty cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507384.jpg', 'caption': 'A cat that is laying down on a carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507384.jpg', 'caption': 'A fluffy black cat lying down on a quilt on a bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507384.jpg', 'caption': 'A gray cat resting on a carpet on the floor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507384.jpg', 'caption': 'A cat laying on top of a bed on blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000507384.jpg', 'caption': 'a cat lays down on a rug ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174771.jpg', 'caption': 'Front end of a white vehicle in a parking lot', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174771.jpg', 'caption': 'A white truck sitting in a parking space in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174771.jpg', 'caption': 'A truck that is parked in a parking spot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174771.jpg', 'caption': 'a parking lot with all white cars parked there', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000174771.jpg', 'caption': 'white truck in parking lot other white cars in background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293027.jpg', 'caption': 'a black and white cat hugging a handbag', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293027.jpg', 'caption': 'A cat sitting on a bed beside a black purse. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293027.jpg', 'caption': 'Cat laying on bed next to a purse with paw over it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293027.jpg', 'caption': 'A cat laying on a handbag on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000293027.jpg', 'caption': 'A black cat is sitting on a purse on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399769.jpg', 'caption': 'A dog and a cat standing side by side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399769.jpg', 'caption': 'Two side by side pictures show a dog and a cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399769.jpg', 'caption': 'a small cat and small dog looking in the opposite direction.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399769.jpg', 'caption': 'a close up of a cat and a dog both looking upward', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000399769.jpg', 'caption': 'Split picture with a multi-color cat on the left and a brownish colored dog on the right', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546896.jpg', 'caption': 'A siamese cat sleeping next to a brown teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546896.jpg', 'caption': 'an image of a cat sleeping by a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546896.jpg', 'caption': 'A cat laying in bed with a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546896.jpg', 'caption': 'a kitten cuddling next to a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546896.jpg', 'caption': 'A cat is curled up next to a light teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561853.jpg', 'caption': 'A truck parked in a forest surrounded by trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561853.jpg', 'caption': 'A green truck with an orange extension cord.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561853.jpg', 'caption': 'an image of a an older model truck outside', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561853.jpg', 'caption': 'An extension cord runs from the bed of a pickup truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000561853.jpg', 'caption': 'a pick up truck in the woods with an electrical cord', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467197.jpg', 'caption': 'A cat sitting on top of a backpack on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467197.jpg', 'caption': 'A cat lying down on top of a backpack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467197.jpg', 'caption': 'The small orange cat is sitting in a backpack.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467197.jpg', 'caption': \"A cat sitting on a backpack that's on the floor.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000467197.jpg', 'caption': 'An orange tabby cat is curled on top of a black bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102421.jpg', 'caption': 'THERE IS AN ADULT CAT THAT IS LOOKING AT SOMETHING ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102421.jpg', 'caption': 'A cat laying on top of a blanket on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102421.jpg', 'caption': \"A black and white cat lays it's head on a black bag.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102421.jpg', 'caption': 'a close up of a cat laying down on a bag ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000102421.jpg', 'caption': 'A black and white cat rests her head on a tote bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129957.jpg', 'caption': 'there is a bus going down the street and many cars going behind it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129957.jpg', 'caption': 'A group of cars that are parked on the side of the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129957.jpg', 'caption': 'Three vehicles are approaching the stop sign by the gate. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129957.jpg', 'caption': 'a number of cars behind a city bus', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000129957.jpg', 'caption': 'Traffic stopped at a stop sign, waiting for a train to pass through.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268412.jpg', 'caption': 'a bunch of cows walking down the road', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268412.jpg', 'caption': 'A large herd of cows are walking down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268412.jpg', 'caption': 'A herd of cows traveling down the street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268412.jpg', 'caption': 'A herd of cattle walking down a street near a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268412.jpg', 'caption': 'A bunch of cows and some people by a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571835.jpg', 'caption': 'A grey tabby kitten inside a black suit case.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571835.jpg', 'caption': 'A small kitten sitting inside of a bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571835.jpg', 'caption': 'A cat on a suitcase is reaching for a pillow. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571835.jpg', 'caption': 'A cat laying in a suitcase next to a pillow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000571835.jpg', 'caption': 'a kitten in a suitcase pawing at a pillow', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161195.jpg', 'caption': 'A large cow laying on the ground in the woods.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161195.jpg', 'caption': 'there is a white goat that is sitting next to a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161195.jpg', 'caption': 'a little goat laying in the shade by a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161195.jpg', 'caption': 'A cow lying in a field in the shade.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000161195.jpg', 'caption': 'A white cow rests in a forest by a large rock and trees.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100539.jpg', 'caption': 'a blue truck and a male in a purple shirt and a tree', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100539.jpg', 'caption': 'Blue pickup truck filled with scrap pieces of household items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100539.jpg', 'caption': 'A man has filled his truck with wheelchairs. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100539.jpg', 'caption': 'A blue truck parked next to a tree and a man.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000100539.jpg', 'caption': 'a man standing next to a truck full of bikes and a wheel chair', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020947.jpg', 'caption': 'An old rusty truck is parked on a grass field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020947.jpg', 'caption': 'A rusted vintage pickup truck sits in a field with a windmill in the background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020947.jpg', 'caption': 'A stylized photograph of a vintage truck parked in a dry field. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020947.jpg', 'caption': 'An old truck with red and blue paint is in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020947.jpg', 'caption': 'an old truck sitting in the desert all painted ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385204.jpg', 'caption': 'A white cat wearing a helmet made of melon rind.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385204.jpg', 'caption': 'A cat wearing a lime helmet looking angry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385204.jpg', 'caption': 'A cat has a lime in the shape of a helmet on its head.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385204.jpg', 'caption': 'A cat looking annoyed with fruit on its head', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000385204.jpg', 'caption': \"A cat with a fruit on it's head.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262758.jpg', 'caption': 'A yellow cat standing inside a box with tissue paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262758.jpg', 'caption': 'The small orange cat has a paper towel near it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262758.jpg', 'caption': 'A cat that is resting its head on a napkin.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262758.jpg', 'caption': 'An orange cat laying on top of a wooden table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000262758.jpg', 'caption': 'A cat in a box stares off into the abyss.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485494.jpg', 'caption': 'a cat playing with a toy on a sofa', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485494.jpg', 'caption': 'A cat being playful with a toy banana on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485494.jpg', 'caption': 'A cat is playing with its toy while lying down.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485494.jpg', 'caption': 'A cat plays with a toy while lying on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485494.jpg', 'caption': 'A cat playing with a stuffed banana on a couch ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526962.jpg', 'caption': \"A cat laying on it's back playing with a yellow toy.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526962.jpg', 'caption': 'A cat leans upside down and chews on a toy.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526962.jpg', 'caption': 'A white and black cat is chewing a toy banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526962.jpg', 'caption': 'A cat laying upside down on a couch with a banana toy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000526962.jpg', 'caption': 'a cat laying on a couch with a banana toy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071673.jpg', 'caption': 'a close up of a cat laying on a napkin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071673.jpg', 'caption': 'An orange cat with green eyes is laying over a paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071673.jpg', 'caption': 'An orange cat laying on top of a white piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071673.jpg', 'caption': 'there is a cat that is laying on a napkin', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000071673.jpg', 'caption': 'A cat is peeking from behind some tissue paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502275.jpg', 'caption': 'A brown cat is sitting on a plastic bag.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502275.jpg', 'caption': 'A cat is sitting in a box of tissue.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502275.jpg', 'caption': 'A orange cat resting on a piece of tissue paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502275.jpg', 'caption': 'An orange cat sits in a basket with tissue paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000502275.jpg', 'caption': 'A cat is sitting on top of a crumpled piece of paper.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279919.jpg', 'caption': 'Cat laying on wooden floor with toy banana', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279919.jpg', 'caption': 'A kitten paws at a toy on the floor', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279919.jpg', 'caption': 'a cat that is playing with a fake banana', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279919.jpg', 'caption': 'A cat laying on top of a wooden floor holding a banana.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000279919.jpg', 'caption': 'a cat laying on the floor while looking at a toy', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067122.jpg', 'caption': 'The cat is resting on the chair on the porch of the house. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067122.jpg', 'caption': 'A big cat laying down in a chair on a porch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067122.jpg', 'caption': 'A cat sits in a blue patterned folding chair outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067122.jpg', 'caption': 'A cat is sitting outside on a lawn chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000067122.jpg', 'caption': 'A cat sitting comfortably in a camping chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223757.jpg', 'caption': 'A cat curls up with a purple blanket on a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223757.jpg', 'caption': 'Cat snuggled under blanket laying on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223757.jpg', 'caption': 'A cat laying on top of a leather chair under a purple blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223757.jpg', 'caption': 'The kitten is cuddling along with the purple blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000223757.jpg', 'caption': 'A cat sleeps on a leather couch with a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347236.jpg', 'caption': 'A black cat and an orange cat are sitting on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347236.jpg', 'caption': 'A black and white cat giving a dirty look to another cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347236.jpg', 'caption': 'a black and brown cat seated on the carpet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347236.jpg', 'caption': 'A couple of cats sitting and laying next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347236.jpg', 'caption': 'a brown and black are sitting on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215949.jpg', 'caption': 'A cat sitting on top of a kitchen floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215949.jpg', 'caption': 'Two cats are sitting on a colorful rug.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215949.jpg', 'caption': 'A couple of cats facing in opposite directions on a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215949.jpg', 'caption': 'A cat on the carpet next to a chair and drawer', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000215949.jpg', 'caption': 'A cat sitting in a room near a chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553761.jpg', 'caption': 'Two very pretty cats on the floor near each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553761.jpg', 'caption': 'An orange cate and a black and white cat sitting on a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553761.jpg', 'caption': 'A couple of cats sitting down on the floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553761.jpg', 'caption': 'One orange tabby cat and one black cat sitting on a rug. \\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000553761.jpg', 'caption': 'Cats sitting near other on a modern carpet', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322057.jpg', 'caption': 'Two cats are laying in the chair sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322057.jpg', 'caption': 'Two cats are lounging on a chair in the sunlight.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322057.jpg', 'caption': 'two cats sleeping next to each other in a chair ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322057.jpg', 'caption': 'Two cat nap together in a whicker chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000322057.jpg', 'caption': 'To cats, one white and one black and white, sleeping on a chair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446626.jpg', 'caption': 'A cat lays on top of a couch. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446626.jpg', 'caption': 'The brown cat sits atop of the dark blue couch next to the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446626.jpg', 'caption': 'A cat with glowing eyes sitting on the back of a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446626.jpg', 'caption': 'A cat sits on the back of a chair. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000446626.jpg', 'caption': 'A tabby cat is lounging on the back of a chair with paw extended over.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335579.jpg', 'caption': 'A man lies down next a cow while facing another.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335579.jpg', 'caption': 'A man and his cows are laying in the hay', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335579.jpg', 'caption': 'Man in baseball hat lying in straw with head on a cow.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335579.jpg', 'caption': 'A man is lying down in the hay by the cows.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000335579.jpg', 'caption': 'A man is lying down with cows in a bed of straw.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423336.jpg', 'caption': 'A black and white cow standing next to a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423336.jpg', 'caption': 'A black and white cow standing by a fence at a dairy farm.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423336.jpg', 'caption': 'A cow looking at a fence in a large field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423336.jpg', 'caption': 'a cow is in a enclosed area with some grass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000423336.jpg', 'caption': 'A black and white cow next to a wire fence.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488945.jpg', 'caption': 'A cat rests on a sofa next to the remote in front of a laptop in a living area.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488945.jpg', 'caption': 'A large orange cat laying on top of a brown couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488945.jpg', 'caption': 'A cat sitting on the couch next to a remote and across from a laptop computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488945.jpg', 'caption': 'A cat and a remote on a couch in front of a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000488945.jpg', 'caption': 'A cat is curled up on a brown couch in this living room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510719.jpg', 'caption': 'A dump truck is sitting on the side of the road. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510719.jpg', 'caption': 'A trash truck parked on the side of a residential street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510719.jpg', 'caption': \"A green, white and yellow garbage truck making it's rounds.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510719.jpg', 'caption': 'A large green truck is parked on the side of the road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000510719.jpg', 'caption': 'A garbage truck parked on the right side of a street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443499.jpg', 'caption': 'a couple of cats that are standing next to a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443499.jpg', 'caption': 'A couple of black and white cats sitting on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443499.jpg', 'caption': 'Two cats sitting on an empty tile floor ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443499.jpg', 'caption': 'A cat standing on tile next to another cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443499.jpg', 'caption': 'Two black and white cats are sitting on a tile floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024403.jpg', 'caption': 'An old red truck sits in a driveway.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024403.jpg', 'caption': 'Old worn red truck parked in a driveway near a cactus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024403.jpg', 'caption': 'The old truck is parked in the driveway of a house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024403.jpg', 'caption': 'An old red pickup truck parked in a driveway next to a cactus.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000024403.jpg', 'caption': 'a red truck in the drive way of a home', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239387.jpg', 'caption': 'A cow standing between two cars on a dirt lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239387.jpg', 'caption': 'There is a very large animal outside a car window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239387.jpg', 'caption': 'Watching a bull in a parking lot through a car window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239387.jpg', 'caption': \"A picture of a cow standing outside of someone's car window.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000239387.jpg', 'caption': 'A horned animal grazes outside of a car.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082338.jpg', 'caption': 'A man on motorcycle driving past cows on the street', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082338.jpg', 'caption': 'Two brown cows passing between a car and a motorcycle rider on a city street. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082338.jpg', 'caption': 'Several different modes of transportation on a street.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082338.jpg', 'caption': 'A man is on a motorcycle with a anaimal in the street ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000082338.jpg', 'caption': 'Two cows on a city street amongst cars and a motor bike.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126030.jpg', 'caption': 'Two big trucks are parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126030.jpg', 'caption': 'The hood ornament of a swan on a big semi truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126030.jpg', 'caption': 'This is the grill of a large truck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126030.jpg', 'caption': 'Two diesel trucks parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126030.jpg', 'caption': 'The front of a semi truck with a swan hood ornament, parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314188.jpg', 'caption': 'A cat laying on a bed next to a remote control.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314188.jpg', 'caption': 'A black cat with sleepy eyes lying on a bed next to a remote.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314188.jpg', 'caption': 'A cat laying on top of a couch with a blanket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314188.jpg', 'caption': 'A black cat is laying down on a bed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000314188.jpg', 'caption': 'The black cat is sitting on the arm of the chair.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030667.jpg', 'caption': 'Dog lying on bottom of enclosed area with people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030667.jpg', 'caption': 'A BROWN DOG IS LAYING UN THE FLOOR UNDER PEOPLES FEET', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030667.jpg', 'caption': 'The dog is lying down at the feet of two people. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030667.jpg', 'caption': 'A dog sit between the legs of several people.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030667.jpg', 'caption': 'Three people sitting down with a dog laying at their feet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120860.jpg', 'caption': 'The dog is standing on the boat staring at something.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120860.jpg', 'caption': 'A brown and white dog stands next to a life-saver ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120860.jpg', 'caption': 'A skinny brown and white dog is on the deck of a boat near an orange life saver.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120860.jpg', 'caption': 'a dog stands inside of a boat as it stares at a camera ', 'image': }]\n", - "[{'url': 'http://images.cocodataset.org/train2017/000000537631.jpg', 'caption': 'a girl is standing on a court with a tennis racket', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537631.jpg', 'caption': 'The two girls are practicing the sport tennis. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000537631.jpg', 'caption': 'The kids are playing tennis on the courts for physical education', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056091.jpg', 'caption': 'this is a woman on a tennis court', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056091.jpg', 'caption': 'a person walking on a tennis court holding a racket club', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056091.jpg', 'caption': 'a girl that is just swung a tennis racket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056091.jpg', 'caption': 'A woman walking off the tennis court holding a racket.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056091.jpg', 'caption': 'A woman in a red jacket is playing tennis.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072536.jpg', 'caption': 'A person is taking a slice of pizza inside.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072536.jpg', 'caption': 'A large pizza sitting on top of a white plate.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072536.jpg', 'caption': 'A thick crust pizza being eaten by someone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072536.jpg', 'caption': 'this person is eating a slice of pizza', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000072536.jpg', 'caption': 'A child is ready to break apart the pizza. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270097.jpg', 'caption': 'A man sitting at a laptop computer sitting in front of a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270097.jpg', 'caption': 'An image if a boy typing is reflected in a mirror.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270097.jpg', 'caption': 'a mirror with a reflection of a young man using a laptop ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270097.jpg', 'caption': 'A teenage boy on his computer in a bedroom.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000270097.jpg', 'caption': 'Young teen reflected in wooden framed mirror using laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443723.jpg', 'caption': 'A black and silver computer mouse with a black background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443723.jpg', 'caption': 'A Microsoft mouse is displayed on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443723.jpg', 'caption': 'A sleek black and silver wireless mouse is on this table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443723.jpg', 'caption': ' The computer mouse will get a lot of use by its owner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000443723.jpg', 'caption': 'Miicrosoft manufactures the latest electronic devices in the market\\n', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190722.jpg', 'caption': 'Computer desk with destop and open mac laptop', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190722.jpg', 'caption': 'a white laptop and a computer on a wood desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190722.jpg', 'caption': 'a table top with some computers on top of it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190722.jpg', 'caption': 'A laptop and a desktop sitting next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000190722.jpg', 'caption': 'a keyboard a laptop a monitor a phone on a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019923.jpg', 'caption': 'These are two very red sporty cars that are parked in the lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019923.jpg', 'caption': 'two cars parked in parking lot with a clock tower in the backgroound', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019923.jpg', 'caption': 'Two cars that are parked in a parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019923.jpg', 'caption': 'two red cars parked in a parking lot near a clock tower', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019923.jpg', 'caption': 'Two red cars are parked next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447087.jpg', 'caption': 'A table topped with lots of flowers in gold vases.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447087.jpg', 'caption': 'A large table with many vases of flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447087.jpg', 'caption': 'A bunch of flowers set out on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447087.jpg', 'caption': 'Vases of amaryllis, lilies, and other flowers arranged in silver vases on a tablecloth.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000447087.jpg', 'caption': 'Several vases on a table with different flowers in them. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070932.jpg', 'caption': 'A work desk with a silver laptop propped up on top of the desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070932.jpg', 'caption': 'The laptop is propped up above another keyboard and mouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070932.jpg', 'caption': 'a laptop sitting on a special rack on top of a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070932.jpg', 'caption': 'A computer work station in a business environment.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000070932.jpg', 'caption': 'A computer sitting on a desk with a mouse and keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056455.jpg', 'caption': 'A man sitting at a desk with a computer holding a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056455.jpg', 'caption': 'A young man sitting with a serious look on his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056455.jpg', 'caption': 'a man using a remote control while playing a video game', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056455.jpg', 'caption': 'A guy in a black shirt charging his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000056455.jpg', 'caption': 'A man sitting in front of a computer desk in front of a keyboard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030290.jpg', 'caption': 'A man hugging a teddy bear while laying on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030290.jpg', 'caption': 'A man asleep on a couch holding a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030290.jpg', 'caption': 'A man holding a teddy bear sleeping on a green plaid couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030290.jpg', 'caption': 'A man in a red shirt sleeps on a couch holding a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030290.jpg', 'caption': 'a man with eye glasses laying on a coach and holding a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419116.jpg', 'caption': 'A stuffed teddy bear sits on a tree branch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419116.jpg', 'caption': 'A teddy bear is sitting in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419116.jpg', 'caption': 'A stuffed bear is on a branch of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419116.jpg', 'caption': 'The orange stuffed teddy bear is on a tree limb. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419116.jpg', 'caption': 'A brown teddy bear sitting up in a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218926.jpg', 'caption': 'A brown teddy bear laying on a carpet with the sun shining on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218926.jpg', 'caption': 'A toy stuffed animal lying on the ground.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218926.jpg', 'caption': 'A teddy bear dressed in denim is laying on a floor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218926.jpg', 'caption': 'A teddy bear wearing a blue jumpsuit lays on a gray carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000218926.jpg', 'caption': 'A homemade teddy bear laying on a rug. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020403.jpg', 'caption': 'a stuffed animal is on the table nest to some leafs', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020403.jpg', 'caption': 'A brown teddy bear sitting on top of an answering machine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020403.jpg', 'caption': \"There's a stuffed bear sitting on a table\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020403.jpg', 'caption': 'A brown teddy bear sitting on top of a phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000020403.jpg', 'caption': 'A stuffed bear on a clear glass table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313341.jpg', 'caption': 'A woman with bright red hair siting in front of a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313341.jpg', 'caption': 'Two women sitting at a table looking at a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313341.jpg', 'caption': 'The woman are sitting at the restaurant table on the laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313341.jpg', 'caption': 'Woman in red hair sitting at a white table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000313341.jpg', 'caption': 'Two women watch a laptop over a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005860.jpg', 'caption': 'A small cell phone sitting next to a glass of Pepsi.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005860.jpg', 'caption': 'A cell phone resting on a glass of Pepsi.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005860.jpg', 'caption': 'A cup of soda with a cell phone propped against it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005860.jpg', 'caption': 'Cell phone laying on the side of a glass of soda.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000005860.jpg', 'caption': 'a cell phone leaning against a tall cup', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252833.jpg', 'caption': 'A man is talking on his cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252833.jpg', 'caption': 'A man has an intense cell phone conversation while making a gesture.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252833.jpg', 'caption': 'A man talks on a cellphone near a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252833.jpg', 'caption': 'a man with a tattoed arm talking on his cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252833.jpg', 'caption': 'The man also talks with his hands while conversing on the phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266487.jpg', 'caption': 'A pair of scissors next to some butter knives.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266487.jpg', 'caption': 'A pair of orange scissors and eating utensils on a yellow surface.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266487.jpg', 'caption': 'A pair of scissors placed on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266487.jpg', 'caption': 'A tray with scissors, dice and various other tools.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000266487.jpg', 'caption': 'a pair of scissors sit next to other tools ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053802.jpg', 'caption': 'Some people sitting around at various tables, with a railing dividing them', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053802.jpg', 'caption': 'A group of guys sitting around at a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053802.jpg', 'caption': 'There is a group of people gathered together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053802.jpg', 'caption': 'Several people sitting in a room in groups.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000053802.jpg', 'caption': 'Group of people sitting in a room with a railing in the middle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238799.jpg', 'caption': 'A girl looking out her window in her room. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238799.jpg', 'caption': 'A girl sitting in a bedroom, on a table, looking out the window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238799.jpg', 'caption': 'A girl sitting on a table in a bedroom looking out of a window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238799.jpg', 'caption': 'The young girl is sitting on a table in front of a bedroom window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000238799.jpg', 'caption': 'there is a woman that is sitting in front of a bedroom window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121828.jpg', 'caption': 'There are a lot of appliances stacked in the room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121828.jpg', 'caption': 'a refrigerator near an oven on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121828.jpg', 'caption': 'a large metallic fridge is next to a desk', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121828.jpg', 'caption': 'Fridge and large appliances in industrial looking kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000121828.jpg', 'caption': 'A warehouse with a refrigerator, oven and a desk. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538721.jpg', 'caption': 'Man putting laptop in bag while another Man is sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538721.jpg', 'caption': 'Man putting away his laptop in a case with another man sleeping at his PC.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538721.jpg', 'caption': 'Two men at a desk, one packing bag, one sleeping.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538721.jpg', 'caption': 'One worker is taking a nap, while the other worker is packing up a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000538721.jpg', 'caption': 'two college graduates pack up after a long day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120164.jpg', 'caption': 'A steel oven is pictured in this image.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120164.jpg', 'caption': 'A new stainless steel stove ready for installation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120164.jpg', 'caption': 'a close up of an oven in a kitchen ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120164.jpg', 'caption': 'a nice stove that is inside of a kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000120164.jpg', 'caption': 'A silver state of the art oven being installed.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150599.jpg', 'caption': 'A woman using a laptop computer at night.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150599.jpg', 'caption': 'A woman in a black dress is using a laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150599.jpg', 'caption': 'A woman standing up with a open laptop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150599.jpg', 'caption': 'A woman in black dress using a laptop by a park bench.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000150599.jpg', 'caption': 'The woman is outside using her laptop. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016606.jpg', 'caption': 'A mouse sitting on book, with a Microsoft logo on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016606.jpg', 'caption': 'THIS IS A PHOTO OF A MOUSE ON TOP OF A BOOK', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016606.jpg', 'caption': 'A computer mouse is sitting on the page of a book.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016606.jpg', 'caption': 'this is a mouse on a page on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000016606.jpg', 'caption': 'A mouse sitting on a book under an illustration of a tree.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383066.jpg', 'caption': 'A woman sitting at a table while holding a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383066.jpg', 'caption': 'A woman in a bonnet looking at a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383066.jpg', 'caption': \"A woman is looking at a cellphone that she's holding.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383066.jpg', 'caption': 'A lady wearing some white head covering using her phone at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000383066.jpg', 'caption': 'An amish woman looks at her flip phone in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080895.jpg', 'caption': 'A man checking his phone while a woman takes a photo of the water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080895.jpg', 'caption': 'A man and a lady playing with a wireless device of some sort.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080895.jpg', 'caption': 'A man and woman sitting on a dock reading their cellphones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080895.jpg', 'caption': 'A guy and a girl standing by the water on cellphones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000080895.jpg', 'caption': 'Two people sitting on a dock working on their cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198204.jpg', 'caption': 'A row of ovens sitting inside of a warehouse.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198204.jpg', 'caption': 'Several ovens lined up together in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198204.jpg', 'caption': 'A number of models and colors of stoves. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198204.jpg', 'caption': 'A row of different kind of kitchen stoves with different styles and colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000198204.jpg', 'caption': 'A warehouse lined with many different colored stoves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306928.jpg', 'caption': 'An old clock tower showing one forty-five during the day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306928.jpg', 'caption': \"A very large tower with a white clock on it's face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306928.jpg', 'caption': 'a clock on a tall tower with a sky background', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306928.jpg', 'caption': 'A smog darkened store clock tower providing a roost for pigeons. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000306928.jpg', 'caption': 'A clock tower with the time at one forty-five.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572210.jpg', 'caption': 'a close up of a child holding a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572210.jpg', 'caption': 'A little girl is holding up a cell phone to the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572210.jpg', 'caption': 'A young child holding a cell phone in her hand', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572210.jpg', 'caption': 'A little girl holding a cell phone in her hands.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572210.jpg', 'caption': 'A little girl holding up a smart phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245447.jpg', 'caption': 'Three woman and a man all sitting at a table on their cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245447.jpg', 'caption': 'a family sitting at a table in a restaurant looking at their phones', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245447.jpg', 'caption': 'Women sitting at a table in a restaurant all looking at their phones ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245447.jpg', 'caption': 'A table with people at it all on their cell phones.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000245447.jpg', 'caption': \"A family sitting a restaurant's dining table on their cellphones.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300142.jpg', 'caption': 'A woman is sitting using a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300142.jpg', 'caption': 'a woman talking on a cell phone in a resturant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300142.jpg', 'caption': 'A woman sitting down talking on her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300142.jpg', 'caption': 'A woman is talking on her cell phone in the middle of a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000300142.jpg', 'caption': 'A gray haired woman talking on a cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286972.jpg', 'caption': 'Three people walking on a hike in the outdoors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286972.jpg', 'caption': 'Three people standing next to each other on a country road in a forest.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286972.jpg', 'caption': 'Three people stand on a curved road edged by pine trees and fog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286972.jpg', 'caption': 'Three people are on a tree lined road.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000286972.jpg', 'caption': 'Three men wearing specialty clothing with machines strapped to their backs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436426.jpg', 'caption': 'A smart device sitting on top of a brick counter.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436426.jpg', 'caption': 'A cell phone flipped open near a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436426.jpg', 'caption': 'A flip up cell phone with keypad on top of a book', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436426.jpg', 'caption': 'A grey flip phone on a table next to a lamp.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000436426.jpg', 'caption': 'An electronic device on a table next to a lamp. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030529.jpg', 'caption': 'An old style portable phone and the bag it sets in.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030529.jpg', 'caption': 'a cellphone a white bag and some cords', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030529.jpg', 'caption': 'A wireless phone laying on a case next to a charger.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030529.jpg', 'caption': 'A phone is sitting on its case with a charger next to that.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000030529.jpg', 'caption': 'A mobile phone sitting on top of a bag and some cords.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564738.jpg', 'caption': 'A man holding a phone up to his ear near a tall brick building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564738.jpg', 'caption': 'A person on a phone in a jacket next to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564738.jpg', 'caption': 'A man in a suit talking on a cell phone next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564738.jpg', 'caption': 'A man in a suit stands outside and talks on a phone next to a large window.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000564738.jpg', 'caption': 'A person is talking on a phone next to a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140231.jpg', 'caption': 'a work desk with display with graphs, notebooks, and keyboard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140231.jpg', 'caption': 'a table top with a giant remote control on it ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140231.jpg', 'caption': 'A glass desk with a variety of electronic equipment on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140231.jpg', 'caption': 'a black keyboard and other things under a case', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000140231.jpg', 'caption': 'A computer keyboard and book on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019712.jpg', 'caption': 'Group of people outside and one pointing up to the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019712.jpg', 'caption': 'A group of people standing around talking happily.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019712.jpg', 'caption': 'A man taking a photo of the sky amongst his happy family', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019712.jpg', 'caption': 'A man did something funny that the women laugh about it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000019712.jpg', 'caption': 'A group of people smile and laugh together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360328.jpg', 'caption': 'A older woman is on the phone in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360328.jpg', 'caption': 'An older woman on a cell phone in her kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360328.jpg', 'caption': 'Older woman talking on her personal flip phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360328.jpg', 'caption': 'A woman is standing in a kitchen talking on her cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000360328.jpg', 'caption': 'An elderly woman talking on her flip phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453862.jpg', 'caption': 'A small object that has two antennas coming out of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453862.jpg', 'caption': 'A wooden table with books brochures and pencils.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453862.jpg', 'caption': 'a case with some markers sitting on a wooden table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453862.jpg', 'caption': 'Many items are sitting on top of a wood table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000453862.jpg', 'caption': 'The two markers are sitting on the holder on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178715.jpg', 'caption': 'A hand pressing buttons to play a game on a flip phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178715.jpg', 'caption': 'A hand holds a phone and presses a button. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178715.jpg', 'caption': 'A flip style cell phone in a hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178715.jpg', 'caption': 'A close up view of a person holding out an open cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000178715.jpg', 'caption': 'A hand holds an old-style flip phone in the open position. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374401.jpg', 'caption': 'a close up of a person talking on a very old cell phone ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374401.jpg', 'caption': 'The man is talking on the phone which is a older style phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374401.jpg', 'caption': 'a man that is talking on a cell phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374401.jpg', 'caption': 'two males in black shirts and one has a phone', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000374401.jpg', 'caption': 'A man is yelling into a mobile device in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572181.jpg', 'caption': 'A man talking on an old ass cell phone from the 80s.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572181.jpg', 'caption': 'A smiling man wearing glasses talks on an older style cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572181.jpg', 'caption': 'A man talking on an old style cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572181.jpg', 'caption': 'A man is talking on an old cellular phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000572181.jpg', 'caption': 'The man is talking on an old school cellular phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092355.jpg', 'caption': 'A clock mounted on a stove top oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092355.jpg', 'caption': 'A stainless steel Maytag clock radio with a rock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092355.jpg', 'caption': 'This is the clock and oven controls for the stove.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092355.jpg', 'caption': 'The electronic display of an oven displays \"350\".', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000092355.jpg', 'caption': 'The dash of a stove showing the oven temperature and pans on the stove top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219437.jpg', 'caption': 'Kitchen area of home with food in oven or consumption.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219437.jpg', 'caption': 'A kitchen counter top with built-in oven and stone flooring.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219437.jpg', 'caption': 'A cluttered kitchen with the light turned on in the oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219437.jpg', 'caption': 'a stove has its light on in the kitchen', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000219437.jpg', 'caption': 'A kitchen with a few cabinets and a small oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528972.jpg', 'caption': 'A container is standing on a loading dock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528972.jpg', 'caption': 'A white refrigerator with two doors and a basket sitting on top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528972.jpg', 'caption': 'some kind of cabinet that is in a building', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528972.jpg', 'caption': 'a weird looking appliance that could be a cabinet or a fridge ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000528972.jpg', 'caption': 'a white fridge with stuff piled on top', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473196.jpg', 'caption': 'Two buildings standing tall but the tallest one has a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473196.jpg', 'caption': 'A clock tower next to a building in a city.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473196.jpg', 'caption': 'A large clock tower in the center of a town .', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473196.jpg', 'caption': 'A clock tower beside a building in the sun ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473196.jpg', 'caption': 'A large tower with a clock beside a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268356.jpg', 'caption': 'A tall clock tower sticking out of the roof of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268356.jpg', 'caption': 'A view over the slate roofs of a seaside town.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268356.jpg', 'caption': 'There is a beautiful view from the rooftops.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268356.jpg', 'caption': 'Many building roofs with a view of the ocean in the background.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000268356.jpg', 'caption': 'A red and grey clock tower above buildings by water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506444.jpg', 'caption': 'A floor covered in food and office supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506444.jpg', 'caption': 'Various supplies and food on a carpet that include water bottles and pens.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506444.jpg', 'caption': 'School supplies laid out on a carpet before the school year.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506444.jpg', 'caption': 'School supplies, food, and hygiene products are laid out on carpet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000506444.jpg', 'caption': 'a pile of school supplies and water bottle sitting together', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251629.jpg', 'caption': 'A boy hitting a tennis ball with a racquet.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251629.jpg', 'caption': 'a large vase with a big colorful boquet sitting on a table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251629.jpg', 'caption': 'A vase full of flowers of different colors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251629.jpg', 'caption': 'A large vase of flowers in front of a wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000251629.jpg', 'caption': 'a close up of a vase with many different flowers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281625.jpg', 'caption': 'There are a lot of people sitting by the fountain.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281625.jpg', 'caption': 'A clock that is on the side of a tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281625.jpg', 'caption': 'A gathering of people sit outside by the big clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281625.jpg', 'caption': 'People are sitting near a fountain in a courtyard.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000281625.jpg', 'caption': 'A person on a field near a large tall tower with a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396768.jpg', 'caption': 'Big clock decorates the outside of a brick wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396768.jpg', 'caption': 'gauge or dial on brick wall in britain yard', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396768.jpg', 'caption': 'The clock is sitting at the entrance of the parking lot.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396768.jpg', 'caption': 'A brick wall with a white and black clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396768.jpg', 'caption': 'The face of a clock is in a brick pillar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478220.jpg', 'caption': 'A city that has many large and tall buildings. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478220.jpg', 'caption': 'A city with very tall and pointy buildings.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478220.jpg', 'caption': 'a clock in a clock tower and some buildings and clouds', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478220.jpg', 'caption': 'The rooftops and clock towers in a European cityscape', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000478220.jpg', 'caption': 'The roofs of many buildings can be seen in the city. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074000.jpg', 'caption': 'a tower with some clocks on the top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074000.jpg', 'caption': 'A clock that is on top of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074000.jpg', 'caption': 'The tower clock is architecturally sound in purpose and appearance.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074000.jpg', 'caption': \"A tall clock tower with a clock on each of it's sides.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000074000.jpg', 'caption': 'A large brick clock tower attached to a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280530.jpg', 'caption': 'Tall tower with a clock on top on an overcast day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280530.jpg', 'caption': 'Big Been clock tower in London, England on an overcast day.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280530.jpg', 'caption': 'the building has a clock on the top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280530.jpg', 'caption': 'An old clock tower showing two clocks outlined in gold.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000280530.jpg', 'caption': 'A very tall building with a clock at the top of it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469824.jpg', 'caption': 'A very tall tower has clocks all around the top of it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469824.jpg', 'caption': 'The tower on the building has a clock displayed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469824.jpg', 'caption': 'Two clocks on the sides of a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469824.jpg', 'caption': 'A clock tower rises high into a gray colored sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000469824.jpg', 'caption': 'A tall, ornate tower features clocks on its front and side.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115060.jpg', 'caption': 'A golden clock in a case on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115060.jpg', 'caption': 'A golden clock with figures of children in a glass case on display.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115060.jpg', 'caption': 'A very ornate and very pretty gold clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115060.jpg', 'caption': 'A gold clock wit two cherubs under glass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000115060.jpg', 'caption': 'A clock with two statues on the table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560427.jpg', 'caption': 'A plate of breakfast foods sitting on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560427.jpg', 'caption': 'A tray filled with a plate of food and cups of coffee and orange juice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560427.jpg', 'caption': 'Breakfast plate on placemat next to coffee and orange juice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560427.jpg', 'caption': 'A meal set out on a plate with a glass of orange juice and a cup of coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000560427.jpg', 'caption': 'A bacon, eggs, and toast breakfast complete with coffee and orange juice.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316031.jpg', 'caption': 'Black and white photograph of houses and a clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316031.jpg', 'caption': 'A tall clock tower with a weather vane on top. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316031.jpg', 'caption': 'A building has a tower with a clock on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316031.jpg', 'caption': 'The tower in town has a clock displayed. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000316031.jpg', 'caption': 'a tall stone structure with a steeple holding a compass and a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567812.jpg', 'caption': 'A man sits with a teddy bear on his shoulders. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567812.jpg', 'caption': 'A man has a teddy bear around his neck.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567812.jpg', 'caption': 'A man sitting down with a brown teddy bear on his shoulders.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567812.jpg', 'caption': 'A man smiling with a teddy bear behind his head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000567812.jpg', 'caption': 'A man with a small brown stuffed animal on his shoulder.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252354.jpg', 'caption': 'A person laying down holding a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252354.jpg', 'caption': 'A person is laying in bed with a stuffed bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252354.jpg', 'caption': 'A man lying in bed holding a brown teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252354.jpg', 'caption': 'A man in black shirt laying on bed with a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000252354.jpg', 'caption': 'A guy holds a stuffed bear in front of the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289152.jpg', 'caption': 'A baby and a teddy bear in a playpen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289152.jpg', 'caption': 'Small baby in a hello kitty sweater smiling for the camera.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289152.jpg', 'caption': 'A baby is smiling while holding a teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289152.jpg', 'caption': 'A smiling baby sitting and holding a stuffed animal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000289152.jpg', 'caption': 'a small child in a gray shirt and a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431954.jpg', 'caption': 'A young girl, holding a teddy bear at an outdoor event.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431954.jpg', 'caption': 'a girl with a captain america shirt holding onto a teddy bear. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431954.jpg', 'caption': 'A girl in blue shirt holding a teddy bear in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431954.jpg', 'caption': 'A woman holding a teddy bear in a costume while wearing a really tight shirt.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000431954.jpg', 'caption': 'A woman in a captain america suit with a teddy bear', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494085.jpg', 'caption': 'A kitchen counter with a clock and notepad on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494085.jpg', 'caption': 'A small wooden clock sitting on a counter next to a note pad and pen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494085.jpg', 'caption': 'A clock, notepad, and bottle on a marble countertop.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494085.jpg', 'caption': 'A clock, notepad, pen and something in a plastic bag on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000494085.jpg', 'caption': 'A clock is sitting next to a list.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089745.jpg', 'caption': 'An old clock with Roman numerals in a tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089745.jpg', 'caption': 'The Big Ben clock tower towering over the city of London.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089745.jpg', 'caption': 'A large clock tower under a grey cloudy sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089745.jpg', 'caption': 'A cloudy picture of a golden clock tower.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000089745.jpg', 'caption': 'A high tower with a point on top has a clock near the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209935.jpg', 'caption': 'A clock tower next to a street and a body of water.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209935.jpg', 'caption': 'A clock tower lit up by the bay', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209935.jpg', 'caption': 'A round clock on a colorful tower near a harbor.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209935.jpg', 'caption': 'A large clock tower is lit up on a shore.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000209935.jpg', 'caption': 'A tall clock tower stands near a body of water and a light post.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126065.jpg', 'caption': 'The two figurines and bells are under the clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126065.jpg', 'caption': \"A stone building with a large clock on it's face.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126065.jpg', 'caption': 'A clock with German figures beneath it is on the side of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126065.jpg', 'caption': 'An ancient-looking clock on a building has two bells with a soldier stationed at each end.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000126065.jpg', 'caption': 'A clock, bells and wall sculpture on a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518615.jpg', 'caption': \"A large brick church with a clock mounted on it's side.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518615.jpg', 'caption': 'A church made of red brick with a white steeple.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518615.jpg', 'caption': 'A weather vane sits on top of a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518615.jpg', 'caption': 'A building with a small tower and a wind indicator on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000518615.jpg', 'caption': 'Roof of a brick building with a chimney and a steeple with a weather vane on top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188132.jpg', 'caption': 'A tall castle like building has a clock over the window', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188132.jpg', 'caption': 'A very tall building that has a clock.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188132.jpg', 'caption': 'A large brick building with a clock at the top.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188132.jpg', 'caption': 'A large brick bulding with a massive clock on the face of the building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000188132.jpg', 'caption': 'A clock and tower atop a brick structure.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205677.jpg', 'caption': 'The vanity looks like it belongs in a Victorian house.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205677.jpg', 'caption': 'Some very old and antique looking objects. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205677.jpg', 'caption': 'Some vases that are in a glass container.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205677.jpg', 'caption': 'Ornate table with cased vases and elaborate wall', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000205677.jpg', 'caption': 'A desk with a mirror in a room.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004079.jpg', 'caption': 'a silver vase and some silver leaves and a green plant', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004079.jpg', 'caption': 'A slender silver vase holds a simple arrangement of branches with silver leaves.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004079.jpg', 'caption': 'A metal vase sitting on top of a wooden desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004079.jpg', 'caption': 'Artificial decoration in a silver vase sitting by a plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000004079.jpg', 'caption': 'A silver vase sits on a wood surface with sprigs of silver leaves in it next to a leafy green plant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146997.jpg', 'caption': 'A flower vase that is very colorful. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146997.jpg', 'caption': 'a vase covered in mosaic tiles holding three flowers', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146997.jpg', 'caption': 'A picture of a vase with three flowers in it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146997.jpg', 'caption': 'There are three individual flowers in a vase.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000146997.jpg', 'caption': 'A vase filled with red and white flowers.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086008.jpg', 'caption': 'a cup that has a pair of scissors pens and markers in it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086008.jpg', 'caption': 'Pens, markers, pencils and scissors in a cup on a desk next to a cellphone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086008.jpg', 'caption': 'A cup with some scissors and some pens on a desk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086008.jpg', 'caption': 'a cup containing scissors, a pen, and a few eyeliner pencils', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000086008.jpg', 'caption': 'A view of a cup holding scissors and writing utensils. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055780.jpg', 'caption': 'A little girl holding a dog on a leash.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055780.jpg', 'caption': 'A person and a child standing outside holding dogs.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055780.jpg', 'caption': 'A girl is smiling while holding a dog.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055780.jpg', 'caption': 'a child holding a dog standing next to an adult.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000055780.jpg', 'caption': 'A girl holding a small dog poses for a photograph at a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473942.jpg', 'caption': 'a stuffed animal tied to something with a chain on the ground', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473942.jpg', 'caption': 'The plush toy is being suspended on the hook.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473942.jpg', 'caption': 'a stuffed bear with beads in a field', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473942.jpg', 'caption': 'A stuffed animal hanging from a post in a field.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000473942.jpg', 'caption': 'The stuffed bear is suspended from a plant hook by a long strand of gray pearls.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269098.jpg', 'caption': 'A man sitting on a couch next to a white stuffed teddy bear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269098.jpg', 'caption': 'A man sitting on a couch with his shirt over his face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269098.jpg', 'caption': 'A bald man with a red shirt pulled over his face sitting on a sofa.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269098.jpg', 'caption': 'A MAN IS SITTING ON THE COUCH WITH A MAGAZINE ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000269098.jpg', 'caption': 'A man sitting on a love seat holding a newspaper and covering his face with the shirt he is wearing ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047720.jpg', 'caption': 'The table has a sandwich, a mug of coffee and custard cream on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047720.jpg', 'caption': 'A warm mug and toast for a meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047720.jpg', 'caption': 'a grilled sandwich and a coffee drink on a table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047720.jpg', 'caption': 'a white plate with some toast and a cup of coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000047720.jpg', 'caption': 'a cup of coffee sits next to a panini sandwich on a counter', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369831.jpg', 'caption': 'A breakfast of croissant and coffee sits on a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369831.jpg', 'caption': 'A table with baked goods and coffee on it', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369831.jpg', 'caption': 'Half a cup of coffee are next to a couple pieces of bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369831.jpg', 'caption': 'A half-filled cup of coffee on a table with pastries and bread.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000369831.jpg', 'caption': 'A cup of coffee is sitting next to a pastry.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485483.jpg', 'caption': 'Some pancakes with icecream and bananas and a coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485483.jpg', 'caption': 'An ice cream and banana crepe dessert on a plate next to a Cappucino in a restaurant.. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485483.jpg', 'caption': 'Two small dining tables with food and drink on them.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485483.jpg', 'caption': 'a table filled with plates of food and cups of water and coffee', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000485483.jpg', 'caption': 'Two small tables with banana pancakes and coffee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558633.jpg', 'caption': 'People are sitting at a table and eating dinner. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558633.jpg', 'caption': 'A man and a woman eating food at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558633.jpg', 'caption': 'The people are enjoying their ethnic meal together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558633.jpg', 'caption': 'A group eats dinner at a table with red and white plates.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000558633.jpg', 'caption': 'a man and a woman sitting at a table eating food', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559550.jpg', 'caption': 'Two children are eating while sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559550.jpg', 'caption': 'Two children play while eating in a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559550.jpg', 'caption': 'A boy and a girl sitting in highchairs at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559550.jpg', 'caption': 'Girl in high chair reaching for something while Brother watches.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000559550.jpg', 'caption': \"The little girl doesn't want to keep sitting in her seat.\", 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274352.jpg', 'caption': 'A large group of women are at a dining table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274352.jpg', 'caption': 'A group of people around a table at a crowded restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274352.jpg', 'caption': 'A huge crowd of people are posing for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274352.jpg', 'caption': 'A group of women hanging around a long table', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000274352.jpg', 'caption': 'A group of people that are sitting at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277991.jpg', 'caption': 'A group of people sitting around a wooden table with food.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277991.jpg', 'caption': 'The nine people smile as they sit at a dinner table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277991.jpg', 'caption': 'A table full of people that are eating at a restaurant.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277991.jpg', 'caption': 'Co-workers often get together after a long day at work.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000277991.jpg', 'caption': 'A group of people that are sitting around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396369.jpg', 'caption': 'a bunch of people sit around a wooden table ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396369.jpg', 'caption': 'Many people at the table are smiling for the camera. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396369.jpg', 'caption': 'A group of people are sitting together at a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396369.jpg', 'caption': 'A group of people crowd around a table on a balcony. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000396369.jpg', 'caption': 'A group of people that are sitting around a table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377730.jpg', 'caption': 'A group of people at a party, listening to a man talk.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377730.jpg', 'caption': 'Four people convesate around a table covered with wine bottles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377730.jpg', 'caption': 'Two men and two women are drinking and engaged in conversation.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377730.jpg', 'caption': 'A group of people sitting at some tables.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000377730.jpg', 'caption': 'A man expressing something as others listen and hold wine glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419190.jpg', 'caption': 'Two women wearing sunglasses enjoying a glass of alcohol.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419190.jpg', 'caption': 'a couple of women that have a glass of wine', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419190.jpg', 'caption': 'a close up of two people with wine glasses ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419190.jpg', 'caption': 'Two woman enjoy a toast with glasses of champagne.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000419190.jpg', 'caption': 'A couple of beautiful ladies holding champagne glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257187.jpg', 'caption': 'Two female friends posing with a bottle of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257187.jpg', 'caption': 'Two women drinking wine and holding a bottle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257187.jpg', 'caption': 'One woman holds a bottle of wine and another woman holds a glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257187.jpg', 'caption': 'Two young women are sharing a bottle of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000257187.jpg', 'caption': 'Two women posing for a photo with drinks in hand.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130485.jpg', 'caption': 'a man that is drinking something out of a glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130485.jpg', 'caption': 'A man poses for a picture while holding a glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130485.jpg', 'caption': 'A man in a suit is sitting with a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130485.jpg', 'caption': 'A man is posing at a table with a wine glass. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000130485.jpg', 'caption': 'a man is sitting at a table with a wine glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347087.jpg', 'caption': 'A person serving putting red wine to a glass', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347087.jpg', 'caption': 'A couple of people pouring a glass of wine.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347087.jpg', 'caption': 'A person is pouring wine into a wine glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347087.jpg', 'caption': 'Red wine is being poured into a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000347087.jpg', 'caption': 'A lit candle is on a table where red wine is being poured into a glass.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154931.jpg', 'caption': 'Two people eating a variety of food together.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154931.jpg', 'caption': 'pepole eating at a restaurannt meat and veggies', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154931.jpg', 'caption': 'A couple enjoying a colorful and diverse meal.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154931.jpg', 'caption': 'A table full of Greek food lunch at a small cafe', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000154931.jpg', 'caption': 'A table full of an assortment of foods and glasses.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287190.jpg', 'caption': 'a lady that is i a blue towel laying down', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287190.jpg', 'caption': 'A woman covering her face while sleeping on the bed', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287190.jpg', 'caption': 'A woman covers her head with a blanket. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287190.jpg', 'caption': 'A lady laying down with a bright blue thing on her face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000287190.jpg', 'caption': 'A woman with a purple cloth over her eyes and head. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298225.jpg', 'caption': 'A man wearing a hat riding a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298225.jpg', 'caption': 'Old black and white image of a man on a motorcycle', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298225.jpg', 'caption': 'The man is posing for a picture on his motorcycle. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298225.jpg', 'caption': 'A man in a hat on a motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298225.jpg', 'caption': 'A black and white photo of a man riding his motorcycle.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493509.jpg', 'caption': 'The woman is working on her laptop while the man is on the cell phone.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493509.jpg', 'caption': 'a couple of people that has hard hats on', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493509.jpg', 'caption': 'A man and woman standing next to each other.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493509.jpg', 'caption': 'Woman with laptop near man on cell phone dressed in construction worker gear.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000493509.jpg', 'caption': 'Two people are standing together in bright yellow vests.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474667.jpg', 'caption': 'A person holding a black cat next to their face.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474667.jpg', 'caption': 'A teenager with acne, holding up a black cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474667.jpg', 'caption': 'A person looks at the camera while holding a black cat.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474667.jpg', 'caption': 'a person is holding up a black cat', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000474667.jpg', 'caption': 'A man with a black kitten is staring at the viewer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118097.jpg', 'caption': 'A man thinks as he stands in front of a sign.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118097.jpg', 'caption': 'A man standing in front of a board that says \"Who do you think you are?\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118097.jpg', 'caption': 'Man looking up near words Who do you think you are?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118097.jpg', 'caption': 'Man in front of a sign about \"Who do you think you are?\"', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000118097.jpg', 'caption': 'A man rolls his eyes next to a sign that says Who do you think you are?', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106172.jpg', 'caption': 'A guy posing with a guitar while making a song.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106172.jpg', 'caption': 'A man by a book case has a guitar.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106172.jpg', 'caption': 'a person that is playing his guitar in a room', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106172.jpg', 'caption': 'a man playing guitar smies into the camera', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000106172.jpg', 'caption': 'A man posing for his photo with a guitar in front of his computer.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407115.jpg', 'caption': 'A long counter holding an assortment of coffee related items.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407115.jpg', 'caption': 'The drink area of the store is clean and ready to use.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407115.jpg', 'caption': 'A coffee shop is equipped with pots of coffee, paper cups and other supplies.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407115.jpg', 'caption': 'A counter in a coffee house with choices of coffee and syrup flavors.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000407115.jpg', 'caption': 'A counter in a large room in a building.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097159.jpg', 'caption': 'a compact kitchen with stainless-steel cabinets behind glass blocks', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097159.jpg', 'caption': 'A very small galley style kitchen with glass blocks in the wall.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097159.jpg', 'caption': 'A small kitchen with a sink and an oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097159.jpg', 'caption': 'a kitchen with a wooden counter, sink, and oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000097159.jpg', 'caption': 'a kitchen with a sink a stove and cupboards', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298540.jpg', 'caption': 'A patch of grass with lots of bikes parked on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298540.jpg', 'caption': 'A couple of people playing Frisbee in a park.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298540.jpg', 'caption': 'Adults playing with flying disc on grassy area near bicycles.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298540.jpg', 'caption': 'Bikes are lying on the ground and people are playing Frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000298540.jpg', 'caption': 'Several bikes laying on the grass and a person holding a frisbee.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546428.jpg', 'caption': 'A kitchen with a white stove top oven.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546428.jpg', 'caption': 'A kitchen with a stove, microwave, counters, cabinets and an opened pantry', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546428.jpg', 'caption': 'A stove and a microwave in a kitchen.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546428.jpg', 'caption': 'A newly remodeled kitchen in a new home.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000546428.jpg', 'caption': 'a white kitchen with a white stove and microwave', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276127.jpg', 'caption': 'A table set for a traditional Thanksgiving dinner.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276127.jpg', 'caption': 'A Thanksgiving turkey with stuffing rolls and pumpkin pie sitting on a small white table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276127.jpg', 'caption': 'the table is set with many things to eat. ', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276127.jpg', 'caption': 'A Thanksgiving Day meal is prepped on the table.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000276127.jpg', 'caption': 'The table has a turkey, rolls, and a pumpkin pie on it.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169505.jpg', 'caption': 'A person flying a kite high in the sky.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169505.jpg', 'caption': 'People out flying kites on a sunny day', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169505.jpg', 'caption': 'Three people stand on a grassy hill flying kites.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169505.jpg', 'caption': 'Some people on a hill flying a kite.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000169505.jpg', 'caption': 'There are people on top of a hill flying kites', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476925.jpg', 'caption': 'A man sitting on a top of a green couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476925.jpg', 'caption': 'A mand sitting on a green couch with glasses on.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476925.jpg', 'caption': 'A man that is sitting on a couch.', 'image': }, {'url': 'http://images.cocodataset.org/train2017/000000476925.jpg', 'caption': 'An elderly man is sitting on a couch.', 'image': }]\n" - ] - } - ], + "outputs": [], "source": [ "for i in tqdm.tqdm(data_loader):\n", " # print(i)\n", @@ -1137,45 +812,18 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1686" - ] - }, - "execution_count": 40, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "queue.qsize()" ] }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Defaulting to user installation because normal site-packages is not writeable\n", - "Collecting arrayqueues\n", - " Downloading arrayqueues-1.4.1-py3-none-any.whl.metadata (3.4 kB)\n", - "Requirement already satisfied: numpy in /home/mrwhite0racle/.local/lib/python3.10/site-packages (from arrayqueues) (1.26.4)\n", - "Downloading arrayqueues-1.4.1-py3-none-any.whl (6.4 kB)\n", - "\u001b[33mWARNING: Error parsing dependencies of distro-info: Invalid version: '1.1build1'\u001b[0m\u001b[33m\n", - "\u001b[0m\u001b[33mWARNING: Error parsing dependencies of python-debian: Invalid version: '0.1.43ubuntu1'\u001b[0m\u001b[33m\n", - "\u001b[0mInstalling collected packages: arrayqueues\n", - "Successfully installed arrayqueues-1.4.1\n" - ] - } - ], + "outputs": [], "source": [ "!pip install arrayqueues" ] @@ -1184,54 +832,7 @@ "cell_type": "code", "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Map (num_proc=8): 0%| | 0/591753 [00:00 5\u001b[0m \u001b[43mprocess\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mjoin\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/process.py:149\u001b[0m, in \u001b[0;36mBaseProcess.join\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 147\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_parent_pid \u001b[38;5;241m==\u001b[39m os\u001b[38;5;241m.\u001b[39mgetpid(), \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mcan only join a child process\u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m 148\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_popen \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mcan only join a started process\u001b[39m\u001b[38;5;124m'\u001b[39m\n\u001b[0;32m--> 149\u001b[0m res \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_popen\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mwait\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 150\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m res \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 151\u001b[0m _children\u001b[38;5;241m.\u001b[39mdiscard(\u001b[38;5;28mself\u001b[39m)\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/popen_fork.py:43\u001b[0m, in \u001b[0;36mPopen.wait\u001b[0;34m(self, timeout)\u001b[0m\n\u001b[1;32m 41\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 42\u001b[0m \u001b[38;5;66;03m# This shouldn't block if wait() returned successfully.\u001b[39;00m\n\u001b[0;32m---> 43\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpoll\u001b[49m\u001b[43m(\u001b[49m\u001b[43mos\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mWNOHANG\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mif\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m==\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;241;43m0.0\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01melse\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 44\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mreturncode\n", - "File \u001b[0;32m/usr/lib/python3.10/multiprocessing/popen_fork.py:27\u001b[0m, in \u001b[0;36mPopen.poll\u001b[0;34m(self, flag)\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mreturncode \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 26\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 27\u001b[0m pid, sts \u001b[38;5;241m=\u001b[39m \u001b[43mos\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mwaitpid\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpid\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mflag\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 28\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m:\n\u001b[1;32m 29\u001b[0m \u001b[38;5;66;03m# Child process not yet created. See #1731717\u001b[39;00m\n\u001b[1;32m 30\u001b[0m \u001b[38;5;66;03m# e.errno == errno.ECHILD == 10\u001b[39;00m\n\u001b[1;32m 31\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Map (num_proc=8): 6%|▋ | 37568/591753 [00:36<07:50, 1176.97 examples/s]" - ] - }, - { - "ename": "", - "evalue": "", - "output_type": "error", - "traceback": [ - "\u001b[1;31mThe Kernel crashed while executing code in the current cell or a previous cell. \n", - "\u001b[1;31mPlease review the code in the cell(s) to identify a possible cause of the failure. \n", - "\u001b[1;31mClick here for more info. \n", - "\u001b[1;31mView Jupyter log for further details." - ] - } - ], + "outputs": [], "source": [ "with multiprocessing.Manager() as manager:\n", "img_queue = manager.Queue()\n", @@ -1242,29 +843,9 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 0%| | 0/100 [00:00 85\u001b[0m batch \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mnext\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mdataset\u001b[49m\u001b[43m)\u001b[49m\n", - "Cell \u001b[0;32mIn[6], line 67\u001b[0m, in \u001b[0;36mImageBatchIterator.__next__\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m__next__\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[1;32m 66\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mshared_index\u001b[38;5;241m.\u001b[39mvalue \u001b[38;5;241m<\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbatch_size:\n\u001b[0;32m---> 67\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mStopIteration\u001b[39;00m\n\u001b[1;32m 69\u001b[0m batch_start \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mmax\u001b[39m(\u001b[38;5;241m0\u001b[39m, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mshared_index\u001b[38;5;241m.\u001b[39mvalue \u001b[38;5;241m-\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbatch_size)\n\u001b[1;32m 70\u001b[0m batch_end \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mshared_index\u001b[38;5;241m.\u001b[39mvalue\n", - "\u001b[0;31mStopIteration\u001b[0m: " - ] - } - ], + "outputs": [], "source": [ "import multiprocessing\n", "from multiprocessing import shared_memory\n", diff --git a/flaxdiff/data/online_loader.py b/flaxdiff/data/online_loader.py index 4bd606d..0d78e8b 100644 --- a/flaxdiff/data/online_loader.py +++ b/flaxdiff/data/online_loader.py @@ -13,7 +13,7 @@ import numpy as np from functools import partial -from datasets import load_dataset, concatenate_datasets, Dataset +from datasets import load_dataset, concatenate_datasets, Dataset, load_from_disk from datasets.utils.file_utils import get_datasets_user_agent from concurrent.futures import ThreadPoolExecutor import io @@ -27,6 +27,7 @@ data_queue = Queue(16*2000) error_queue = Queue(16*2000) + def fetch_single_image(image_url, timeout=None, retries=0): for _ in range(retries + 1): try: @@ -42,19 +43,35 @@ def fetch_single_image(image_url, timeout=None, retries=0): image = None return image + +def default_image_processor(image, image_shape, interpolation=cv2.INTER_LANCZOS4): + image = A.longest_max_size(image, max( + image_shape), interpolation=interpolation) + image = A.pad( + image, + min_height=image_shape[0], + min_width=image_shape[1], + border_mode=cv2.BORDER_CONSTANT, + value=[255, 255, 255], + ) + return image + + def map_sample( - url, caption, + url, caption, image_shape=(256, 256), timeout=15, retries=3, upscale_interpolation=cv2.INTER_LANCZOS4, downscale_interpolation=cv2.INTER_AREA, + image_processor=default_image_processor, ): try: - image = fetch_single_image(url, timeout=timeout, retries=retries) # Assuming fetch_single_image is defined elsewhere + # Assuming fetch_single_image is defined elsewhere + image = fetch_single_image(url, timeout=timeout, retries=retries) if image is None: return - + image = np.array(image) original_height, original_width = image.shape[:2] # check if the image is too small @@ -69,14 +86,10 @@ def map_sample( image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) downscale = max(original_width, original_height) > max(image_shape) interpolation = downscale_interpolation if downscale else upscale_interpolation - image = A.longest_max_size(image, max(image_shape), interpolation=interpolation) - image = A.pad( - image, - min_height=image_shape[0], - min_width=image_shape[1], - border_mode=cv2.BORDER_CONSTANT, - value=[255, 255, 255], - ) + + image = image_processor( + image, image_shape, interpolation=interpolation) + data_queue.put({ "url": url, "caption": caption, @@ -85,65 +98,74 @@ def map_sample( "original_width": original_width, }) except Exception as e: - print(f"Error in map_sample: {str(e)}") error_queue.put({ "url": url, "caption": caption, "error": str(e) }) -def map_batch(batch, num_threads=256, image_shape=(256, 256), timeout=15, retries=3): + +def map_batch(batch, num_threads=256, image_shape=(256, 256), timeout=15, retries=3, image_processor=default_image_processor): try: - map_sample_fn = partial(map_sample, image_shape=image_shape, timeout=timeout, retries=retries) + map_sample_fn = partial(map_sample, image_shape=image_shape, + timeout=timeout, retries=retries, image_processor=image_processor) with ThreadPoolExecutor(max_workers=num_threads) as executor: executor.map(map_sample_fn, batch["url"], batch['caption']) except Exception as e: - print(f"Error in map_batch: {str(e)}") error_queue.put({ "batch": batch, "error": str(e) }) - -def parallel_image_loader(dataset: Dataset, num_workers: int = 8, image_shape=(256, 256), num_threads=256): - map_batch_fn = partial(map_batch, num_threads=num_threads, image_shape=image_shape) + + +def parallel_image_loader(dataset: Dataset, num_workers: int = 8, image_shape=(256, 256), + num_threads=256, timeout=15, retries=3, image_processor=default_image_processor): + map_batch_fn = partial(map_batch, num_threads=num_threads, image_shape=image_shape, + timeout=timeout, retries=retries, image_processor=image_processor) shard_len = len(dataset) // num_workers print(f"Local Shard lengths: {shard_len}") with multiprocessing.Pool(num_workers) as pool: iteration = 0 while True: # Repeat forever - print(f"Shuffling dataset with seed {iteration}") - # dataset = dataset.shuffle(seed=iteration) - shards = [dataset[i*shard_len:(i+1)*shard_len] for i in range(num_workers)] + shards = [dataset[i*shard_len:(i+1)*shard_len] + for i in range(num_workers)] print(f"mapping {len(shards)} shards") pool.map(map_batch_fn, shards) iteration += 1 - + print(f"Shuffling dataset with seed {iteration}") + dataset = dataset.shuffle(seed=iteration) + + class ImageBatchIterator: - def __init__(self, dataset: Dataset, batch_size: int = 64, image_shape=(256, 256), num_workers: int = 8, num_threads=256): + def __init__(self, dataset: Dataset, batch_size: int = 64, image_shape=(256, 256), + num_workers: int = 8, num_threads=256, timeout=15, retries=3, image_processor=default_image_processor): self.dataset = dataset self.num_workers = num_workers self.batch_size = batch_size - loader = partial(parallel_image_loader, num_threads=num_threads, image_shape=image_shape, num_workers=num_workers) + loader = partial(parallel_image_loader, num_threads=num_threads, + image_shape=image_shape, num_workers=num_workers, + timeout=timeout, retries=retries, image_processor=image_processor) self.thread = threading.Thread(target=loader, args=(dataset,)) self.thread.start() - + def __iter__(self): return self - + def __next__(self): def fetcher(_): return data_queue.get() with ThreadPoolExecutor(max_workers=self.batch_size) as executor: batch = list(executor.map(fetcher, range(self.batch_size))) return batch - + def __del__(self): self.thread.join() - + def __len__(self): return len(self.dataset) // self.batch_size + def default_collate(batch): urls = [sample["url"] for sample in batch] captions = [sample["caption"] for sample in batch] @@ -153,7 +175,8 @@ def default_collate(batch): "caption": captions, "image": images, } - + + def dataMapper(map: Dict[str, Any]): def _map(sample) -> Dict[str, Any]: return { @@ -162,16 +185,17 @@ def _map(sample) -> Dict[str, Any]: } return _map + class OnlineStreamingDataLoader(): def __init__( - self, - dataset, - batch_size=64, + self, + dataset, + batch_size=64, image_shape=(256, 256), - num_workers=16, + num_workers=16, num_threads=512, default_split="all", - pre_map_maker=dataMapper, + pre_map_maker=dataMapper, pre_map_def={ "url": "URL", "caption": "TEXT", @@ -180,40 +204,51 @@ def __init__( global_process_index=0, prefetch=1000, collate_fn=default_collate, + timeout=15, + retries=3, + image_processor=default_image_processor, ): if isinstance(dataset, str): dataset_path = dataset print("Loading dataset from path") - dataset = load_dataset(dataset_path, split=default_split) + if "gs://" in dataset: + dataset = load_from_disk(dataset_path) + else: + dataset = load_dataset(dataset_path, split=default_split) elif isinstance(dataset, list): if isinstance(dataset[0], str): print("Loading multiple datasets from paths") - dataset = [load_dataset(dataset_path, split=default_split) for dataset_path in dataset] + dataset = [load_from_disk(dataset_path) if "gs://" in dataset_path else load_dataset( + dataset_path, split=default_split) for dataset_path in dataset] print("Concatenating multiple datasets") dataset = concatenate_datasets(dataset) - dataset = dataset.map(pre_map_maker(pre_map_def), batched=True, batch_size=10000000) - self.dataset = dataset.shard(num_shards=global_process_count, index=global_process_index) + dataset = dataset.shuffle(seed=0) + # dataset = dataset.map(pre_map_maker(pre_map_def), batched=True, batch_size=10000000) + self.dataset = dataset.shard( + num_shards=global_process_count, index=global_process_index) print(f"Dataset length: {len(dataset)}") - self.iterator = ImageBatchIterator(self.dataset, image_shape=image_shape, num_workers=num_workers, batch_size=batch_size, num_threads=num_threads) + self.iterator = ImageBatchIterator(self.dataset, image_shape=image_shape, + num_workers=num_workers, batch_size=batch_size, num_threads=num_threads, + timeout=timeout, retries=retries, image_processor=image_processor) self.collate_fn = collate_fn self.batch_size = batch_size - + # Launch a thread to load batches in the background self.batch_queue = queue.Queue(prefetch) - + def batch_loader(): for batch in self.iterator: self.batch_queue.put(batch) - + self.loader_thread = threading.Thread(target=batch_loader) self.loader_thread.start() - + def __iter__(self): return self - + def __next__(self): return self.collate_fn(self.batch_queue.get()) # return self.collate_fn(next(self.iterator)) - + def __len__(self): return len(self.dataset) diff --git a/setup.py b/setup.py index 38f957a..5be3e5c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='flaxdiff', packages=find_packages(), - version='0.1.16', + version='0.1.17', description='A versatile and easy to understand Diffusion library', long_description=open('README.md').read(), long_description_content_type='text/markdown',